[docs]
Documentation
Everything you need to use pokayokay effectively. From installation to advanced session chaining.
[01] Getting Started
Getting Started
pokayokay is an AI-assisted development orchestration plugin for Claude Code. It turns a single Claude Code session into a structured team of specialized agents that plan, implement, review, and audit your features across sessions automatically.
Prerequisites
- Claude Code v1.0+
- Node.js v18+
- Git initialized in your project
Installation
The fastest way to install is via the setup wizard:
Terminal
$ npx pokayokay The wizard will:
- Detect your project type and structure
- Install pokayokay slash commands into
.claude/commands/ - Create agent definitions in
.claude/agents/ - Generate a default
.claude/settings.json - Set up the ohno MCP server for state management
Manual Installation
If you prefer manual setup:
Terminal
$ git clone https://github.com/srstomp/pokayokay.git /tmp/pokayokay
$ cp -r /tmp/pokayokay/.claude ./
$ npm install -g @anthropic/ohno-mcp ohno MCP Server
pokayokay uses the ohno MCP server to persist state between sessions. It tracks task progress, session history, and handoff context. The setup wizard configures this automatically, but you can verify it is running:
Terminal
$ claude mcp list
# Should show: ohno (running) Quick Start
The essential workflow is three steps:
Quick start workflow
$ /pokayokay:plan docs/my-feature-prd.md # Analyze PRD, create tasks
$ /pokayokay:work semi-auto # Start working
$ /pokayokay:audit my-feature # Verify completeness