Skip to content

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.

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_context and prescription_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.

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.

CommandWhat 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:initInitializes Pillbox in a new project — bottle, MCP, and skills in one step

Start the web UI to browse pills, capsules, and prescriptions:

Terminal window
pillbox serve start

Then 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.