From bkit
Records, lists, analyzes, promotes, and tracks stats on ad-hoc improvement suggestions via /btw commands during development workflows. Auto-categorizes and identifies skill candidates.
npx claudepluginhub popup-studio-ai/bkit-claude-code --plugin bkitThis skill is limited to using the following tools:
작업 중 "이거 스킬로 만들면 좋겠다", "이 패턴 자동화하면 좋겠다" 등의
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
작업 중 "이거 스킬로 만들면 좋겠다", "이 패턴 자동화하면 좋겠다" 등의 개선 제안을 즉시 기록하고 관리하는 도구.
/btw {suggestion} - Record a suggestion.bkit/btw-suggestions.json (create if not exists)btw-NNN (zero-padded, sequential){
"id": "btw-001",
"timestamp": "ISO-8601",
"suggestion": "{user input}",
"context": {
"file": "{current working file if identifiable}",
"pdcaPhase": "{current PDCA phase from .bkit-memory.json or null}",
"feature": "{current feature or null}"
},
"category": "auto-detect",
"status": "pending",
"promotedTo": null,
"priority": null,
"teamContext": {
"isTeamSession": false,
"phase": "{PDCA phase or null}",
"role": "{teammate role that discovered this, or 'user'}",
"pattern": "{orchestration pattern or null}"
}
}
skill-request: mentions "skill", "스킬", "자동화", "automate"bug-pattern: mentions "bug", "버그", "오류", "error", "fix"improvement: mentions "개선", "improve", "better", "refactor"documentation: mentions "문서", "doc", "설명", "explain"general: defaultstats.total count/btw list to view all."/btw list - List all suggestions.bkit/btw-suggestions.jsonID | Status | Category | Suggestion (truncated)
---------|----------|----------------|----------------------
btw-001 | pending | skill-request | @Flow 모델에서 옵션 목록을 자동...
btw-002 | promoted | improvement | DataProxy 패턴에 검증 로직을...
/btw analyze - Analyze suggestions for skill candidates.bkit/btw-suggestions.jsonSkill Candidates from /btw Analysis
=====================================
1. [NEW SKILL] hunikflow-validation (capability)
Based on: btw-001, btw-005, btw-008
Frequency: 3 mentions
Description: Validation pattern guide for @Flow entities
2. [EXISTING SKILL ENHANCEMENT] code-review
Based on: btw-003
Suggestion: Add DataProxy-specific review rules
stats.lastAnalyzed/btw promote {id} - Promote suggestion to skill creation.bkit/btw-suggestions.jsonstatus: "promoted"promotedTo: skill name (derived from suggestion)/skill-create to continue."/btw stats - Show statistics.bkit/btw-suggestions.json/btw Statistics
===============
Total suggestions: 12
By status: pending=8, promoted=3, dismissed=1
By category: skill-request=5, improvement=4, bug-pattern=2, general=1
Promotion rate: 25.0%
Last analyzed: 2026-03-13T10:00:00Z
Top keywords: @Flow(3), DataProxy(2), validation(2)
.bkit/btw-suggestions.jsonInitialize with this structure if file does not exist:
{
"version": "1.0",
"suggestions": [],
"stats": {
"total": 0,
"promoted": 0,
"dismissed": 0,
"lastAnalyzed": null
}
}
| Pattern | Category |
|---|---|
| skill, 스킬, automate, 자동화, command, 명령 | skill-request |
| bug, 버그, error, 오류, fix, 수정 | bug-pattern |
| improve, 개선, better, refactor, 리팩토링, optimize | improvement |
| doc, 문서, explain, 설명, readme, guide | documentation |
| (default) | general |
.bkit-memory.json for current phase/feature/btw promote triggers skill-create workflow/btw analyze results feed into gap analysisWhen /btw is used during a CTO Team session (/pdca team):
.bkit/runtime/agent-state.jsonteamContext.isTeamSession = true and populate phase/role/patternteamContext.isTeamSession = false (default behavior)CTO Lead automatically reads btw-suggestions.json at every phase transition:
/btw promote {id}cto-stop.js hook outputs btw stats at session end:
Added to each suggestion entry when recorded during a team session:
"teamContext": {
"isTeamSession": true,
"phase": "do",
"role": "user",
"pattern": "swarm"
}
This enables /btw analyze to group suggestions by PDCA phase and identify phase-specific patterns.