Skip to content

agents

Terminal window
snippbot agents list # List agents + workspace version (v1/v2)
snippbot agents show <name> # Inspect one agent's workspace
snippbot agents migrate # v1→v2 migration (dry-run by default)
snippbot agents migrate --no-dry-run # Actually rewrite workspace files
snippbot agents reflect <name> # Force a reflection pass

Agent workspaces moved from the v1 layout (PERSONA.md, PROFILE.md, BEHAVIORS.md, SKILLS.md) to the v2 layout (IDENTITY.md, NOTES.md). These commands inspect that state and run the migration.


List every discoverable agent and whether its workspace is v1 or v2 (detected by the presence of IDENTITY.md).

Terminal window
snippbot agents list

Show one agent’s workspace: its path, evolution mode, files (with v1/v2 markers), and any pending memory writes.

Terminal window
snippbot agents show <name>
ArgumentDescription
nameAgent id to inspect

Run the v1→v2 workspace migration script. Defaults to a dry run that prints the proposed changes without writing.

Terminal window
snippbot agents migrate # dry-run (default)
snippbot agents migrate --no-dry-run # apply changes
snippbot agents migrate --agent <name> # limit to one agent
OptionDefaultDescription
--dry-run / --no-dry-run--dry-runPrint proposed changes vs. actually rewrite files
--agent <name>allOnly migrate the named agent

Force a reflection pass on the agent’s most-recent conversation (requires the local daemon’s dependencies).

Terminal window
snippbot agents reflect <name>
ArgumentDescription
nameAgent id whose latest conversation to reflect on