From bkit — AI Native Development OS
Records, lists, analyzes, and promotes suggestions collected during development via /btw commands. Useful for capturing improvement ideas without interrupting workflow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/bkit:btw /btw {suggestion} | /btw list | /btw analyze | /btw promote {id} | /btw stats/btw {suggestion} | /btw list | /btw analyze | /btw promote {id} | /btw statsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
작업 중 "이거 스킬로 만들면 좋겠다", "이 패턴 자동화하면 좋겠다" 등의
작업 중 "이거 스킬로 만들면 좋겠다", "이 패턴 자동화하면 좋겠다" 등의 개선 제안을 즉시 기록하고 관리하는 도구.
/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.
npx claudepluginhub popup-studio-ai/bkit-claude-code --plugin bkitGenerate and critically evaluate grounded improvement ideas for the current project by scanning the codebase. Use for 'what to improve', 'give ideas', or proactive project direction suggestions.
Generates and critically evaluates grounded improvement ideas for the current project's codebase. Triggers on 'what to improve', 'give me ideas', or similar requests to produce ranked ideation docs.
Brainstorm future features and improvements based on the current codebase. This is the ideation step BEFORE writing specs (/writing-specs). Use when user asks to brainstorm ideas, generate feature ideas, explore improvements, or mentions 브레인스톰, 아이디어, 기능 제안, 개선 아이디어, 뭐 만들까, 앞으로 뭐 하지. Also trigger for cleanup requests like 브레인스톰 정리, 구현된 아이디어 정리. Proactively trigger when the user wants creative exploration of what COULD be built.