PDCA document writing standards. Defines document formats, naming conventions, version control, and status tracking. Triggers: document standard, naming convention, template, 문서 표준, ドキュメント標準, 文档标准
/plugin marketplace add popup-studio-ai/bkit-claude-code/plugin install bkit@bkit-marketplaceThis skill is limited to using the following tools:
{number}_{english_name}.md
{number}-{english_name}.md
{feature}.{type}.md
# Phase-based (order matters)
00-requirement/
01-development/
02-scenario/
# Number-based (order matters)
01_system_architecture_design.md
02_core_feature_design.md
# Feature-based
login.plan.md
login.design.md
login.analysis.md
# {Document Title}
> **Summary**: {One-line description}
>
> **Author**: {Name}
> **Created**: {YYYY-MM-DD}
> **Last Modified**: {YYYY-MM-DD}
> **Status**: {Draft | Review | Approved | Deprecated}
---
## Table of Contents
1. [Overview](#1-overview)
2. ...
---
# {Feature} Plan
## 1. Overview
### 1.1 Purpose
{Purpose of this feature}
### 1.2 Background
{Why it is needed}
### 1.3 Related Documents
- [Requirements](../01-plan/requirements.md)
- [Design](../02-design/{feature}.design.md)
## 2. Scope
### 2.1 Included
- {Included item 1}
- {Included item 2}
### 2.2 Excluded
- {Excluded item 1}
## 3. Requirements
### 3.1 Functional Requirements
| ID | Requirement | Priority |
|----|-------------|----------|
| FR-01 | {requirement} | High |
### 3.2 Non-functional Requirements
- Performance: {criteria}
- Security: {criteria}
## 4. Success Criteria
- [ ] {Criterion 1}
- [ ] {Criterion 2}
## 5. Risks
| Risk | Impact | Mitigation |
|------|--------|------------|
| {risk} | High | {mitigation} |
# {Feature} Design Document
## 1. Overview
{Design overview}
## 2. Architecture
### 2.1 Component Diagram
[ASCII diagram or image link]
### 2.2 Data Flow
{How data flows}
## 3. Data Model
### 3.1 Entity Definitions
```typescript
interface User {
id: string;
email: string;
// ...
}
{Entity relationship description}
| Method | Path | Description |
|---|---|---|
| POST | /api/users | Create user |
Request:
{
"email": "string",
"password": "string"
}
Response:
{
"id": "string",
"email": "string"
}
| Code | Message | Description |
|---|---|---|
| 400 | Invalid input | Input validation error |
## _INDEX.md Format
Document list and status tracking for each folder:
```markdown
# {Folder Name} Index
> **Last Updated**: {date}
## Document List
| Document | Status | Last Modified | Owner |
|----------|--------|---------------|-------|
| [architecture.md](./architecture.md) | ✅ Approved | 2024-12-01 | Kay |
| [api-spec.md](./api-spec.md) | 🔄 In Progress | 2024-12-10 | - |
## Status Legend
| Status | Description |
|--------|-------------|
| ✅ Approved | Review complete, implementation baseline |
| 🔄 In Progress | Being written |
| ⏸️ On Hold | Temporarily paused |
| ❌ Deprecated | No longer valid |
## PDCA Status
Current phase: [Plan] → Design → Do → Check → Act
Version section within document:
## Version History
| Version | Date | Changes | Author |
|---------|------|---------|--------|
| 1.0 | 2024-12-01 | Initial draft | Kay |
| 1.1 | 2024-12-05 | Added API spec | Kay |
| 2.0 | 2024-12-10 | Architecture change | Kay |
# Version in filename for important docs
architecture-v1.md
architecture-v2.md
# Date-based
2024-12-01_initial_design.md
2024-12-15_improved_design.md
## Related Documents
- Plan: [login.plan.md](../01-plan/features/login.plan.md)
- Design: [login.design.md](../02-design/features/login.design.md)
- Analysis: [login-gap.md](../03-analysis/gap-analysis/login-gap.md)
## Implementation Location
- Component: `src/components/LoginForm.tsx`
- API: `src/api/auth.ts`
- Service: `services/auth/app/services/auth_service.py`
✅ Good examples:
- End sentences consistently (use same style throughout)
- Start list items with verbs ("Create", "Verify")
- Specify language in code blocks
❌ Bad examples:
- Mixed writing styles
- Unclear pronouns ("this", "that")
- Unexplained abbreviations
# ASCII diagrams (for simple ones)
┌───────┐ ┌───────┐
│ Client │────▶│ Server │
└───────┘ └───────┘
# Mermaid (for complex ones)
```mermaid
graph LR
A[Client] --> B[API Gateway]
B --> C[Service A]
B --> D[Service B]
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.