smithery/popup-studio-ai

bkit-templates

PDCA + Sprint document templates — Plan, Design, Analysis, Report for individual features plus templates/sprint/{master-plan, prd, plan, design, iterate, qa, report}.template.md for sprint-level documents (v2.1.13).

Installation

$ npx skills add smithery/popup-studio-ai --skill bkit-templates

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/popup-studio-ai · top by installs.

npx skills add smithery/popup-studio-ai

Browse all from smithery/popup-studio-ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Glob, Grep
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,359 B
  • docs SUMMARY.md 835 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

bkit Document Templates

Use these templates when generating PDCA documents.

Available Templates

PDCA (per-feature, 9-phase)

Template Path Purpose
Plan ${CLAUDEPLUGINROOT}/templates/plan.template.md Feature planning
Design ${CLAUDEPLUGINROOT}/templates/design.template.md Technical design
Analysis ${CLAUDEPLUGINROOT}/templates/analysis.template.md Gap analysis
Report ${CLAUDEPLUGINROOT}/templates/report.template.md Completion report
Index ${CLAUDEPLUGINROOT}/templates/_INDEX.template.md Document index
CLAUDE ${CLAUDEPLUGINROOT}/templates/CLAUDE.template.md CLAUDE.md template

Sprint (multi-feature container, 8-phase, v2.1.13)

Template Path Purpose
Master Plan ${CLAUDEPLUGINROOT}/templates/sprint/master-plan.template.md Sprint scope + features + dependency graph + Trust scope
PRD ${CLAUDEPLUGINROOT}/templates/sprint/prd.template.md Sprint-level product requirements
Plan ${CLAUDEPLUGINROOT}/templates/sprint/plan.template.md Sprint plan (per-feature plan synthesis)
Design ${CLAUDEPLUGINROOT}/templates/sprint/design.template.md Sprint-level technical design
Iterate ${CLAUDEPLUGINROOT}/templates/sprint/iterate.template.md Iteration log + iterateHistory
QA ${CLAUDEPLUGINROOT}/templates/sprint/qa.template.md 7-Layer dataFlowIntegrity (S1) report
Report ${CLAUDEPLUGINROOT}/templates/sprint/report.template.md Sprint completion + KPI + carry items

Template Usage

Plan Template

For Plan phase - feature planning before design.

Key sections:

  • Overview & Purpose
  • Scope (In/Out)
  • Requirements (Functional/Non-Functional)
  • Success Criteria
  • Risks & Mitigation

Design Template

For Do phase - technical design before implementation.

Key sections:

  • Architecture (diagrams, data flow)
  • Data Model (entities, relationships)
  • API Specification (endpoints, request/response)
  • UI/UX Design (layouts, components)
  • Error Handling
  • Security Considerations
  • Test Plan
  • Implementation Guide

Analysis Template

For Check phase - gap analysis between design and implementation.

Key sections:

  • Design vs Implementation comparison
  • Missing features
  • Inconsistencies
  • Quality metrics
  • Recommendations

Report Template

For Act phase - completion report and lessons learned.

Key sections:

  • Summary of completed work
  • Metrics (LOC, test coverage, etc.)
  • Issues encountered
  • Lessons learned
  • Future improvements

Document Output Paths

docs/
├── 01-plan/
│   └── features/
│       └── {feature}.plan.md
├── 02-design/
│   └── features/
│       └── {feature}.design.md
├── 03-analysis/
│   └── features/
│       └── {feature}.analysis.md
└── 04-report/
    └── features/
        └── {feature}.report.md

Variable Substitution

Templates use {variable} syntax:

  • {feature}: Feature name
  • {date}: Creation date (YYYY-MM-DD)
  • {author}: Document author

Pipeline Templates

Additional templates for Development Pipeline phases:

  • ${CLAUDEPLUGINROOT}/templates/pipeline/ directory

Document Standards

File Naming Rules

{number}_{english_name}.md      # 01_system_architecture.md
{number}-{english_name}.md      # 01-system-architecture.md
{feature}.{type}.md             # login.design.md

Common Header

All documents should include:

# {Document Title}

> **Summary**: {One-line description}
>
> **Author**: {Name}
> **Created**: {YYYY-MM-DD}
> **Last Modified**: {YYYY-MM-DD}
> **Status**: {Draft | Review | Approved | Deprecated}

---

Version Control

Track changes within documents:

## Version History

| Version | Date | Changes | Author |
|---------|------|---------|--------|
| 1.0 | 2024-12-01 | Initial draft | Kay |
| 1.1 | 2024-12-05 | Added API spec | Kay |

Cross-References

Link related documents:

## Related Documents
- Plan: [login.plan.md](../01-plan/features/login.plan.md)
- Design: [login.design.md](../02-design/features/login.design.md)
- Analysis: [login.analysis.md](../03-analysis/features/login.analysis.md)

Status Tracking

Use _INDEX.md in each folder:

Status Meaning Claude Behavior
✅ Approved Use as reference Follow as-is
🔄 In Progress Being written Notify of changes
⏸️ On Hold Temporarily paused Request confirmation
❌ Deprecated No longer valid Ignore

Conflict Resolution

  • Code vs Design mismatch: Code is truth, suggest document update
  • Multiple versions: Reference only the latest version