ArtRichards/agent-playbook-suite

5

stars

43

commits

Ruby

primary language

Sep 8, 2026

updated

README

Agent Playbook Suite

Lifecycle: active Role: guide Project: agent-playbook-suite Updated: 2026-08-16

Agent Playbook Suite is a single marketplace-distributed plugin for agent workflow skills. It packages the project planning, technical exploration, milestone delivery, verification, and cleanup skills that are used together for docs-backed software delivery.

The suite plugin includes:

  • docs
  • project-foundation
  • use-cases
  • explore
  • manage-milestone-tracker
  • create-milestones
  • ship-milestone
  • sync-and-commit
  • simplify

It intentionally does not include next-task.

Quality model

The suite treats tests as more than RED/GREEN examples. Each milestone records:

  • the behavior contract;
  • visible red tests;
  • hidden/generalization strategy;
  • adequacy checks such as property/stateful tests, mutation, fuzzing, benchmarks, and security or schema checks;
  • a risk level that determines how much validation runs before commit or merge;
  • mock audit notes and real-path coverage expectations;
  • taste anchors (reference modules, in-project libraries to reuse, patterns, expected diff footprint), with review taste findings triaged — fixed or waived with a logged reason — before a step is committed;
  • a liveness rule for chained work: every public output traces to a contract clause, a visible test, or a logged decision, and speculative built-for-later surface lives in a followup-log ledger that is re-checked when its consuming milestone is planned, re-scoped, or dropped.

This keeps the resumable artifact trail while reducing the chance that an implementation agent optimizes for visible tests instead of intended behavior. When implementation uncertainty is clear or a problem is genuinely novel, explore compares technical routes, tests acceptance-critical assumptions, and recovers from invalidated routes. It preserves established repository patterns, selects the simplest supported approach, and reports the exact remaining gap when evidence cannot support a route. The shared reference lives at plugins/agent-playbook-suite/skills/_shared/references/agentic-quality-model.md.

Install The Runtime CLI

The plugin provides the docs skill instructions, but the workflow also calls the docs command. Install the published docs-cli package from PyPI before using the suite:

python3 -m pip install --upgrade docs-cli
docs --version

Always run the newest docs-cli. The suite ships its bundled docs skill vendored from a specific release, and that skill is generated from the same docs-cli it is paired with, so the skill instructions always match the docs command they call. There is no separate older floor to track: keeping the CLI current (re-run the --upgrade command above) is the only supported configuration.

Use Python 3.11 or newer. A virtual environment or pipx is fine as long as the resulting docs command is on PATH for the agent session.

Install In Codex

Codex uses a plugin marketplace catalog at .agents/plugins/marketplace.json. Add this public repository as a marketplace, then install the suite plugin:

codex plugin marketplace add ArtRichards/agent-playbook-suite --ref main
codex plugin add agent-playbook-suite@agent-playbook-suite

To refresh the marketplace later:

python3 -m pip install --upgrade docs-cli
codex plugin marketplace upgrade agent-playbook-suite

If Codex already has the plugin installed and does not automatically refresh the installed copy after a marketplace upgrade, remove and add the plugin again:

codex plugin remove agent-playbook-suite@agent-playbook-suite
codex plugin add agent-playbook-suite@agent-playbook-suite

Install In Claude Code

Claude Code uses a plugin marketplace catalog at .claude-plugin/marketplace.json. Add this public repository as a marketplace, then install the suite plugin:

claude plugin marketplace add ArtRichards/agent-playbook-suite
claude plugin install agent-playbook-suite@agent-playbook-suite

To refresh later:

python3 -m pip install --upgrade docs-cli
claude plugin marketplace update agent-playbook-suite
claude plugin update agent-playbook-suite@agent-playbook-suite

Restart the agent after installing or updating plugins so the skill index is reloaded.

Other Agents

Gemini CLI and OpenCode do not consume the Codex or Claude plugin marketplace manifests directly. The portable skill payload lives at plugins/agent-playbook-suite/skills/ for agents that support direct skill directories. For a manual install, check out this repository and point the agent at the relevant skill subdirectory. The eight workflow skills are maintained here. The five formerly standalone workflow-skill repositories are archived and read only; use-cases, explore, and manage-milestone-tracker originate in this suite.

Use the marketplace flow above for Codex and Claude Code. Use direct skill directories only when an agent does not support these marketplace formats.

Repository Layout

.agents/plugins/marketplace.json
.claude-plugin/marketplace.json
plugins/agent-playbook-suite/
  .codex-plugin/plugin.json
  .claude-plugin/plugin.json
  skills/
    _shared/
    docs/
    project-foundation/
    use-cases/
    explore/
    manage-milestone-tracker/
    create-milestones/
    ship-milestone/
    sync-and-commit/
    simplify/

The Codex and Claude marketplace files both point at the same suite plugin directory. The suite plugin then exposes the shared skills/ payload.

Maintainer Docs

Contributors

ArtRichards

43 commits

ArtRichards/agent-playbook-suite

5

stars

43

commits

Ruby

primary language

Sep 8, 2026

updated

README

Agent Playbook Suite

Lifecycle: active Role: guide Project: agent-playbook-suite Updated: 2026-08-16

Agent Playbook Suite is a single marketplace-distributed plugin for agent workflow skills. It packages the project planning, technical exploration, milestone delivery, verification, and cleanup skills that are used together for docs-backed software delivery.

The suite plugin includes:

  • docs
  • project-foundation
  • use-cases
  • explore
  • manage-milestone-tracker
  • create-milestones
  • ship-milestone
  • sync-and-commit
  • simplify

It intentionally does not include next-task.

Quality model

The suite treats tests as more than RED/GREEN examples. Each milestone records:

  • the behavior contract;
  • visible red tests;
  • hidden/generalization strategy;
  • adequacy checks such as property/stateful tests, mutation, fuzzing, benchmarks, and security or schema checks;
  • a risk level that determines how much validation runs before commit or merge;
  • mock audit notes and real-path coverage expectations;
  • taste anchors (reference modules, in-project libraries to reuse, patterns, expected diff footprint), with review taste findings triaged — fixed or waived with a logged reason — before a step is committed;
  • a liveness rule for chained work: every public output traces to a contract clause, a visible test, or a logged decision, and speculative built-for-later surface lives in a followup-log ledger that is re-checked when its consuming milestone is planned, re-scoped, or dropped.

This keeps the resumable artifact trail while reducing the chance that an implementation agent optimizes for visible tests instead of intended behavior. When implementation uncertainty is clear or a problem is genuinely novel, explore compares technical routes, tests acceptance-critical assumptions, and recovers from invalidated routes. It preserves established repository patterns, selects the simplest supported approach, and reports the exact remaining gap when evidence cannot support a route. The shared reference lives at plugins/agent-playbook-suite/skills/_shared/references/agentic-quality-model.md.

Install The Runtime CLI

The plugin provides the docs skill instructions, but the workflow also calls the docs command. Install the published docs-cli package from PyPI before using the suite:

python3 -m pip install --upgrade docs-cli
docs --version

Always run the newest docs-cli. The suite ships its bundled docs skill vendored from a specific release, and that skill is generated from the same docs-cli it is paired with, so the skill instructions always match the docs command they call. There is no separate older floor to track: keeping the CLI current (re-run the --upgrade command above) is the only supported configuration.

Use Python 3.11 or newer. A virtual environment or pipx is fine as long as the resulting docs command is on PATH for the agent session.

Install In Codex

Codex uses a plugin marketplace catalog at .agents/plugins/marketplace.json. Add this public repository as a marketplace, then install the suite plugin:

codex plugin marketplace add ArtRichards/agent-playbook-suite --ref main
codex plugin add agent-playbook-suite@agent-playbook-suite

To refresh the marketplace later:

python3 -m pip install --upgrade docs-cli
codex plugin marketplace upgrade agent-playbook-suite

If Codex already has the plugin installed and does not automatically refresh the installed copy after a marketplace upgrade, remove and add the plugin again:

codex plugin remove agent-playbook-suite@agent-playbook-suite
codex plugin add agent-playbook-suite@agent-playbook-suite

Install In Claude Code

Claude Code uses a plugin marketplace catalog at .claude-plugin/marketplace.json. Add this public repository as a marketplace, then install the suite plugin:

claude plugin marketplace add ArtRichards/agent-playbook-suite
claude plugin install agent-playbook-suite@agent-playbook-suite

To refresh later:

python3 -m pip install --upgrade docs-cli
claude plugin marketplace update agent-playbook-suite
claude plugin update agent-playbook-suite@agent-playbook-suite

Restart the agent after installing or updating plugins so the skill index is reloaded.

Other Agents

Gemini CLI and OpenCode do not consume the Codex or Claude plugin marketplace manifests directly. The portable skill payload lives at plugins/agent-playbook-suite/skills/ for agents that support direct skill directories. For a manual install, check out this repository and point the agent at the relevant skill subdirectory. The eight workflow skills are maintained here. The five formerly standalone workflow-skill repositories are archived and read only; use-cases, explore, and manage-milestone-tracker originate in this suite.

Use the marketplace flow above for Codex and Claude Code. Use direct skill directories only when an agent does not support these marketplace formats.

Repository Layout

.agents/plugins/marketplace.json
.claude-plugin/marketplace.json
plugins/agent-playbook-suite/
  .codex-plugin/plugin.json
  .claude-plugin/plugin.json
  skills/
    _shared/
    docs/
    project-foundation/
    use-cases/
    explore/
    manage-milestone-tracker/
    create-milestones/
    ship-milestone/
    sync-and-commit/
    simplify/

The Codex and Claude marketplace files both point at the same suite plugin directory. The suite plugin then exposes the shared skills/ payload.

Maintainer Docs

Contributors

ArtRichards

43 commits

Languages

Ruby

100.0%