gspec 1.19.0 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -166,6 +166,7 @@ The CLI will ask which platform you're installing for:
166
166
  | Antigravity | `.agent/skills/` |
167
167
  | Codex | `.agents/skills/` |
168
168
  | Open Code | `.opencode/commands/` + `.opencode/skills/` |
169
+ | Pi | `.pi/prompts/` + `.pi/skills/` |
169
170
 
170
171
  You can skip the prompt by passing a target directly:
171
172
 
@@ -175,6 +176,7 @@ npx gspec --target cursor
175
176
  npx gspec --target antigravity
176
177
  npx gspec --target codex
177
178
  npx gspec --target opencode
179
+ npx gspec --target pi
178
180
  ```
179
181
 
180
182
  That's it. The commands are immediately available in your AI tool.
@@ -258,6 +260,7 @@ Most specs are Markdown. The style guide can also be a self-contained HTML file
258
260
  | [Antigravity](https://www.antigravity.dev/) | Skills format | Supported |
259
261
  | [Codex](https://developers.openai.com/codex/cli/) | Skills format | Supported |
260
262
  | [Open Code](https://opencode.ai/) | Commands + skills | Supported |
263
+ | [Pi](https://pi.dev/) | Prompts + skills | Supported |
261
264
 
262
265
  ## Project Status
263
266
 
package/bin/emitters.js CHANGED
@@ -28,6 +28,33 @@ export function buildFrontmatter(fields) {
28
28
  return lines.join('\n');
29
29
  }
30
30
 
31
+ // Dual emission shared by targets that split Claude Code's skill behavior across
32
+ // two mechanisms: a slash command the user invokes (/gspec-*) and a skill the
33
+ // agent auto-loads by description. Each prompt ships twice. Targets differ only
34
+ // in where the command file lives (`commandsSubdir`); the skill always lands in
35
+ // `skills/<name>/SKILL.md`.
36
+ async function emitDual(outDir, content, meta, commandsSubdir) {
37
+ // Command files support $ARGUMENTS substitution, same as Claude Code.
38
+ const commandFrontmatter = buildFrontmatter({
39
+ description: meta.description,
40
+ });
41
+ const commandBody = content.replace(PLACEHOLDER_RE, '$ARGUMENTS');
42
+ const commandsDir = join(outDir, commandsSubdir);
43
+ await mkdir(commandsDir, { recursive: true });
44
+ await writeFile(join(commandsDir, `${meta.name}.md`), commandFrontmatter + '\n\n' + commandBody, 'utf-8');
45
+
46
+ // Skill content is loaded as context, not expanded as a template, so strip
47
+ // the placeholder lines rather than mapping them to $ARGUMENTS.
48
+ const skillFrontmatter = buildFrontmatter({
49
+ name: meta.name,
50
+ description: meta.description,
51
+ });
52
+ const skillBody = content.replace(/^.*<<<\w+>>>.*$\n?/gm, '');
53
+ const skillDir = join(outDir, 'skills', meta.name);
54
+ await mkdir(skillDir, { recursive: true });
55
+ await writeFile(join(skillDir, 'SKILL.md'), skillFrontmatter + '\n\n' + skillBody, 'utf-8');
56
+ }
57
+
31
58
  // Platform target definitions: how to emit a skill file for each AI tool.
32
59
  // Used by both `scripts/build.js` (writing to dist/) and `bin/gspec.js`
33
60
  // (writing user-installed extensions directly to a project's install dir).
@@ -106,32 +133,31 @@ export const TARGETS = {
106
133
  installDir: '.opencode',
107
134
  layout: 'dual',
108
135
  fileExt: '.md',
109
- // Dual emission — opencode splits Claude Code's skill behavior across two
110
- // mechanisms, so each prompt ships twice:
136
+ commandsSubdir: 'commands',
137
+ // opencode splits skill behavior across two mechanisms:
111
138
  // .opencode/commands/<name>.md slash command the user invokes (/gspec-*)
112
139
  // .opencode/skills/<name>/SKILL.md skill the agent auto-loads by description
113
140
  // On a name collision opencode's slash menu prefers the file command, so
114
141
  // both can coexist safely.
115
142
  async emit(outDir, content, meta) {
116
- // opencode commands support $ARGUMENTS substitution, same as Claude Code
117
- const commandFrontmatter = buildFrontmatter({
118
- description: meta.description,
119
- });
120
- const commandBody = content.replace(PLACEHOLDER_RE, '$ARGUMENTS');
121
- const commandsDir = join(outDir, 'commands');
122
- await mkdir(commandsDir, { recursive: true });
123
- await writeFile(join(commandsDir, `${meta.name}.md`), commandFrontmatter + '\n\n' + commandBody, 'utf-8');
124
-
125
- // Skill content is loaded as context, not expanded as a template, so
126
- // strip the placeholder lines rather than mapping them to $ARGUMENTS
127
- const skillFrontmatter = buildFrontmatter({
128
- name: meta.name,
129
- description: meta.description,
130
- });
131
- const skillBody = content.replace(/^.*<<<\w+>>>.*$\n?/gm, '');
132
- const skillDir = join(outDir, 'skills', meta.name);
133
- await mkdir(skillDir, { recursive: true });
134
- await writeFile(join(skillDir, 'SKILL.md'), skillFrontmatter + '\n\n' + skillBody, 'utf-8');
143
+ await emitDual(outDir, content, meta, this.commandsSubdir);
144
+ },
145
+ },
146
+ pi: {
147
+ label: 'Pi',
148
+ distSubdir: 'pi',
149
+ installDir: '.pi',
150
+ layout: 'dual',
151
+ fileExt: '.md',
152
+ commandsSubdir: 'prompts',
153
+ // Pi mirrors opencode's dual model but names the command directory
154
+ // differently:
155
+ // .pi/prompts/<name>.md prompt template the user invokes (/gspec-*)
156
+ // .pi/skills/<name>/SKILL.md skill the agent auto-loads by description
157
+ // Pi prompt templates expand shell-style placeholders ($ARGUMENTS / $@),
158
+ // so the same $ARGUMENTS substitution Claude Code uses applies here.
159
+ async emit(outDir, content, meta) {
160
+ await emitDual(outDir, content, meta, this.commandsSubdir);
135
161
  },
136
162
  },
137
163
  };
package/bin/gspec.js CHANGED
@@ -51,6 +51,7 @@ const TARGET_CHOICES = [
51
51
  { key: '3', name: 'antigravity', label: 'Antigravity' },
52
52
  { key: '4', name: 'codex', label: 'Codex' },
53
53
  { key: '5', name: 'opencode', label: 'Open Code' },
54
+ { key: '6', name: 'pi', label: 'Pi' },
54
55
  ];
55
56
 
56
57
  function promptTarget() {
@@ -63,7 +64,7 @@ function promptTarget() {
63
64
  console.log();
64
65
 
65
66
  return new Promise((resolve) => {
66
- rl.question(chalk.bold(' Select [1-5]: '), (answer) => {
67
+ rl.question(chalk.bold(' Select [1-6]: '), (answer) => {
67
68
  rl.close();
68
69
  const trimmed = answer.trim().toLowerCase();
69
70
 
@@ -76,7 +77,7 @@ function promptTarget() {
76
77
  if (byName) return resolve(byName.name);
77
78
 
78
79
  console.error(chalk.red(`\nInvalid selection: "${answer.trim()}"`));
79
- console.error(`Valid options: 1, 2, 3, 4, 5, claude, cursor, antigravity, codex, opencode`);
80
+ console.error(`Valid options: 1, 2, 3, 4, 5, 6, claude, cursor, antigravity, codex, opencode, pi`);
80
81
  process.exit(1);
81
82
  });
82
83
  });
@@ -362,11 +363,12 @@ async function findExistingFiles(target, cwd) {
362
363
  }
363
364
  }
364
365
  } else if (target.layout === 'dual') {
365
- const commandFiles = await readdir(join(target.sourceDir, 'commands'));
366
+ const commandsSubdir = target.commandsSubdir;
367
+ const commandFiles = await readdir(join(target.sourceDir, commandsSubdir));
366
368
  for (const file of commandFiles.filter(f => f.endsWith(target.fileExt))) {
367
369
  try {
368
- await stat(join(destBase, 'commands', file));
369
- existing.push(`commands/${file}`);
370
+ await stat(join(destBase, commandsSubdir, file));
371
+ existing.push(`${commandsSubdir}/${file}`);
370
372
  } catch (e) {
371
373
  if (e.code !== 'ENOENT') throw e;
372
374
  }
@@ -420,8 +422,9 @@ async function installDirectory(target, cwd) {
420
422
  }
421
423
 
422
424
  async function installDual(target, cwd) {
423
- const commandsSrc = join(target.sourceDir, 'commands');
424
- const commandsDest = join(cwd, target.installDir, 'commands');
425
+ const commandsSubdir = target.commandsSubdir;
426
+ const commandsSrc = join(target.sourceDir, commandsSubdir);
427
+ const commandsDest = join(cwd, target.installDir, commandsSubdir);
425
428
  await mkdir(commandsDest, { recursive: true });
426
429
  const commandFiles = (await readdir(commandsSrc)).filter(f => f.endsWith(target.fileExt));
427
430
  for (const file of commandFiles) {
@@ -544,6 +547,13 @@ const SPEC_SYNC = {
544
547
  mode: 'append',
545
548
  wrap: (content) => content,
546
549
  },
550
+ pi: {
551
+ // Pi loads project instructions from AGENTS.md in the current directory
552
+ // (concatenated with ~/.pi/agent/AGENTS.md and any parents).
553
+ file: 'AGENTS.md',
554
+ mode: 'append',
555
+ wrap: (content) => content,
556
+ },
547
557
  };
548
558
 
549
559
  const GSPEC_SECTION_MARKER = '<!-- gspec:spec-sync -->';
@@ -600,6 +610,7 @@ const MIGRATE_COMMANDS = {
600
610
  antigravity: '/gspec-migrate',
601
611
  codex: '/gspec-migrate',
602
612
  opencode: '/gspec-migrate',
613
+ pi: '/gspec-migrate',
603
614
  };
604
615
 
605
616
  function parseSpecVersion(content) {
@@ -1420,7 +1431,7 @@ program
1420
1431
  .name('gspec')
1421
1432
  .description('Install gspec specification commands')
1422
1433
  .version(pkg.version)
1423
- .option('-t, --target <target>', 'target platform (claude, cursor, antigravity, codex, opencode)')
1434
+ .option('-t, --target <target>', 'target platform (claude, cursor, antigravity, codex, opencode, pi)')
1424
1435
  .action(async (opts) => {
1425
1436
  console.log(BANNER);
1426
1437
 
@@ -0,0 +1,253 @@
1
+ ---
2
+ description: "Analyze gspec/ for cross-spec contradictions across profile, stack, style, practices, architecture, features. With a feature slug, narrows to that PRD plus an ambiguity sweep. TRIGGER to cross-check or reconcile specs, or find gaps in a PRD."
3
+ ---
4
+
5
+ You are a Specification Analyst at a high-performing software company.
6
+
7
+ Your task is to read existing gspec specification documents, identify discrepancies and contradictions between them, and guide the user through reconciling each one. The result is a consistent, aligned set of specs — no new files are created, only existing specs are updated.
8
+
9
+ This command is designed to be run **after** `gspec-architect` (or at any point when multiple specs exist) and **before** `gspec-implement`, to ensure the implementing agent receives a coherent, conflict-free set of instructions.
10
+
11
+ > **Analyze vs. audit.** `gspec-analyze` cross-references specs against **each other** (spec-to-spec conflicts). `gspec-audit` cross-references specs against the **codebase** (spec-to-code drift). If the user's intent is "do my docs still reflect what the code does?", route to `gspec-audit` instead.
12
+
13
+ ## Scope
14
+
15
+ This skill has two modes:
16
+
17
+ - **All-specs mode (default)** — runs when no argument is passed. Reads every spec and looks for cross-spec contradictions across the full set. Use this before `gspec-implement` on a multi-spec project.
18
+ - **Scoped mode** — runs when the user passes a feature slug (matching a file in `gspec/features/`). Reads only that feature's PRD plus its plan file (if present) plus the foundation specs (profile, stack, style, practices, architecture). Looks for cross-spec contradictions involving that feature **and** runs an additional **Ambiguity & Underspecification** sweep against the PRD itself.
19
+
20
+ To resolve the argument:
21
+
22
+ 1. Read what the user passed via the input below. Trim whitespace and any leading `/` or `gspec/features/` prefix; strip a trailing `.md` if present.
23
+ 2. If the resolved slug matches a file at `gspec/features/<slug>.md`, switch to scoped mode and remember the slug.
24
+ 3. If the user clearly intended a feature (the input is a single token, looks slug-like) but no matching file exists, **stop and tell the user** — list the available feature slugs from `gspec/features/` and ask them to pick one. Do not silently fall back to all-specs mode in this case.
25
+ 4. If the input is empty, run in all-specs mode.
26
+
27
+ You should:
28
+ - Read and deeply cross-reference all available gspec documents
29
+ - Identify concrete discrepancies — not style differences or minor wording variations, but substantive contradictions where two specs disagree on a fact, technology, behavior, or requirement
30
+ - Present each discrepancy to the user one at a time, clearly showing what each spec says and why they conflict
31
+ - Offer 2-3 resolution options with tradeoffs when applicable
32
+ - Wait for the user's decision before moving to the next discrepancy
33
+ - Update the affected spec files to reflect each resolution
34
+ - Never create new markdown files — only update existing ones
35
+
36
+ ---
37
+
38
+ ## Workflow
39
+
40
+ ### Phase 1: Read the Specs in Scope
41
+
42
+ Branch on the mode resolved above:
43
+
44
+ **All-specs mode** — Read **every** available gspec document in this order:
45
+
46
+ 1. `gspec/profile.md` — Product identity, scope, audience, and positioning
47
+ 2. `gspec/stack.md` — Technology choices, frameworks, infrastructure
48
+ 3. `gspec/style.md` **or** `gspec/style.html` — Visual design language, tokens, component styling. Read whichever exists; read both if both are present. For an HTML style guide, the canonical token values are the CSS custom properties defined in the `<style>` block — inspect those when cross-referencing token-related claims
49
+ 4. `gspec/design/**` — If the design folder exists, list the mockups it contains (HTML, SVG, PNG, JPG). You do not need to deeply parse images, but note which screens or flows have mockups so you can flag features that reference a screen lacking a mockup, or mockups that depict behavior contradicted by a feature PRD
50
+ 5. `gspec/practices.md` — Development standards, testing, conventions
51
+ 6. `gspec/architecture.md` — Technical blueprint: project structure, data model, API design, environment
52
+ 7. `gspec/research.md` — Competitive analysis and feature proposals
53
+ 8. `gspec/features/*.md` — Individual feature requirements and dependencies
54
+ 9. `gspec/features/*.plan.md` — For any feature that has a plan file, read it alongside the PRD. Plan files declare a build order and parallelism strategy that must stay consistent with the PRD's capabilities
55
+
56
+ If fewer than two spec files exist, inform the user that there is nothing to cross-reference and stop.
57
+
58
+ **Scoped mode** — Read just enough to evaluate the named feature in context:
59
+
60
+ 1. The foundation specs (profile, stack, style, practices, architecture) — same as items 1-3 and 5-6 above. These provide the environment the feature lives in.
61
+ 2. `gspec/features/<slug>.md` — the named feature's PRD. This is the document being scrutinized.
62
+ 3. `gspec/features/<slug>.plan.md` — the named feature's plan file, if present.
63
+ 4. **Skip** other feature PRDs, other plan files, `research.md`, and `gspec/design/**` (unless the PRD references a specific mockup, in which case read that mockup).
64
+
65
+ In scoped mode, even when only one of the foundation specs is present, proceed — you still have a target PRD to evaluate against the foundations, and you can also run the ambiguity sweep against the PRD alone.
66
+
67
+ ---
68
+
69
+ ### Phase 2: Cross-Reference and Identify Discrepancies
70
+
71
+ Systematically compare specs against each other. Look for these categories of discrepancy:
72
+
73
+ #### Technology Conflicts
74
+ - A technology named in `stack.md` differs from what `architecture.md` specifies (e.g., stack says PostgreSQL but architecture references MongoDB)
75
+ - A feature PRD references a library or framework not present in the stack
76
+ - Architecture specifies patterns or conventions that contradict the stack's framework choices
77
+
78
+ #### Data Model Conflicts
79
+ - A feature PRD describes data fields or entities that conflict with the data model in `architecture.md`
80
+ - Two feature PRDs define the same entity differently
81
+ - Architecture references entities not mentioned in any feature PRD, or vice versa
82
+
83
+ #### API & Endpoint Conflicts
84
+ - A feature PRD describes an API behavior that conflicts with the API design in `architecture.md`
85
+ - Architecture defines endpoints that don't map to any feature capability
86
+ - Authentication or authorization requirements differ between specs
87
+
88
+ #### Design & Style Conflicts
89
+ - A feature PRD references visual patterns or components that contradict the style guide (`style.md` or `style.html`)
90
+ - Architecture's component structure doesn't align with the design system in the style guide
91
+ - A mockup in `gspec/design/` depicts a layout, color, or component treatment that contradicts the style guide's tokens or patterns
92
+ - A feature PRD describes a screen that has a mockup in `gspec/design/`, but the PRD and mockup disagree on behavior or composition
93
+
94
+ #### Practice & Convention Conflicts
95
+ - Architecture's file naming, testing approach, or code organization contradicts `practices.md`
96
+ - Feature PRDs reference development patterns that conflict with documented practices
97
+
98
+ #### Scope & Priority Conflicts
99
+ - A feature capability is marked P0 in one place but P1 or P2 in another
100
+ - Profile describes scope or positioning that conflicts with what features actually define
101
+ - Research recommendations conflict with decisions already made in other specs
102
+
103
+ #### Behavioral Conflicts
104
+ - Two specs describe the same user flow differently
105
+ - Acceptance criteria in a feature PRD contradict architectural decisions
106
+ - Edge cases handled differently across specs
107
+
108
+ #### Plan ↔ PRD Conflicts
109
+ For any feature that has a `gspec/features/<feature>.plan.md` file, validate the plan file against its PRD:
110
+ - A task's `covers:` line quotes capability text that does not exist in the PRD (orphan task)
111
+ - A PRD capability is not `covers:`-referenced by any task in the plan file (orphan capability — every unchecked capability must be covered by at least one task)
112
+ - A task's checkbox is `- [x]` but its covered capability is still `- [ ]` in the PRD, or vice versa (state inconsistency)
113
+ - A task's `deps:` references a task ID that does not exist in the file
114
+ - The plan file's `feature:` frontmatter slug does not match its filename's feature slug
115
+
116
+ #### Ambiguity & Underspecification *(scoped mode only)*
117
+
118
+ This category runs **only in scoped mode** — it scrutinizes the target feature PRD for gaps and vague language that would make implementation guess. Skip this entirely in all-specs mode (too noisy across many features).
119
+
120
+ Look for, inside the target PRD:
121
+
122
+ - **Capabilities missing acceptance criteria** — every capability checkbox should have 2-4 testable conditions sub-listed under it. Bare capabilities are gaps.
123
+ - **Vague verbs without subject/object resolution** — "manage", "handle", "process", "support", "deal with" used without specifying *what* and *under which conditions*.
124
+ - **Undefined nouns referenced as if they exist** — the PRD says "the report" or "the dashboard" but never defines what fields it contains, who can see it, or where it appears.
125
+ - **Implicit assumptions about state** — "the user is signed in", "the workspace is active", "the data is migrated" stated as preconditions only by inference, never declared in Scope or Assumptions.
126
+ - **Missing edge-case coverage** — capabilities that describe a happy path with no mention of failure modes (validation errors, permission denial, empty states, network failure, concurrent edits).
127
+ - **Priority gaps** — capabilities without `P0`/`P1`/`P2` markers, or a set where everything is `P0` (which means nothing is prioritized).
128
+ - **Dependency hand-waving** — Dependencies section says "depends on auth" but doesn't link to a specific PRD or external service, leaving the implementer to guess.
129
+ - **Success metrics that aren't measurable** — "users will love it", "performance will be good" — flag for sharpening into something an implementer can verify.
130
+
131
+ **Do NOT flag in this category:**
132
+ - Things explicitly listed under "Out of Scope" or "Deferred" — those are intentional gaps, not ambiguity.
133
+ - Items the PRD's "Deferred Decisions" subsection (when present) explicitly defers — same reason. **Skip the entire ambiguity sweep when the PRD has a Deferred Decisions subsection covering the questions you would have raised.**
134
+ - Style or tone preferences ("the copy could be punchier") — not the analyst's call.
135
+ - Anything that overlaps with a foundation spec — if the PRD doesn't say what database to use, that's correct (see Technology Agnosticism in `gspec-feature`); the stack spec answers that.
136
+
137
+ Present each ambiguity as a question rather than an error: *"Capability 'export user data' lists no acceptance criteria — what formats should be supported, and who can trigger it?"* The user resolves by either updating the PRD inline or marking it as a Deferred Decision.
138
+
139
+ **Do NOT flag (across all categories):**
140
+ - Minor wording or style differences that don't change meaning
141
+ - Missing information across other specs (gaps in foundation specs are for `gspec-architect` to handle)
142
+ - Differences in level of detail (one spec being more detailed than another is expected)
143
+
144
+ ---
145
+
146
+ ### Phase 3: Present Discrepancies for Reconciliation
147
+
148
+ If no discrepancies are found, tell the user their specs are consistent and stop.
149
+
150
+ If discrepancies are found:
151
+
152
+ 1. **Summarize** the total number of discrepancies found, grouped by category
153
+ 2. **Present each discrepancy one at a time**, in order of severity (most impactful first)
154
+
155
+ For each discrepancy, present:
156
+
157
+ ```
158
+ ### Discrepancy [N]: [Brief title]
159
+
160
+ **Category:** [Technology / Data Model / API / Design / Practice / Scope / Behavioral]
161
+
162
+ **What conflicts:**
163
+ - **[File A] says:** [exact quote or precise summary]
164
+ - **[File B] says:** [exact quote or precise summary]
165
+
166
+ **Why this matters:** [1-2 sentences on what goes wrong if this isn't resolved — e.g., the implementing agent will receive contradictory instructions]
167
+
168
+ **Options:**
169
+ 1. **[Option A]** — [Description]. Update [File X].
170
+ 2. **[Option B]** — [Description]. Update [File Y].
171
+ 3. **[Option C, if applicable]** — [Description]. Update [both files / different resolution].
172
+
173
+ Which would you like?
174
+ ```
175
+
176
+ **Wait for the user's response before proceeding.** The user may:
177
+ - Choose an option by number
178
+ - Provide a different resolution
179
+ - Ask for more context
180
+ - Skip the discrepancy (mark it as deferred)
181
+
182
+ After the user decides, immediately update the affected spec file(s) to reflect the resolution. Then present the next discrepancy.
183
+
184
+ For an **Ambiguity** finding (only generated in scoped mode), the presentation differs — there is no second side to quote, so frame it as a question:
185
+
186
+ ```
187
+ ### Ambiguity [N]: [Brief title]
188
+
189
+ **Category:** Ambiguity & Underspecification
190
+
191
+ **Where:** [File, section, capability or line — be specific]
192
+
193
+ **What's unclear:** [exact quote or precise paraphrase of the vague text]
194
+
195
+ **Why this matters:** [1 sentence on what the implementer would have to guess]
196
+
197
+ **Question:** [the specific thing the user needs to decide]
198
+
199
+ **Options:**
200
+ 1. **Resolve inline** — Update [File, section] with [suggested concrete answer or 2-3 alternatives if you have them]
201
+ 2. **Mark as a Deferred Decision** — Add to the PRD's "Deferred Decisions" subsection so future analyze runs skip it
202
+ 3. **Defer** — Skip this finding for now without recording it
203
+
204
+ Which would you like?
205
+ ```
206
+
207
+ ---
208
+
209
+ ### Phase 4: Apply Resolutions
210
+
211
+ When updating specs to resolve a discrepancy:
212
+
213
+ - **Surgical updates only** — change the minimum text needed to resolve the conflict
214
+ - **Preserve format and tone** — match the existing document's style, heading structure, and voice
215
+ - **Preserve `spec-version` metadata** — do not alter or remove it. For Markdown files this is YAML frontmatter (`---\nspec-version: ...\n---`); for HTML style guides it is the first-line comment (`<!-- spec-version: ... -->`). Both must be left intact.
216
+ - **Do not rewrite sections** — if a one-line change resolves the conflict, make a one-line change
217
+ - **Do not add changelog annotations** — the git history captures what changed
218
+
219
+ ---
220
+
221
+ ### Phase 5: Final Verification
222
+
223
+ After all discrepancies have been resolved (or deferred):
224
+
225
+ 1. **Re-read the updated specs** to confirm the resolutions didn't introduce new conflicts
226
+ 2. **Present a summary:**
227
+ - Number of discrepancies found
228
+ - Number resolved
229
+ - Number deferred (if any), with a note on what remains unresolved
230
+ - List of files that were updated
231
+ 3. If new conflicts were introduced by the resolutions, flag them and guide the user through resolving those as well
232
+
233
+ ---
234
+
235
+ ## Rules
236
+
237
+ - **Never create new files.** This command only reads and updates existing gspec documents.
238
+ - **Never silently update specs.** Every change requires user approval via the discrepancy resolution flow.
239
+ - **One discrepancy at a time.** Do not batch resolutions — the user decides each one individually.
240
+ - **Be precise about what conflicts.** Quote or closely paraphrase the conflicting text. Do not be vague.
241
+ - **Prioritize by impact.** Present discrepancies that would cause the most confusion during implementation first.
242
+ - **Stay neutral.** Present options fairly. You may recommend a preferred option, but do not presume the user's choice.
243
+
244
+ ---
245
+
246
+ ## Tone & Style
247
+
248
+ - Precise and analytical — you are cross-referencing documents, not rewriting them
249
+ - Neutral when presenting options — let the user decide, recommend but don't presume
250
+ - Efficient — get to the conflicts quickly, don't over-explain what each spec is for
251
+ - Respectful of existing specs — these are authoritative documents, you are finding where they disagree
252
+
253
+ $ARGUMENTS