一键导入
create-adr
Create a new Architecture Decision Record (ADR) documenting a significant design decision. Saves to docs/adr/ and updates the ADR index.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new Architecture Decision Record (ADR) documenting a significant design decision. Saves to docs/adr/ and updates the ADR index.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a new device profile to podcast-tui's config.json so episodes sync to an MP3 player / DAP / USB drive with device-appropriate filenames and folder layout. Covers device research, field selection, and safe config editing.
Prepare a new release by finalizing CHANGELOG, tagging, and verifying builds. Covers everything before pushing the tag that triggers CI.
Query the GitHub project board to find the next stack-ranked issue to work on. Returns the top actionable Todo item from the Task List view, checking issue dependencies and filtering out epics, closed issues, and blocked items.
Reorder items on the Task List project board to reflect current priorities. Supports full strategic reranks and targeted insertions. Always shows proposed order for user confirmation before executing.
Write a checkpoint file at session end so the next session can pick up exactly where you left off. Captures what was done, what's next, key decisions, and reminders.
Bootstrap a new session from a previous session's checkpoint. Reads the handoff file, confirms the project board state, and prepares to continue work.
| name | create-adr |
| description | Create a new Architecture Decision Record (ADR) documenting a significant design decision. Saves to docs/adr/ and updates the ADR index. |
When making a significant architectural choice that:
Read docs/adr/README.md to find the highest existing ADR number, then increment by 1.
Create docs/adr/ADR-<NNN>-<short-title>.md:
# ADR-<NNN>: <Title>
**Status**: Proposed | Accepted | Deprecated | Superseded by ADR-XXX
**Date**: YYYY-MM-DD
**Deciders**: @lqdev
## Context
What situation, problem, or constraint required a decision?
What forces are at play (technical, organizational, timeline)?
## Decision
What was decided? Be specific and direct.
"We will use X for Y because Z."
## Consequences
**Positive:**
- Benefit 1
- Benefit 2
**Negative / Trade-offs:**
- Cost 1
- Cost 2
**Future options enabled:**
- What this makes easier later
## References
- Relevant source files
- Related issues or PRs
- External resources
Add a row to the table in docs/adr/README.md:
| [ADR-NNN](ADR-NNN-short-title.md) | Title | Accepted | YYYY-MM-DD |
Update the old ADR's Status line to:
**Status**: Superseded by [ADR-NNN](ADR-NNN-new-title.md)