bio.agent¶
Manage agent registrations.
Synopsis¶
Subcommands¶
| Subcommand | Description |
|---|---|
add <name> |
Register a new agent |
list |
Show registered agents |
test <name> |
Verify agent connection works |
remove <name> |
Delete agent and credentials |
Examples¶
Register an agent:
bio agent add claude --api anthropic --model claude-opus-4
# → Enter API key: ****
# → Testing connection... OK
# → Agent 'claude' registered
List registered agents:
Test connection:
Remove an agent:
Configuration¶
Agent credentials are stored in ~/.config/alienbio/agents.yaml:
Never commit this file to version control.
Built-in Agents¶
These agents require no registration:
| Agent | Description |
|---|---|
random |
Random valid actions, seeded (lower bound baseline) |
scripted |
Predefined action sequence (verify scenario solvability) |
human |
Interactive CLI (manual exploration, debugging) |
See Also¶
- run — run with specific agent
- Execution Guide — execution model overview
- Agent Interface — agent protocol details