Hearing adr design docs
A collection of agent skills for AI coding agents.
npx -y skills add tuki0918/skills --skill hearing-adr-design-docsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Convert rough engineering notes, spoken requirements, architecture memos, issue comments, meeting transcripts, or bullet lists into an ADR or design document. Use when Codex should structure an ambiguous technical decision into background, problem, goals, constraints, assumptions, options, decision, rationale, risks, rollout, migration, and unresolved questions, and when the output may need to fit repository docs, issues, RFCs, or PR descriptions. Trigger on requests such as "ADRを書いて", "設計書にして", "Design Docに落として", "選択肢を整理したい", "設計の背景と判断理由をまとめたい", "口頭メモから設計文書を作りたい", or "雑なメモをADRにしたい".
SKILL.md
4.2 KB, 694 tokens by cl100k_base, as published. Nobody here has run it
Hearing Adr Design Docs
Turn raw technical thinking into a structured decision record. Operate as an editor who first normalizes the input, then writes the document.
Default Stance
- Treat raw input as incomplete and possibly inconsistent.
- Extract facts, assumptions, decisions, and unknowns before writing polished prose.
- Prefer an ADR when the user is choosing one discrete technical direction.
- Prefer a design doc when the change spans architecture, rollout, interfaces, or operations.
- Keep decision status explicit: proposed, accepted, superseded, or rejected.
Language Mode
- Match the user's language for dialogue and document output by default.
- If the user writes in Japanese, ask follow-up questions and produce ADR or design doc output in natural Japanese unless the user explicitly requests English.
- Internal structuring or normalization may happen in English if useful, but keep user-facing text in the requested language.
- Localize section headings, decision labels, and examples instead of leaving English placeholders when the user wants Japanese output.
- If the repository convention requires English docs but the conversation is in Japanese, explain that tradeoff briefly and offer either English output or Japanese-first bilingual output.
Workflow
1. Normalize the source material
- Rewrite scattered notes into compact bullets.
- Separate facts, constraints, open questions, and candidate decisions.
- Ask targeted follow-up questions only for missing context that materially affects the decision.
2. Evaluate the decision space
- Produce at least two plausible options unless the decision is already fixed.
- Compare options on complexity, operational burden, migration cost, performance, reliability, and team ownership when relevant.
- State why rejected options are weaker.
3. Choose the artifact
- Read
references/adr-template.mdfor one architectural or implementation decision. - Read
references/adr-template-ja.mdwhen the user wants Japanese output. - Read
references/design-doc-template.mdfor broader design work. - Read
references/design-doc-template-ja.mdwhen the user wants Japanese output. - For feature design docs, combine product-facing sections such as overview, goals, KPI, scope, user flows, UI expectations, and functional requirements with technical sections such as architecture, interfaces, data, security, and observability.
- Tailor detail to the maturity of the request: sketch, draft, or review-ready.
4. Preserve uncertainty honestly
- Mark assumptions explicitly.
- Keep unresolved questions visible.
- Do not imply approval when the conversation only supports a proposal.
- Include risks, migration concerns, and rollback posture.
Hearing Rules
- Ask focused questions instead of a broad questionnaire.
- Probe for scale, latency, availability, security, privacy, data model impact, migration, and ownership only when relevant.
- Avoid false precision for estimates, benchmarks, or capacity numbers.
- Do not invent incident history, user load, or operational data.
- Keep output easy to paste into a repository
docs/, issue, PR description, or ADR folder.
Output Contract
Start with a compact normalization block before the final document when the source is messy:
## Extracted Facts
- Fact:
## Constraints
- Constraint:
## Open Questions
- Question:
Then emit the artifact itself. The skill is successful when a reviewer can understand the decision, the tradeoffs, and the remaining uncertainty without re-reading the raw notes.