Agent Skills
› NeverSight/learn-skills.dev
› arch-flow
arch-flow
GitHub用于检查现有架构文档状态并推荐下一步操作。当用户询问‘接下来做什么’或需要清单时使用,提供基于证据的确定性建议,不执行具体规划或实现工作。
Trigger Scenarios
用户询问 'what's next?'
用户想知道当前流程进度
用户请求检查清单
用户希望获得最佳下一步建议
Install
npx skills add NeverSight/learn-skills.dev --skill arch-flow -g -y
SKILL.md
Frontmatter
{
"name": "arch-flow",
"description": "Read-only flow-status and next-step router for arch-step, miniarch-step, arch-mini-plan, and lilarch docs. Use when the user asks 'what's next?', wants a checklist, or wants the single best next move without running the workflow. Not for doing the planning or implementation work itself."
}
arch-flow
Use this skill to inspect an existing arch-style doc and recommend the next move.
Read references/detection.md, references/checklist-rules.md, and references/recommendation-rules.md before building the checklist.
When to use
- The user asks "what's next?", "where are we in the flow?", or wants a checklist.
- You want a deterministic next-step recommendation from
DOC_PATHandWORKLOG_PATH, not memory. - The doc is part of the full arch flow, the mini full-arch path, the arch-mini-plan path, or the lilarch flow.
When not to use
- The user wants you to actually perform research, planning, implementation, or auditing. Use
arch-step,miniarch-step, orlilarch. - The user wants generic continuation on a full-arch doc. Use
arch-steporminiarch-step. - The user wants the concise strength/weakness status surface or wants to execute one explicit full-arch step. Use
arch-steporminiarch-step. - The doc is a bug doc or a goal-loop doc. Use the governing skill for that workflow family.
What to do
- Resolve
DOC_PATHand the derivedWORKLOG_PATH. - Infer whether the doc is:
- full arch
- mini full arch
- arch-mini-plan follow-through
- lilarch
- Build a full evidence-based checklist:
- mark each required step
DONE,PENDING,OPTIONAL, orUNKNOWN - include the evidence note for each line
- mark each required step
- Recommend the single best next move:
arch-stepfor broad full-arch execution until the code audit is cleanminiarch-stepfor faster full-arch execution or post-mini-plan follow-through until the code audit is cleanarch-docsfor full-arch or post-mini-plan docs cleanup after the clean code auditlilarchfor lilarch steps
- If the user asks to run the next step, switch to the governing skill and do the work there.
Invariants
- Use the plan doc (
DOC_PATH) as the source of truth. - Keep this skill read-only unless the user explicitly asks you to proceed into the next step.
- Do not invent steps or ask questions that can be answered from the repo/doc.
Reference map
references/detection.md- flow-family detection and artifact sanity checksreferences/checklist-rules.md- evidence-based checklist construction rulesreferences/recommendation-rules.md- exact next-move recommendation rules by doc family
Version History
- e0220ca Current 2026-07-05 23:34


