基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/peel/fiddle --skill deliver-docs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Use after implementation to analyze drift, update documentation, evolve evaluation, and close a completed epic.
Use when starting or resuming a full development lifecycle for a feature or explicit epic.
Use when you have a spec or requirements for a multi-step task, before touching code.
| name | deliver-docs |
| description | Use after a completed epic or significant change to update technical docs and capture resulting decisions or debt. |
Invoke as fiddle:deliver-docs [--epic <id>] [--diff] [--dry-run].
Post-ship documentation update. Reads what changed, updates curated docs, creates ADRs, appends to BACKLOG.
Flags (all optional):
--epic <id> — scope to beans under this epic--diff — also read git diff of recent work (default: infer from completed beans)--dry-run — show proposed changes without writingThe evolve skill is the authority on doc structure. Apply these constraints to every update.
VISION.md — Under 1 page. Sections: What (1 para), Who (1 para), Success (2-5 signals), Non-goals (bullets), Open questions (bullets). Evolve rarely touches this doc; only flag it if completed work contradicts it.
MARKET.md — Main sections fit one screen. Research log grows unbounded. Only update main sections if work revealed new competitive information. Append to research log if applicable.
PRICING.md — Half page for main sections. Only update if work changed cost structure or revealed pricing-relevant information.
GTM.md — Short. Only update Traction log if a notable event occurred.
SYSTEM.md — 1-2 pages max. Sections: Overview (1 para), Components (entry per component), Data (flows/storage), Infrastructure (where it runs), Invariants (must-be-true), Known issues (specific). This is the primary target of evolve; update it after any architectural change.
RUNBOOKS.md — Commands not prose. Update if deploy process, rollback steps, or common issues changed.
decisions/NNN-title.md — Context (2-3 sentences), Decision (concrete), Consequences (tradeoffs). Create new files, never edit old ones. Supersede with a new record.
BACKLOG.md — Dated entries with origin and tags. Append-only.
docs/.--epic <id>: run beans list --parent <id> --json, read completed beans.--epic: run beans list --json, identify recently completed beans.beans show <id> --json for each completed bean.--diff or if it helps understanding: git log --oneline -20 and git diff for recent changes.For each completed bean and its associated changes, classify:
Architectural changes — new components, changed data flows, new dependencies, infrastructure changes, new invariants. → Update SYSTEM.md.
Significant decisions — technology choices, pattern choices, tradeoff decisions that constrain future work. → Create ADR.
Discovered issues — tech debt found during implementation, fragile areas, things that work but shouldn't. → Append to Known issues in SYSTEM.md or to BACKLOG.md.
Ideas surfaced — features or improvements that came up during work but weren't in scope. → Append to BACKLOG.md.
Product implications — changes that affect pricing, positioning, user-facing behavior, or go-to-market. → Flag for manual review, do not auto-update product docs.
Present every proposed change to the user before writing. Group by doc:
## SYSTEM.md
- Update Components: added new-service (reason)
- Update Data: changed flow from X to Y
- Add Known issue: description
## decisions/
- New ADR: 003-use-alloydb-over-cloudsql.md
## BACKLOG.md
- Append: idea description (origin: epic-xyz implementation)
## Flagged for review (no auto-update)
- PRICING.md: new service adds $X/month infrastructure cost
- VISION.md: non-goal "no real-time" may need revisiting given new websocket component
After user confirmation:
SYSTEM.md — Update in place. Follow schema constraints. Keep entries concise. Don't expand sections beyond their purpose. Set Last reviewed: to today.
ADRs — Find highest numbered existing ADR: ls docs/technical/decisions/. Create next number. Use format: NNN-kebab-case-title.md. Follow template: Status: accepted, Context (2-3 sentences), Decision (concrete), Consequences (tradeoffs).
BACKLOG.md — Append new entries at the end. Format: ### YYYY-MM-DD — Title, Description, Origin: tag, hashtag tags.
RUNBOOKS.md — Update if deploy/rollback/common-issues changed. Commands not prose.
Product docs — Flag VISION, MARKET, PRICING, and GTM for manual review instead of auto-updating them. These require deliberate human thinking, not mechanical updates.
After writing:
--dry-run skips the write step entirely.