Implementation Scaffold Skill
Creates a .implementation directory structure for tracking project development. Run skill-implementation at the beginning of any project.
Quick Start
bash
# Install globally bun add -g skill-implementation # Create scaffold skill-implementation
What Gets Created
code
.implementation/ ├── data/ │ ├── indexes/ │ │ ├── TODOS.md # Task index │ │ ├── MEMENTOS.md # Important notes and decisions │ │ ├── PLANS.md # Plans index │ │ └── AUDITS.md # Audits index │ ├── plans/ # Implementation plans │ ├── todos/ # Task lists │ ├── audits/ # Audit records │ └── architecture/ # Architecture docs ├── docs/ # Documentation ├── logs/ # Dev logs └── README.md
Usage
bash
skill-implementation [options] Options: --output <dir> Output directory (default: current) --force Overwrite existing scaffold --help Show help
Workflow
- •Run
skill-implementationat project start - •Add plans to
data/plans/and index indata/indexes/PLANS.md - •Track tasks in
data/todos/and index indata/indexes/TODOS.md - •Record decisions in
data/indexes/MEMENTOS.md - •Store audits in
data/audits/and index indata/indexes/AUDITS.md - •Keep architecture docs in
data/architecture/