devspec 0.1.0__py3-none-any.whl
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.
- devspec-0.1.0.dist-info/METADATA +522 -0
- devspec-0.1.0.dist-info/RECORD +133 -0
- devspec-0.1.0.dist-info/WHEEL +4 -0
- devspec-0.1.0.dist-info/entry_points.txt +2 -0
- devspec-0.1.0.dist-info/licenses/LICENSE +201 -0
- devspec_installer/__init__.py +3 -0
- devspec_installer/__main__.py +5 -0
- devspec_installer/cli.py +615 -0
- devspec_installer/payload/.agents/rules/devspec-workflow.md +25 -0
- devspec_installer/payload/.agents/skills/devspec-clarify.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-codebase-structure.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-coding-standards.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-diagram.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-extract.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-finalize.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-implement.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-projectcontext.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-review.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-rules.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-story.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-tasks.md +14 -0
- devspec_installer/payload/.agents/skills/devspec-techstack.md +14 -0
- devspec_installer/payload/.claude/skills/devspec-clarify/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-codebase-structure/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-coding-standards/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-diagram/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-extract/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-finalize/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-implement/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-projectcontext/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-review/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-rules/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-story/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-tasks/SKILL.md +13 -0
- devspec_installer/payload/.claude/skills/devspec-techstack/SKILL.md +13 -0
- devspec_installer/payload/.cursor/rules/devspec-workflow.mdc +23 -0
- devspec_installer/payload/.gemini/commands/devspec/clarify.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/codebase-structure.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/coding-standards.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/diagram.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/extract.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/finalize.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/implement.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/projectcontext.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/review.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/rules.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/story.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/tasks.toml +14 -0
- devspec_installer/payload/.gemini/commands/devspec/techstack.toml +14 -0
- devspec_installer/payload/.github/agents/devspec.clarify.agent.md +39 -0
- devspec_installer/payload/.github/agents/devspec.codebase-structure.agent.md +39 -0
- devspec_installer/payload/.github/agents/devspec.coding-standards.agent.md +40 -0
- devspec_installer/payload/.github/agents/devspec.diagram.agent.md +76 -0
- devspec_installer/payload/.github/agents/devspec.extract.agent.md +91 -0
- devspec_installer/payload/.github/agents/devspec.finalize.agent.md +51 -0
- devspec_installer/payload/.github/agents/devspec.implement-task.agent.md +67 -0
- devspec_installer/payload/.github/agents/devspec.projectcontext.agent.md +34 -0
- devspec_installer/payload/.github/agents/devspec.review.agent.md +42 -0
- devspec_installer/payload/.github/agents/devspec.rules.agent.md +35 -0
- devspec_installer/payload/.github/agents/devspec.story.agent.md +54 -0
- devspec_installer/payload/.github/agents/devspec.tasks.agent.md +44 -0
- devspec_installer/payload/.github/agents/devspec.techstack.agent.md +35 -0
- devspec_installer/payload/.github/prompts/PATTERNS.md +278 -0
- devspec_installer/payload/.github/prompts/README.md +92 -0
- devspec_installer/payload/.github/prompts/devspec.clarify.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.codebase-structure.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.coding-standards.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.diagram.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.extract.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.finalize.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.implement.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.projectcontext.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.review.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.rules.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.story.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.tasks.prompt.md +11 -0
- devspec_installer/payload/.github/prompts/devspec.techstack.prompt.md +11 -0
- devspec_installer/payload/.github/skills/exploration-recovery/SKILL.md +45 -0
- devspec_installer/payload/.github/workflows/python-package-ci.yml +42 -0
- devspec_installer/payload/.github/workflows/python-package-publish.yml +69 -0
- devspec_installer/payload/.github/workflows/winget-package-publish.yml +110 -0
- devspec_installer/payload/AGENTS.md +80 -0
- devspec_installer/payload/GEMINI.md +35 -0
- devspec_installer/payload/README.md +301 -0
- devspec_installer/payload/devspec/adapters/README.md +53 -0
- devspec_installer/payload/devspec/adapters/antigravity.md +52 -0
- devspec_installer/payload/devspec/adapters/claude-code.md +32 -0
- devspec_installer/payload/devspec/adapters/codex-skills/devspec-workflow/SKILL.md +17 -0
- devspec_installer/payload/devspec/adapters/codex.md +22 -0
- devspec_installer/payload/devspec/adapters/command-registry.md +38 -0
- devspec_installer/payload/devspec/adapters/compatibility-matrix.md +21 -0
- devspec_installer/payload/devspec/adapters/copilot.md +20 -0
- devspec_installer/payload/devspec/adapters/cursor.md +22 -0
- devspec_installer/payload/devspec/adapters/enterprise-governance.md +36 -0
- devspec_installer/payload/devspec/adapters/gemini-cli.md +54 -0
- devspec_installer/payload/devspec/adapters/validation-flows.md +90 -0
- devspec_installer/payload/devspec/architecture/_template/artifact-queue.md +27 -0
- devspec_installer/payload/devspec/architecture/_template/decision.md +45 -0
- devspec_installer/payload/devspec/architecture/_template/diagram.md +62 -0
- devspec_installer/payload/devspec/architecture/_template/overview.md +37 -0
- devspec_installer/payload/devspec/architecture/artifact-queue.md +27 -0
- devspec_installer/payload/devspec/architecture/diagrams/README.md +44 -0
- devspec_installer/payload/devspec/architecture/overview.md +37 -0
- devspec_installer/payload/devspec/constitution.md +26 -0
- devspec_installer/payload/devspec/foundation/_template/codebase-structure.md +64 -0
- devspec_installer/payload/devspec/foundation/_template/coding-standards.md +46 -0
- devspec_installer/payload/devspec/foundation/_template/discovery-exclusions.md +52 -0
- devspec_installer/payload/devspec/foundation/_template/exploration-state.md +15 -0
- devspec_installer/payload/devspec/foundation/_template/extraction-state.md +45 -0
- devspec_installer/payload/devspec/foundation/_template/project-context.md +37 -0
- devspec_installer/payload/devspec/foundation/_template/provider-integrations.md +94 -0
- devspec_installer/payload/devspec/foundation/_template/rules.md +54 -0
- devspec_installer/payload/devspec/foundation/_template/tech-stack.md +49 -0
- devspec_installer/payload/devspec/foundation/codebase-structure.md +64 -0
- devspec_installer/payload/devspec/foundation/coding-standards.md +46 -0
- devspec_installer/payload/devspec/foundation/discovery-exclusions.md +52 -0
- devspec_installer/payload/devspec/foundation/extraction-state.md +45 -0
- devspec_installer/payload/devspec/foundation/project-context.md +33 -0
- devspec_installer/payload/devspec/foundation/provider-integrations.md +94 -0
- devspec_installer/payload/devspec/foundation/rules.md +52 -0
- devspec_installer/payload/devspec/foundation/tech-stack.md +49 -0
- devspec_installer/payload/devspec/glossary.md +111 -0
- devspec_installer/payload/devspec/work-items/_template/clarify.md +28 -0
- devspec_installer/payload/devspec/work-items/_template/decisions.md +9 -0
- devspec_installer/payload/devspec/work-items/_template/diagrams.md +42 -0
- devspec_installer/payload/devspec/work-items/_template/finalize.md +65 -0
- devspec_installer/payload/devspec/work-items/_template/implement.md +63 -0
- devspec_installer/payload/devspec/work-items/_template/meta.md +63 -0
- devspec_installer/payload/devspec/work-items/_template/notes.md +7 -0
- devspec_installer/payload/devspec/work-items/_template/review.md +41 -0
- devspec_installer/payload/devspec/work-items/_template/story.md +59 -0
- devspec_installer/payload/devspec/work-items/_template/tasks.md +38 -0
- devspec_installer/payload/packaging/devspec-profiles.json +60 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-diagram
|
|
3
|
+
description: Run /devspec.diagram using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.diagram`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.diagram.prompt.md` and `.github/agents/devspec.diagram.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-extract
|
|
3
|
+
description: Run /devspec.extract using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.extract`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.extract.prompt.md` and `.github/agents/devspec.extract.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-finalize
|
|
3
|
+
description: Run /devspec.finalize using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.finalize`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.finalize.prompt.md` and `.github/agents/devspec.finalize.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-implement
|
|
3
|
+
description: Run /devspec.implement using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.implement`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.implement.prompt.md` and `.github/agents/devspec.implement-task.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-projectcontext
|
|
3
|
+
description: Run /devspec.projectcontext using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.projectcontext`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.projectcontext.prompt.md` and `.github/agents/devspec.projectcontext.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-review
|
|
3
|
+
description: Run /devspec.review using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.review`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.review.prompt.md` and `.github/agents/devspec.review.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-rules
|
|
3
|
+
description: Run /devspec.rules using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.rules`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.rules.prompt.md` and `.github/agents/devspec.rules.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-story
|
|
3
|
+
description: Run /devspec.story using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.story`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.story.prompt.md` and `.github/agents/devspec.story.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-tasks
|
|
3
|
+
description: Run /devspec.tasks using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.tasks`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.tasks.prompt.md` and `.github/agents/devspec.tasks.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-techstack
|
|
3
|
+
description: Run /devspec.techstack using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.techstack`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.techstack.prompt.md` and `.github/agents/devspec.techstack.agent.md` as the source of intent.
|
|
10
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history or Antigravity artifacts.
|
|
12
|
+
- Treat unsupported Antigravity behavior as an adapter limitation, not a workflow change.
|
|
13
|
+
|
|
14
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-clarify
|
|
3
|
+
description: Run /devspec.clarify using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.clarify`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.clarify.prompt.md` and `.github/agents/devspec.clarify.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-codebase-structure
|
|
3
|
+
description: Run /devspec.codebase-structure using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.codebase-structure`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.codebase-structure.prompt.md` and `.github/agents/devspec.codebase-structure.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-coding-standards
|
|
3
|
+
description: Run /devspec.coding-standards using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.coding-standards`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.coding-standards.prompt.md` and `.github/agents/devspec.coding-standards.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-diagram
|
|
3
|
+
description: Run /devspec.diagram using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.diagram`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.diagram.prompt.md` and `.github/agents/devspec.diagram.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-extract
|
|
3
|
+
description: Run /devspec.extract using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.extract`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.extract.prompt.md` and `.github/agents/devspec.extract.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-finalize
|
|
3
|
+
description: Run /devspec.finalize using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.finalize`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.finalize.prompt.md` and `.github/agents/devspec.finalize.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-implement
|
|
3
|
+
description: Run /devspec.implement using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.implement`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.implement.prompt.md` and `.github/agents/devspec.implement-task.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-projectcontext
|
|
3
|
+
description: Run /devspec.projectcontext using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.projectcontext`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.projectcontext.prompt.md` and `.github/agents/devspec.projectcontext.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-review
|
|
3
|
+
description: Run /devspec.review using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.review`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.review.prompt.md` and `.github/agents/devspec.review.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-rules
|
|
3
|
+
description: Run /devspec.rules using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.rules`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.rules.prompt.md` and `.github/agents/devspec.rules.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-story
|
|
3
|
+
description: Run /devspec.story using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.story`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.story.prompt.md` and `.github/agents/devspec.story.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-tasks
|
|
3
|
+
description: Run /devspec.tasks using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.tasks`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.tasks.prompt.md` and `.github/agents/devspec.tasks.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: devspec-techstack
|
|
3
|
+
description: Run /devspec.techstack using the canonical devspec command registry and Copilot reference contract.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Execute canonical command `/devspec.techstack`.
|
|
7
|
+
|
|
8
|
+
- Read `devspec/adapters/command-registry.md` for the command contract.
|
|
9
|
+
- Read `.github/prompts/devspec.techstack.prompt.md` and `.github/agents/devspec.techstack.agent.md` as the source of intent.
|
|
10
|
+
- Follow `AGENTS.md` for canonical workflow, recovery, no-intent-drift, and structured question rules.
|
|
11
|
+
- Treat unsupported Claude Code behavior as an adapter limitation, not a workflow change.
|
|
12
|
+
|
|
13
|
+
Command input comes from the user's current message.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Devspec workflow, artifact, and adapter conformance rules for Cursor.
|
|
3
|
+
globs: "**/*"
|
|
4
|
+
alwaysApply: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Devspec Workflow Rules
|
|
8
|
+
|
|
9
|
+
When the user invokes or references a `/devspec.*` workflow, treat it as command intent from `devspec/adapters/command-registry.md`.
|
|
10
|
+
|
|
11
|
+
Follow these rules:
|
|
12
|
+
|
|
13
|
+
- Read `devspec/adapters/command-registry.md` before acting on a `devspec` command.
|
|
14
|
+
- Preserve the original intent of the canonical Copilot prompt and agent files named in the registry.
|
|
15
|
+
- Use Git-tracked `devspec/` artifacts for recovery before relying on chat history, Cursor memory, or user rules.
|
|
16
|
+
- Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
17
|
+
- Preserve structured question behavior from `.github/prompts/PATTERNS.md#interactive-question-pattern`; if clickable options are unavailable, render the same option labels as text and preserve the recommended option.
|
|
18
|
+
- Use `devspec/glossary.md` for status values.
|
|
19
|
+
- Use `devspec/foundation/codebase-structure.md` for repository access requirements.
|
|
20
|
+
- Use `devspec/adapters/validation-flows.md` for enterprise acceptance checks.
|
|
21
|
+
- Record unsupported platform behavior as a limitation instead of changing workflow semantics.
|
|
22
|
+
|
|
23
|
+
Do not recommend unregistered commands such as `/devspec.plan`, `/devspec.architecture`, `/devspec.provider-integrations`, `/devspec.queue`, or `/devspec.decisions`.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.clarify from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.clarify`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.clarify` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.clarify.prompt.md` and `.github/agents/devspec.clarify.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.codebase-structure from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.codebase-structure`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.codebase-structure` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.codebase-structure.prompt.md` and `.github/agents/devspec.codebase-structure.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.coding-standards from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.coding-standards`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.coding-standards` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.coding-standards.prompt.md` and `.github/agents/devspec.coding-standards.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.diagram from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.diagram`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.diagram` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.diagram.prompt.md` and `.github/agents/devspec.diagram.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.extract from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.extract`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.extract` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.extract.prompt.md` and `.github/agents/devspec.extract.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.finalize from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.finalize`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.finalize` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.finalize.prompt.md` and `.github/agents/devspec.finalize.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.implement from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.implement`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.implement` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.implement.prompt.md` and `.github/agents/devspec.implement-task.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.projectcontext from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.projectcontext`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.projectcontext` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.projectcontext.prompt.md` and `.github/agents/devspec.projectcontext.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.review from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.review`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.review` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.review.prompt.md` and `.github/agents/devspec.review.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.rules from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.rules`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.rules` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.rules.prompt.md` and `.github/agents/devspec.rules.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.story from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.story`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.story` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.story.prompt.md` and `.github/agents/devspec.story.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.tasks from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.tasks`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.tasks` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.tasks.prompt.md` and `.github/agents/devspec.tasks.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
description = "Run canonical /devspec.techstack from Gemini CLI."
|
|
2
|
+
prompt = """
|
|
3
|
+
Execute canonical command `/devspec.techstack`.
|
|
4
|
+
|
|
5
|
+
Before acting:
|
|
6
|
+
1. Read `devspec/adapters/command-registry.md` and use the `/devspec.techstack` row as the command contract.
|
|
7
|
+
2. Read `.github/prompts/devspec.techstack.prompt.md` and `.github/agents/devspec.techstack.agent.md` as the protected source of intent.
|
|
8
|
+
3. Follow `.github/prompts/PATTERNS.md` for shared workflow, recovery, output, discovery, and recommendation behavior.
|
|
9
|
+
4. Recover from existing Git-tracked `devspec/` artifacts before relying on Gemini session memory.
|
|
10
|
+
5. Preserve required inputs, output artifacts, status values, gates, handoff order, and recovery behavior.
|
|
11
|
+
6. Treat Gemini-specific command syntax as platform mechanics, not a workflow change.
|
|
12
|
+
|
|
13
|
+
The user's raw command input, if any, is appended below these instructions by Gemini CLI.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "devspec.clarify"
|
|
3
|
+
description: "Use to ask, resolve, and record one active blocking clarification at a time for the current devspec work item."
|
|
4
|
+
tools: [read, edit, search, vscode/askQuestions]
|
|
5
|
+
model: ["GPT-5.4 (copilot)", "GPT-5.3-Codex (copilot)", "Claude Sonnet 4.6 (copilot)", "Claude Haiku 4.5 (copilot)"]
|
|
6
|
+
user-invocable: true
|
|
7
|
+
agents: []
|
|
8
|
+
handoffs:
|
|
9
|
+
- label: Back to Work-Item Intake
|
|
10
|
+
agent: devspec.story
|
|
11
|
+
prompt: Revise work-item intake from this clarification.
|
|
12
|
+
- label: Continue to Finalize
|
|
13
|
+
agent: devspec.finalize
|
|
14
|
+
prompt: Create or update the finalized brief.
|
|
15
|
+
---
|
|
16
|
+
You create or update `devspec/work-items/<work-item-folder>/clarify.md`.
|
|
17
|
+
|
|
18
|
+
## Constraints
|
|
19
|
+
- Follow the [Work-Item Target Pattern](../prompts/PATTERNS.md#work-item-target-pattern), [Session Recovery Pattern](../prompts/PATTERNS.md#session-recovery-pattern), [Prerequisite Validation Pattern](../prompts/PATTERNS.md#prerequisite-validation-pattern), [Interactive Question Pattern](../prompts/PATTERNS.md#interactive-question-pattern), [Token Stewardship Pattern](../prompts/PATTERNS.md#token-stewardship-pattern), and [Output Closure Pattern](../prompts/PATTERNS.md#output-closure-pattern).
|
|
20
|
+
- `story.md` must exist.
|
|
21
|
+
- Update `Workflow State` in `meta.md` and `Resume State` in `clarify.md` before asking or resolving a blocking question, recording question intent, option labels, recommended option, and continuation condition.
|
|
22
|
+
- Handle one independent blocker at a time.
|
|
23
|
+
- Keep active and resolved blocker records only in `Clarification Log`; at most one row may be `open`.
|
|
24
|
+
- Keep handoff and next-action state in `Resume State`, not in a separate outcome section.
|
|
25
|
+
- If no blocking question remains, set `Pending user question` to `none` and record the next handoff in `Next required action`.
|
|
26
|
+
|
|
27
|
+
## Approach
|
|
28
|
+
1. Locate the target work item.
|
|
29
|
+
2. Read `meta.md` when present, `story.md`, and existing `clarify.md`.
|
|
30
|
+
3. Reconcile `Resume State`; keep any pending user question active.
|
|
31
|
+
4. Ask or resolve the active structured `clarification` question, then update `clarify.md` with `Resume State` and `Clarification Log`.
|
|
32
|
+
5. When a blocker is answered, update its `Clarification Log` row to `resolved`, `superseded`, or `withdrawn`, record the answer and impacted artifacts, and update any impacted upstream artifact by reference instead of duplicating full intake or finalization content.
|
|
33
|
+
6. Report per Output Format.
|
|
34
|
+
|
|
35
|
+
## Output Format
|
|
36
|
+
- Work-item path updated
|
|
37
|
+
- Blocking question or recorded answer
|
|
38
|
+
- Impact and next step
|
|
39
|
+
- Single registered command, handoff, file update, or structured question
|