design-tracker
PROACTIVELY track and document project design decisions without being asked. Activate automatically when detecting architecture discussions, implementation decisions, pattern choices, library selections, or any technical decisions. Also use when user explicitly says "record this", "what's our design status", or equivalent. Do NOT wait for user to ask - record important decisions immediately.
pinned to #d5a3918updated 2 weeks ago
Ask your AI client: “install skills/design-tracker”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/design-trackermetahub onboarded this repo on the author's behalf.
If you own github.com/DeL-TaiseiOzaki/claude-code-orchestra on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
184
Last commit
2 weeks ago
Latest release
published
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.d5a3918· 2 weeks ago
Documentation
41Description quality
52 words · 394 chars — "PROACTIVELY track and document project design decisions without being asked. Act…"
README is present and substantial
18,894 chars · 9 sections · 21 code blocks
Tags / topics declaredwarn
No manifest tags and no GitHub repo topics
Add tags to the manifest (or GitHub topics on the repo) so the registry's search and category filters surface this artifact.
README has usage / example sections
found: Quick Start
Homepage / docs URL declared
no homepage declared (registry will use the repo URL) — info-only, not blocking
Release history
1- releasecurrentd5a3918warn2 weeks ago
Contents
Purpose
This skill keeps the project's 要件定義書 (.claude/docs/DESIGN.md) current.
DESIGN.md is the macro requirements & design document (what the project builds
and why); micro work progress lives in PROGRESS.md. This skill automatically tracks:
- Background & purpose, scope
- Functional & non-functional requirements
- Architecture (including agent roles)
- Tech stack choices and their rationale
- Constraints, key decisions, and open questions
When to Activate
- User discusses architecture or design patterns
- User makes implementation decisions (e.g., "let's use ReAct pattern")
- User says "record this", "add to design", "document this"
- User asks "what's our current design?" or "what have we decided?"
- Important technical decisions are made during conversation
This skill also handles explicit, manual update requests — e.g. "update DESIGN", "force a design update", "記録して" — in addition to its proactive auto-activation. Whether triggered automatically or on request, it runs the same workflow below.
Workflow
Recording Decisions
- Read existing
.claude/docs/DESIGN.md - Extract the decision/information from conversation
- Map to the appropriate section (use the topic table below)
- Write the input JSON and run the shared writer script (see Mechanical Update below)
Sections to Update
DESIGN.md uses these fixed sections (Japanese + English headings). Map each conversation topic to its section:
| Conversation Topic | Target Section |
|---|---|
| Project goals, problem, stakeholders | ## 背景・目的 (Background & Purpose) |
| What is / isn't covered | ## スコープ (Scope) — In / Out of Scope |
| A feature the system must provide | ## 機能要件 (Functional Requirements) table (ID / 要件 / 優先度 / 備考) |
| Performance, security, availability, maintainability targets | ## 非機能要件 (Non-Functional Requirements) table (カテゴリ / 要件 / 指標) |
| System structure, components, agent roles | ## アーキテクチャ (Architecture) — overview + Agent Roles table |
| Library / framework / infra choice + why | ## 技術選定 (Tech Stack & Rationale) table (領域 / 採用技術 / 理由 / 代替案) |
| Hard limits (technical, org, compatibility) | ## 制約 (Constraints) bullets |
| Why we chose X over Y (significant) | ## Key Decisions table (Decision / Rationale / Alternatives / Date) |
| Things to do later, unresolved questions | ## TODO / Open Questions |
Mechanical Update
Use the shared writer script for all DESIGN.md appends. Write the input JSON
to .claude/logs/design-input.json:
{
"decisions": [
{"decision": "Use ReAct pattern", "rationale": "Better tool-use control", "alternatives": "Function calling only"}
],
"section_updates": [
{"heading": "## TODO / Open Questions", "content": "- [ ] Evaluate streaming support"}
]
}
Run dry-run, review the preview, then apply:
python3 .claude/skills/_shared/update_design.py --input .claude/logs/design-input.json
# Review the preview file path in the JSON output, then:
python3 .claude/skills/_shared/update_design.py --input .claude/logs/design-input.json --apply
Verify "ok": true in the output. Duplicate decision rows (same text + date)
are automatically skipped. Exit code 2 means DESIGN.md structure is invalid or
missing — run /init first.
Output Format
When recording, report concisely:
- What was recorded
- Which DESIGN.md section was updated
- Brief summary of the change
Language Rules
- Reasoning / code examples: English
- Document content: English (technical terms); Japanese descriptions are acceptable to match the existing 要件定義書 headings
- Report: follow the surrounding session's language
Reviews
No reviews yet. Be the first.
Related
Verification Before Completion
Evidence before assertions, always
Writing Plans
Turn specs into phased implementation plans
Test-Driven Development
Red → green → refactor discipline for any feature or bugfix
mh install skills/design-tracker