bkit-claude-code

by ww-w-aiVerified

bkit Vibecoding Kit - PDCA methodology + Claude Code mastery for AI-native development

590
Stars
151
Forks
JavaScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/ww-w-ai/bkit-claude-code

Getting Started

Guides for using skills like bkit-claude-code.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

bkit — AI Native Development OS

A Claude Code plugin that verifies AI-generated code against its own design specs.

Three commands. Anyone — even someone vibe-coding for the first time — can ship robust, production-quality software. bkit turns Claude Code into a Context Engineering system: 44 skills, 34 specialist agents, 11 quality gates, and a memory that survives across sessions deliver the right context to the AI at the right moment, so you don't have to know prompts, commands, or PDCA to get high-quality results.

License Claude Code Version Author

Requirement: bkit requires Claude Code v2.1.143 or later (the strict plugin-manifest path recognizes the official displayName field only from v2.1.143). On older Claude Code you will see Validation errors: Unrecognized key: "displayName" during claude plugin install. Run npm install -g @anthropic-ai/claude-code@latest to upgrade, or see docs/06-guide/cc-compatibility.guide.md.


Who bkit is for

You are…bkit gives you
🌱 First-time vibe coder — you describe what you want and AI codes for you, but you don't yet know how to tell if the result is correctA safety net. AI proposes, bkit measures the result against its own design spec, and auto-repairs the gap when it drifts. You can ship without becoming a senior engineer first.
👤 Solo developer / indie builderA team-in-a-box. /pdca team spawns 4–6 specialist agents in parallel — frontend, backend, QA, security — orchestrated by an AI tech lead.
👥 Team lead planning a releaseSprint Management. /sprint master-plan splits your release into context-budgeted sprints so a single Claude Code session can finish each one without running out of memory, and resumes after any session interruption.
🌐 Non-English speaker8-language auto-detection. Type "로그인 기능 만들어줘" or "作成新功能" and bkit picks the right command for you.

What you'll achieve with bkit

The promise: anyone — including non-developers — can build robust, production-quality software by using bkit. bkit replaces the senior engineer's intuition with a workflow.

Without bkitWith bkit
AI gives you plausible code; you have no way to know if it really matches what you asked forgap-detector measures match rate between your design spec and the generated code. Below 90 % → bkit auto-repairs (up to 5 cycles).
You only spot drift at PR review — by then the cleanup is expensive11 Quality Gates halt the workflow before drift compounds (match rate, critical issues, convention, test coverage, security, dataFlow integrity, …)
Long projects exceed Claude Code's session window and you lose contextbkit splits the project into context-budgeted Sprints (≤ 75 K tokens each); memory + Task Management lets any session resume where the last one stopped
You don't know which command, agent, or skill to use8-language auto-trigger + intent-router pick the right skill / agent automatically. You just describe what you want.
AI ships code, you ship hope; nobody documents what changedDocs = Code philosophy: every feature produces a PRD + plan + design + analysis + completion report. The history is the audit trail.

The 4-step experience

This is the canonical workflow when you use bkit. You describe a release; bkit handles the rest.

flowchart TB
    You(["You: describe the release"])
    You --> S1["Step 1<br/>/sprint master-plan my-release<br/>--features auth, billing, reports"]
    S1 --> Auto1["bkit auto-action<br/>• sprint-master-planner agent investigates code + web in depth<br/>• Splits features into context-budgeted Sprints (&le; 75K tokens each)<br/>• Writes the master plan with Context Anchor"]
    Auto1 --> S2["Step 2<br/>You approve the plan"]
    S2 --> Auto2["bkit auto-action<br/>• Every sprint registered in Task Management<br/>• Memory saved — survives session clear"]
    Auto2 --> S3["Step 3<br/>/sprint start sprint-1"]
    S3 --> Auto3["bkit auto-action — full PDCA per feature:<br/>PRD/Plan → Design → Do → Iterate (target 100%, gated) →<br/>QA (gated) → Report. /pdca pm, /pdca team, /pdca qa as needed."]
    Auto3 --> Gate{"All quality<br/>gates pass?"}
    Gate -- "no, auto-fix" --> Repair["pdca-iterator self-repair<br/>(max 5 cycles)"]
    Repair --> Gate
    Gate -- "yes" --> Done(["Release-ready code + docs"])
    Ctrl["Step 4<br/>/control level 0..4"] -.->|"set how much<br/>runs unattended"| Auto1
    Ctrl -.->|"applies"| Auto3

    style You fill:#e3f2fd
    style S1 fill:#fff3e0
    style S2 fill:#fff8e1
    style S3 fill:#fff3e0
    style Auto3 fill:#fce4ec
    style Repair fill:#ffe0b2
    style Done fill:#c8e6c9
    style Ctrl fill:#f3e5f5

Step 1 — Plan the release in depth

You type: /sprint master-plan my-release --features auth, billing, reports.

bkit's sprint-master-planner agent investigates carefully — not quickly. Depending on what you're building, it reads your existing code base in depth or researches the web, then writes a master plan. Critically, it splits your features into context-budgeted Sprints: each sprint is sized so a single Claude Code session can finish it without overflowing the context window (the default is ≤ 75 K tokens per sprint, dependency-aware via Kahn topological sort + greedy bin-packing).

You can also call specialist agents directly when you want more depth: /pdca pm runs 4 product-management agents in parallel with 43 frameworks; /pdca team spawns a multi-specialist implementation team; /pdca qa runs a 5-agent QA team.

Step 2 — Approve, register, remember

You read the master plan. When you approve, bkit registers every sprint in its Task Management System with the right dependency order (Kahn-topologically sorted). It also writes to memory.

This means: if your laptop crashes, your session clears, or you start a new Claude Code session next week — bkit picks up exactly where you stopped. The plan and progress are durable.

Step 3 — Auto-run each sprint through PDCA

You type: /sprint start sprint-1.

bkit runs the 8-phase Sprint lifecycle (prd → plan → design → do → iterate → qa → report → archived). Inside the do phase, bkit runs the full PDCA loop once per feature:

PhaseWhat runsOutput
PRD / Planpm-lead orchestrates 4 PM agents (discovery, strategy, research, prd) with 43 frameworksComprehensive PRD + plan with Context Anchor
Designcto-lead proposes 3 architecture options; you pick one (the only required user input)Detailed design doc
Do/pdca team spawns 4–6 specialist agents in parallel (developer, qa, frontend, backend, security, architect)Working code
IterateTarget 100 % match between design and code. gap-detector measures; pdca-iterator self-repairs until quality gate M1 (matchRate ≥ 90 %) passes. Max 5 cycles.Repaired code + iteration report
QAqa-lead runs 4 QA agents through L1–L5 tests + dataFlow integrity (S1 gate, 7-layer hop check)QA report
Reportreport-generator writes the completion reportFinal report with KPI + lessons learned

Every phase is gated by quality thresholds. If anything fails — match rate too low, critical issue found, dataFlow broken — bkit pauses and tells you why. You don't have to remember to verify; verification is automatic.

Step 4 — Govern with one dial

/control level N is the single autonomy knob. It decides how far the orchestrator runs before stopping. The same dial controls both Sprint and PDCA — no second knob to manage.

LevelWhat it means
L0 ManualAsk me at every phase. Best for your first sprint — inspect each output.
L2 Semi-Auto (default)Plan/Design/Do auto; ask me on QA and Report.
L4 Full-AutoWake me when the sprint is done. Pauses only on a quality gate failure or one of 4 auto-pause triggers.

L1 (Guided) and L3 (Auto) sit between. bkit also computes a Trust Score (0–100) from your track record and can recommend a level — but you stay in charge.

How the bkit author actually uses bkit

The 4-step experience above is the canonical flow. Here's the concrete recipe the person who built bkit uses every day — two steps — so you can copy it without needing to understand the full machinery underneath.

Step A — Use Claude Code as a thinking amplifier before the master plan

The master plan is the single most important artifact in a sprint. Garbage in, garbage out. So don't write it alone, and don't let bkit write it cold either.

  1. Open a fresh Claude Code session.
  2. Talk through the release in plain language — what's the goal, who is it for, what could go wrong, what depends on what, what's still unknown? Let Claude Code push back.
  3. Have it investigate — read your repo, search the web, surface edge cases you hadn't considered.
  4. Then run /sprint master-plan my-release --features .... By the time you do, your context is already saturated; the master plan reflects what you really meant, not a generic template.

This is what Context Engineering looks like in practice: you don't tune the perfect prompt — you saturate the context first, then let bkit synthesise.

Step B — Hand the rest to Trust Level 4

Once you approve the master plan, the keyboard goes quiet until the final report lands. The bkit author picks one of two patterns based on release size:

Release sizeWhat you typeWhat happens
Small–medium — a few related features, single context budget/control level 4, then /sprint start <project> oncebkit runs every sprint and every PDCA phase straight through to archived. You read the final report.
Large — many sprints, large total token budget, or cross-sprint dependencies/control level 4, then /sprint start <sprint-id> per sprint in dependency orderEach sprint runs full-auto. You skim the sprint report before launching the next sprint — a natural checkpoint between context windows.

Trust Level 4 is not "no safety". The 11 quality gates and 4 auto-pause triggers still fire. bkit halts and asks for you only when a measurable rule fails. The dial removes the unnecessary pauses, not the necessary ones.

The outcome, repeatable: AI plans, designs, codes, self-verifies, self-repairs, tests, and writes the completion report. You provide intent — and the final ship/no-ship decision. Nothing else.

The three commands

CommandWhen to useWhat it spawnsOutput
/sprintMulti-feature release (quarter, milestone, multiple linked features)sprint-master-planner, sprint-orchestrator, sprint-qa-flow, sprint-report-writerMaster plan + 8-phase per sprint + cumulative report
/pdcaA single feature (or runs inside a sprint per feature)pm-lead, cto-lead, gap-detector, pdca-iterator, qa-lead, report-generator (any of 34 agents)PRD + plan + design + code + analysis + report
/controlAnytime — set autonomyUpdates Trust Level scope; affects both /sprint and /pdca

How bkit closes the AI-coding gap — Context Engineering

bkit is more than commands. It is a Context Engineering system that solves the root cause of AI-coding failures: the AI doesn't have the right context.

The AI coding problembkit's Context Engineering answer
AI hallucinates because it doesn't know your conventions44 skills (PDCA, Sprint, PM frameworks, …) auto-injected based on intent
AI loses focus as the session growsMemory + Task Management resumes across sessions; Sprints are context-budgeted
AI ships code that drifts from the spec11 Quality Gates + gap-detector measurement + pdca-iterator auto-repair
You only catch bugs at PR reviewPhase-by-phase gating: drift is caught at every transition, not at the end
You need to remember the right command8-language auto-trigger + intent-router; type "login 만들어줘" or "build login" and bkit picks the path
AI sessions are ephemeral; no audit trailAudit log + Token Ledger + Docs = Code philosophy: every decision is on disk

bkit's three philosophies (from bkit-system/philosophy/core-mission.md)

PrincipleWhat it means for you
Automation FirstYou don't need to know PDCA, Sprint, or any command. Type what you want; bkit picks the right workflow. The state machine + workflow engine drive the rest.
No GuessingIf bkit isn't sure, it checks the docs. If still unsure, it asks you. It never makes up an answer. gap-detector, design-validator, and 11 quality gates enforce this.
Docs = CodeEvery feature produces docs (PRD + plan + design + analysis + report). The docs are the contract; bkit verifies that the code matches. scripts/docs-code-sync.js enforces 0 drift in CI.

Quick start

# 1. Install (one time)
claude plugin install bkit

# 2. Enable parallel team execution (optional, recommended)
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

# 3. Your very first run — single feature
/pdca pm my-feature        # Describes what you want; bkit handles the rest

# 4. When you're ready for a multi-feature release
/sprint master-plan my-release --name "Q2 Launch" --features auth, billing, reports
# (You approve the plan)
/sprint start my-release-s1

Recommended Claude Code runtime: v2.1.220 (bkit explicitly handles v2.1.218's context: fork background-by-default change and v2.1.219's nested-subagent depth-3 default; Claude 5 alias resolution — sonnet → Sonnet 5 needs ≥ v2.1.197). Model floor: v2.1.170+ required by the 6 Fable-pinned agents (below it they fail to spawn; bkit shows a SessionStart advisory with a workaround). Install minimum v2.1.143; runtime minimum v2.1.78.

On Claude Code v2.1.232 and later, fork mode is on by default in interactive sessions: a subagent's result arrives as a notification on a later turn, and the Agent tool no longer accepts run_in_background. bkit's skills are unaffected. Sprint gates that measure through a subagent will report "not measured" rather than a score, and name the cause — a missing number, never a wrong one. Set CLAUDE_CODE_FORK_SUBAGENT=0 to get in-turn results back. bkit shows this once at SessionStart and does not block. Verified against v2.1.232; Breaking changes 0 across v2.1.228–v2.1.232 (171 consecutive compatible releases).

Quality gates — the safety net explained

A "quality gate" is a hard stop that won't let the workflow advance until a measurable condition is true. bkit ships 11 of them. The ones that matter most for new users:

GateWhat it measuresIf it fails
M1 matchRateHow much of your design actually appears in the code, 0–100 %Below 90 % → pdca-iterator automatically rewrites the code (up to 5 cycles)
M3 critical issuesSecurity or correctness bugs flagged by code-analyzerAny critical → workflow pauses, you decide
S1 dataFlow integrity7-layer check: UI → Client → API → Validation → DB → Response → Client → UIBelow 85 % → 7 hops re-verified one by one
qa gateQA pass rate ≥ 95 %, zero critical findings, zero runtime errors — from what qa-lead actually measuredBelow 95 % → back to act for fixes, then QA re-runs (v2.1.38: the return path and its retry ceiling both work)

Full M1–M10 + S1 catalog in README-FULL.md §5.

Architecture at a glance

44 skills · 34 agents · 21 hook events / 24 blocks across 28 handlers · 2 MCP servers (19 tools) · 200 lib modules across 22 subdirs · 63 scripts · 40 templates · 385 test files (5,355 test cases). Clean Architecture 4-Layer · Defense-in-Depth 4-Layer · Invocation Contract L1–L6, where L6 is host integration: a real claude -p --plugin-dir run whose recorded evidence CI checks against the shipped hooks.json.

Agents run on a 4-tier role-based model matrix: fable (long-horizon orchestration — leads), opus (deep reasoning, security & high-frequency PDCA verifiers), sonnet (implementers), haiku (monitors). The repeated Check/iterate verifiers (gap-detector, design-validator, pdca-iterator) run on Opus 4.8 — strong verification at half Fable's cost.

Full architecture deep-dive: README-FULL.md §9.

Documentation

PathWhat's there
README-FULL.mdFull command reference, deep workflow internals, agent teams, architecture, Skill Evals
CHANGELOG.mdRelease history (single source of truth — latest release: v2.1.38)
CUSTOMIZATION-GUIDE.mdOverride any bkit component in your .claude/ directory
AI-NATIVE-DEVELOPMENT.mdThe 6 AI-Native principles and how bkit implements them
bkit-system/philosophy/Core mission, Context Engineering, PDCA methodology, AI-Native principles
docs/06-guide/sprint-management.guide.mdSprint Management deep-dive (English)
docs/06-guide/sprint-migration.guide.mdPDCA ↔ Sprint migration mapping (English)

🌟 Real User Hall of Fame

bkit's quality is measured by how well it responds to real users running bkit in production on their own projects. This section recognizes external dogfooders whose precise bug reports + reproduction scripts have been absorbed directly into bkit's regression test suite (test/e2e/external-dogfood/).

v2.1.19 (2026-05-30 — first entry)

  • @pruge (James Kim)dandi-village-ledger project. 10 GitHub issues over 1.5 days (#92–#107) driving bkit v2.1.17, v2.1.18 closes + the entire v2.1.19 Quality Maturation Sprint. 5 reproduction scenarios absorbed as E2E tests at test/e2e/external-dogfood/dandi-*.test.js. See docs/external-dogfooders/pruge.md for the full contribution archive. Thank you for trusting bkit with your production sprint. 🙏

v2.1.20 (2026-05-26 — second entry, first-follower effect validated)

  • @bj (정병진) — bkit v2.1.14 install incident (2026-05-26, Validation errors: : Unrecognized key: "displayName"). Precise error message + cache path + Cursor IDE environment metadata sharing drove the entire v2.1.20 Marketplace Recovery Sprint (14 features / 3 sub-sprints / 3 new ENH 321/322/323 / 1 new ADR 0011 Plugin Manifest Schema Compliance Policy). Reproduction absorbed at test/e2e/external-dogfood/cc-min-version.test.js (5 TC, Lifecycle Stage 4 Regression Lock achieved). Triggered ADR 0006 § Empirical Validation Gate recovery (~30-day wire delay closed). See docs/external-dogfooders/bj.md for the full contribution archive. Thank you for sharing the precise error message that scoped the entire sprint correctly. 🙏

v2.1.36 (2026-08-12 — third entry)

  • @Sinclair-Seo — issue #148. Three Destructive Detector rules were refusing commands that are read-only or narrowly scoped. The report came with a 12-case reproduction harness that included negative controls, and the note that makes them matter: a "0 false positives" reading proves nothing unless genuinely destructive commands are still caught in the same run — a point they made after first measuring a bogus green from a one-argument detect() call.

    It also named the real cost. A PreToolUse block asks a question, and an unattended run has nobody to answer it, so the agent stalls silently instead of failing — ~15 minutes of dead time, twice in one sprint, caught only because an idle-stall monitor was attached.

    Auditing all 16 rules on the strength of that report measured the defect class at roughly 3× what was filed, and found the same root cause producing false negatives: chmod 777 / ; ls was detected by nothing at all. The harness is absorbed at test/e2e/external-dogfood/sinclair-seo-148-guardrail-precision.test.js (Lifecycle Stage 4 Regression Lock). Thank you for the negative controls — they caught a regression we introduced while fixing this. 🙏

🚀 bkit Early Adopter Program

Running bkit on a non-trivial production project and willing to file detailed bug reports with reproductions makes you part of bkit's quality system, not just a bug reporter.

Established v2.1.19 (master plan §15.4 DA-1~DA-4, ENH-318 차별화 7/7).

Benefits:

  • 🏆 Public recognition in this README + dedicated archive
  • 🔒 Your reproduction scripts become permanent E2E regression tests
  • 📊 Your activity directly powers bkit's Trust Score (externalDogfoodFeedbackResponseRate component, weight 0.05)
  • 📝 CHANGELOG attribution on every release where your scenarios were absorbed
  • 🤝 Direct line to bkit maintainers — priority issue triage, reproduction-script-first response

How to join: file your first detailed issue at bkit-claude-code/issues with bkit version, reproduction steps, expected vs actual behavior, and file:line references. See docs/external-dogfooders/_README.md for the full 5-stage User-Feedback Lifecycle and program structure.

DA-4 acquisition goal: by v2.1.20 (30 days post-v2.1.19 GA), measure dogfooder population. DA-4 status (v2.1.20): N=2 confirmed (@pruge + @bj) — first-follower effect validated. v2.1.21+ continues active outreach (CC marketplace narrative, community engagement) to grow N≥3.

License

Apache 2.0 — see LICENSE and NOTICE. POPUP STUDIO PTE. LTD. · kay@popupstudio.ai

Frequently Asked Questions

What is bkit-claude-code?

bkit-claude-code is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by ww-w-ai. bkit Vibecoding Kit - PDCA methodology + Claude Code mastery for AI-native development. It has 590 GitHub stars.

Is bkit-claude-code safe to use?

Yes. bkit-claude-code passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install bkit-claude-code?

Clone the repository with "git clone https://github.com/ww-w-ai/bkit-claude-code" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is bkit-claude-code written in?

bkit-claude-code is primarily written in JavaScript. It is open-source under ww-w-ai on GitHub, so you can review or fork the full source.

Are there alternatives to bkit-claude-code?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh bkit-claude-code against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details