Pre-submission checklist
Feature name
External plan and PRD import with conflict detection (/gsd-import)
Type of addition
New command (slash command or CLI flag)
The solo developer problem
A solo developer may have an existing plan document, specification, or PRD from a stakeholder, a competitor analysis, or a previous project that they want to bring into GSD's planning system. Currently there is no way to ingest external planning artifacts while checking for conflicts against existing project decisions. The developer must manually reformat the document and hope it does not contradict decisions already recorded in PROJECT.md.
What this feature adds
A new /gsd-import command with two modes:
Mode 1: --from <filepath> (plan import)
- Reads an external plan file
- Detects conflicts against existing project decisions in PROJECT.md and REQUIREMENTS.md
- Converts to GSD PLAN.md format
- Validates via gsd-plan-checker agent before writing
Mode 2: --prd <filepath> (PRD import)
- Reads a Product Requirements Document
- Extracts and generates PROJECT.md and REQUIREMENTS.md
- Delegates ROADMAP.md generation to gsd-planner agent
- Validates consistency across generated artifacts
Both modes surface conflicts before writing anything, giving the developer a chance to resolve contradictions.
Example usage:
/gsd-import --from path/to/external-plan.md
> Detected 2 conflicts with existing project decisions:
> 1. External plan specifies PostgreSQL; PROJECT.md decided on MongoDB (decision #3)
> 2. External plan includes WebSocket support; marked Out of Scope in REQUIREMENTS.md
> Resolve conflicts before importing? [y/N]
/gsd-import --prd path/to/product-spec.md
> Extracted: 12 requirements, 3 milestones, 8 user stories
> Generating PROJECT.md, REQUIREMENTS.md, ROADMAP.md...
Full scope of changes
Files created:
commands/gsd/import.md -- slash command definition with --from and --prd flags
get-shit-done/workflows/import.md -- import workflow with conflict detection, format conversion, agent delegation
Files modified:
- None required. The command and workflow are self-contained.
User stories
- As a solo developer who received a plan from a stakeholder, I want to run
/gsd-import --from plan.md and have GSD detect conflicts with my existing project decisions before I adopt the plan.
- As a solo developer starting a new project from an existing PRD, I want to run
/gsd-import --prd spec.md to bootstrap PROJECT.md, REQUIREMENTS.md, and ROADMAP.md from the document rather than re-entering everything manually.
Acceptance criteria
Which area does this primarily affect?
Planning system (phases, roadmap, state)
Applicable runtimes
Breaking changes assessment
None. This is an entirely new command. No existing behavior is modified.
Maintenance burden
Medium. The conflict detection logic must stay in sync with how PROJECT.md records decisions. The PLAN.md format conversion needs updating if the plan format changes. The PRD extraction is heuristic and may need tuning for different PRD formats.
Alternatives considered
- Manual copy and reformat -- Error-prone and misses conflicts with existing decisions. The developer must know the GSD format and remember all recorded decisions.
- plan-phase --prd flag on existing command -- Mixes import with planning. A standalone import command is cleaner and allows the developer to review imported artifacts before planning.
Prior art and references
Replaces #1720 (which described this more generically). Split from #1686 per maintainer feedback.
Pre-submission checklist
approved-featurebefore writing any codeFeature name
External plan and PRD import with conflict detection (/gsd-import)
Type of addition
New command (slash command or CLI flag)
The solo developer problem
A solo developer may have an existing plan document, specification, or PRD from a stakeholder, a competitor analysis, or a previous project that they want to bring into GSD's planning system. Currently there is no way to ingest external planning artifacts while checking for conflicts against existing project decisions. The developer must manually reformat the document and hope it does not contradict decisions already recorded in PROJECT.md.
What this feature adds
A new
/gsd-importcommand with two modes:Mode 1:
--from <filepath>(plan import)Mode 2:
--prd <filepath>(PRD import)Both modes surface conflicts before writing anything, giving the developer a chance to resolve contradictions.
Example usage:
Full scope of changes
Files created:
commands/gsd/import.md-- slash command definition with --from and --prd flagsget-shit-done/workflows/import.md-- import workflow with conflict detection, format conversion, agent delegationFiles modified:
User stories
/gsd-import --from plan.mdand have GSD detect conflicts with my existing project decisions before I adopt the plan./gsd-import --prd spec.mdto bootstrap PROJECT.md, REQUIREMENTS.md, and ROADMAP.md from the document rather than re-entering everything manually.Acceptance criteria
/gsd-import --from <path>reads the file, detects conflicts against PROJECT.md decisions, and converts to GSD PLAN.md format/gsd-import --prd <path>extracts requirements and generates PROJECT.md + REQUIREMENTS.md + ROADMAP.md/gsd-helpWhich area does this primarily affect?
Planning system (phases, roadmap, state)
Applicable runtimes
Breaking changes assessment
None. This is an entirely new command. No existing behavior is modified.
Maintenance burden
Medium. The conflict detection logic must stay in sync with how PROJECT.md records decisions. The PLAN.md format conversion needs updating if the plan format changes. The PRD extraction is heuristic and may need tuning for different PRD formats.
Alternatives considered
Prior art and references
Replaces #1720 (which described this more generically). Split from #1686 per maintainer feedback.