Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Create and implement new features in Chief-managed projects using the Chief CLI. Use when asked to create a new PRD, implement a feature with Chief, set up a...
Create and implement new features in Chief-managed projects using the Chief CLI. Use when asked to create a new PRD, implement a feature with Chief, set up a...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Chief is an AI-driven development loop: reads a prd.json, implements user stories one by one via Claude Code, commits each, and tracks progress.
Confirm the project is cloned locally.
Run interactively in the project root: cd <project> chief new <prd-name> Chief launches Claude Code in PRD-writer mode. It will ask clarifying questions with lettered options. Provide: The full feature description / spec Answers to clarifying questions (e.g. "1A, 2C, 3D") When Chief asks "Do you want to create prd.md?" โ approve (option 1 or 2). Chief converts prd.md โ prd.json on /exit. Watch for: โ PRD converted successfully Files land at: .chief/prds/<prd-name>/prd.md and prd.json
git worktree add ../<project>-<prd-name> -b feat/<prd-name> mkdir -p ../<project>-<prd-name>/.chief/prds/<prd-name> cp .chief/prds/<prd-name>/prd.{md,json} ../<project>-<prd-name>/.chief/prds/<prd-name>/
cd ../<project>-<prd-name> git add .chief/prds/<prd-name>/prd.md git commit -m "docs: add <prd-name> PRD" Only commit prd.md โ prd.json is typically gitignored.
If you prefer to supervise directly: chief <prd-name> Press s in the TUI to start. Chief works through stories in priority order, runs verification (make test, pnpm typecheck, etc.), commits each passing story, and updates progress.md. Monitor via process(action=poll) on the PTY session. Watch for **US-00X is complete**.
git add .chief/prds/<prd-name>/progress.md git commit -m "docs: add <prd-name> progress" git push -u origin feat/<prd-name>
gh pr create \ --title "feat: <prd-name>" \ --body "Implements the <prd-name> PRD. See .chief/prds/<prd-name>/prd.md for spec." \ --base main
After the PR is merged: cd <project> git worktree remove ../<project>-<prd-name> git branch -d feat/<prd-name> Use git worktree remove --force if the directory has uncommitted changes.
TUI bash prompts: use 1 (Yes) or 2 (Yes, always allow) If stuck on a permission prompt, send hex: ["0d"] via process(send-keys) If a story fails, Chief retries or logs the failure in progress.md prd.json is typically gitignored โ only commit prd.md and progress.md Chief resumes automatically from the last completed story if restarted
See references/chief-commands.md for CLI commands, TUI keyboard shortcuts, and official links.
Chief is an open-source AI-driven development loop built by minicodemonkey. Website: https://chiefloop.com/ GitHub: https://github.com/minicodemonkey/chief
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.