gsd:ingest-docs
GitHub扫描仓库中的ADR、PRD等规划文档,自动合成并生成或合并至.planning/目录。支持新项目引导与现有项目合并,依据优先级规则自动解决冲突,并在存在未决矛盾时阻断写入以保障一致性。
Trigger Scenarios
Install
npx skills add davepoon/buildwithclaude --skill gsd:ingest-docs -g -y
SKILL.md
Frontmatter
{
"name": "gsd:ingest-docs",
"description": "Scan a repo for mixed ADRs, PRDs, SPECs, and DOCs and bootstrap or merge the full .planning\/ setup from them. Classifies each doc in parallel, synthesizes a consolidated context with a conflicts report, and routes to new-project or merge-milestone depending on whether .planning\/ already exists.",
"allowed-tools": [
"Read",
"Write",
"Edit",
"Bash",
"Glob",
"Grep",
"AskUserQuestion",
"Task"
],
"argument-hint": "[path] [--mode new|merge] [--manifest <file>] [--resolve auto|interactive]"
}
- Net-new bootstrap (
--mode new, default when.planning/is absent): produces PROJECT.md + REQUIREMENTS.md + ROADMAP.md + STATE.md from synthesized doc content, delegating final generation togsd-roadmapper. - Merge into existing (
--mode merge, default when.planning/is present): appends phases and requirements derived from the ingested docs; hard-blocks any contradiction with existing locked decisions.
Auto-synthesizes most conflicts using the precedence rule ADR > SPEC > PRD > DOC (overridable via manifest). Surfaces unresolved cases in .planning/INGEST-CONFLICTS.md with three buckets: auto-resolved, competing-variants, unresolved-blockers. The BLOCKER gate from the shared conflict engine prevents any destination file from being written when unresolved contradictions exist.
Inputs: directory-convention discovery (docs/adr/, docs/prd/, docs/specs/, docs/rfc/, root-level {ADR,PRD,SPEC,RFC}-*.md), or an explicit --manifest <file> YAML listing {path, type, precedence?} per doc.
v1 constraints: hard cap of 50 docs per invocation; --resolve interactive is reserved for a future release.
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/ingest-docs.md @${CLAUDE_PLUGIN_ROOT}/references/ui-brand.md @${CLAUDE_PLUGIN_ROOT}/references/gate-prompts.md @${CLAUDE_PLUGIN_ROOT}/references/doc-conflict-engine.md </execution_context>
Version History
- 502fc01 Current 2026-07-05 15:13


