Usage
Pillbox works through two layers: the agent skill, which runs automatically in every session, and SDD commands, which let you drive structured development workflows from the chat.
Prerequisites
Section titled “Prerequisites”pillboxbinary installed — quick install- MCP server connected to your AI agent — MCP setup
- Skills, agents and commands installed (recommended) — skills guide
How the agent uses Pillbox
Section titled “How the agent uses Pillbox”Once the MCP server is connected and the Pillbox skill is installed, the agent handles memory automatically:
- At the start of a session it reads recent context via
bottle_contextandprescription_context. - While working, it saves pills for decisions, discoveries, and any non-obvious choices.
- At the end of a session it saves a summary capsule.
You do not need to prompt the agent to save anything — the skill defines the workflow.
SDD commands
Section titled “SDD commands”The SDD skill and its commands let you drive full development cycles from chat. Each command triggers a multi-phase workflow coordinated by the sdd skill and its sub-agents.
| Command | What it does |
|---|---|
/sdd:new <change name> | Starts a new SDD cycle: explore → propose → spec → design → plan → implement → verify → archive |
/sdd:continue [name] | Resumes an in-progress cycle |
/sdd:status [name] | Shows the current phase and open prescriptions |
/sdd:explore <topic> | Runs an exploration pass without starting a full cycle |
/sdd:fix <bug description> | Runs a focused fix cycle (exploration + proposal only) |
/sdd:init | Initializes Pillbox in a new project — bottle, MCP, and skills in one step |
Review what your agent saved
Section titled “Review what your agent saved”Start the web UI to browse pills, capsules, and prescriptions:
pillbox serve startThen open http://pillbox.local:4242 in your browser.
Use it to spot entries that are redundant, wrong, or poorly written and correct them. The agent handles all writes during normal work.
Next steps
Section titled “Next steps”- Concepts — understand bottles, prescriptions, pills, and capsules
- Skills, agents and commands — what’s installed and how to update it
- CLI reference — all commands explained