Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By thaitype
Automate AI-assisted project planning, milestone execution, and retrospective analysis with interactive user interviews, design scrubbing, and fast git commits, all managed through the Chief framework.
npx claudepluginhub thaitype/chief --plugin chief-skillsRun chief-agent in full autopilot. Requires goals and contracts to exist. Chief creates TODO, delegates to builder, and repeats until milestone is done. Auto mode makes all decisions autonomously; safe mode stops on ambiguity. Use "/chief-autopilot" for auto or "/chief-autopilot safe" for safe mode.
Deep grill that interviews the user one question at a time AND verifies each answer against the codebase via background `answer-verifier-agent` calls. Catches factual conflicts, contradictions with prior decisions, and unfounded assumptions inline. Persists the session to `.chief/_grill/opened/NNNN-topic.md` so it survives context compaction. Use when the user wants a stress-tested grill — when stakes are high, when claims must be cross-checked against actual repo state, or when the topic spans many decisions. Heavier than `/grill-design`; prefer this when correctness matters more than speed.
Bootstrap `.chief/project.md` for a Chief-installed project by interviewing the user about their tech stack, dev commands, architecture, and key rules. Use after `/chief-install` (or any time the user wants to set up project-wide context). This is the lazy entry point for `.chief/` — it creates only `project.md`; milestones and rules are created later, on demand.
Plan a new milestone or extend an existing one step-by-step with review gates. Starts with a grill-design session to clarify requirements, then walks through goal → contract → todo → task specs, pausing for user approval at each step.
Run a retrospective on the current milestone or latest batch. Checks goal/contract coverage, summarizes planned vs delivered, and proposes rule updates. Use "/chief-retro" after completing a batch or milestone.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Agent Teams orchestration, governance hooks, multi-AI review, memento skill intelligence, and project management skills for Claude Code
Complete project development toolkit: 23 agents, 23 slash commands, 29 lifecycle hooks, and 69 reusable skills for Claude Code workflows
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement
Claude Copilot — a framework of specialized agents, skills, commands, and hooks that give Claude persistent memory, expert methodology, and task tracking. Agents cover architecture (ta), engineering (me), QA (qa), design (sd/design), DevOps (do), documentation (doc), and knowledge onboarding (kc).
Universal intent router for Claude Code. One command that picks the highest-ROI skill automatically — GSD, Superpowers, or gstack.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
English | ไทย
A structured workflow for AI coding agents. Drop it into any project, set your rules once, and stop re-explaining your codebase every chat.
Chief is part of the chief-tribe ecosystem. It uses sage as its behavioral baseline.
Every project has context — the decisions from six months ago, the weird workaround, all the "why we do it this way" stuff. It lives in your head. Every new AI chat starts blank, so you re-explain. Then again next chat.
Chief stops that. Give every project the same shape — AGENTS.md for rules, .chief/_rules/ for standards, .chief/milestone-N/ for current work. Agents know where to read and write. Your prompts shrink to one sentence.
Step 1 — Install skills:
npx skills@latest add thaitype/chief
Select the skills you want. Make sure chief-install is included.
Step 2 — Run /chief-install in your agent:
/chief-install
It asks which coding agent you use, whether to symlink or copy, and whether to include subagents. That's it.
Step 3 — Bootstrap project context (optional):
/chief-init
Interviews you about your stack and dev commands, writes .chief/project.md. Skip it and write the file by hand later if you prefer.
→ Full tutorial: your first milestone→ Manual install options
Windows users: Symlink mode requires Developer Mode and
git config --global core.symlinks true. The install skill auto-detects and falls back to copy mode.
Chief is markdown files in three places:
project/
├── AGENTS.md ← framework + project rules (highest authority)
└── .chief/
├── project.md ← tech stack, dev commands (written by /chief-init)
├── _rules/ ← standards that apply across all milestones
└── milestone-1/ ← current work: goals, contracts, tasks
.chief/ is created lazily — nothing appears until you need it.
Rules hierarchy: AGENTS.md > .chief/_rules/ > .chief/milestone-N/_goal/. Higher always wins.
→ Rules hierarchy → Directory structure
Best for complex projects, unfamiliar domains, team work.
/chief-plan # grill → goals → contracts → TODO → tasks (approval at each step)
builder-agent: implement task-1 from milestone-1
/chief-retro # review and capture lessons as rules
Best for prototyping, well-defined goals, solo work.
/chief-autopilot # reads goals + contracts, runs all tasks
/chief-retro
/chief-plan # plan with approval gates
/chief-autopilot # execute the approved plan
/chief-retro
| Skill | What it does |
|---|---|
/chief-init | Bootstrap .chief/project.md via interview |
/chief-plan | Plan a milestone: grill → goals → contracts → tasks |
/chief-autopilot | Run a milestone autonomously |
/chief-grill | Deep stateful stress-test; spawns answer-verifier-agent per question |
/chief-rule | Capture a decision as a permanent rule in _rules/ |
/chief-retro | Retrospective + lesson learned +_rules/ update |
/grill-design | Stateless design stress-test with self-critique |
/shape-up | Turn a fuzzy idea into a scoped spec (top-down) |
/slim-down | Cut a scope that's too large into a phase-sized piece |
/dump-commit | Quick clean commit with auto-generated message |
→ Full skills reference → How to pick the right skill
| Agent | Role |
|---|---|
chief-agent | Plans, orchestrates, delegates — does not write code |
builder-agent | Implements tasks, runs unit tests, commits |
tester-agent | Integration/E2E validation — only when you request it |
answer-verifier-agent | Background verifier spawned by /chief-grill |