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,28 @@
|
|
|
1
|
+
# Clarification Record
|
|
2
|
+
|
|
3
|
+
Use this artifact only for blocking ambiguity resolution. Keep resumability, handoff, and next action in `Resume State`. Keep active and resolved blockers in `Clarification Log`. Do not duplicate intake or finalization details; reference the impacted artifact and section instead.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | clarify |
|
|
10
|
+
| Current command | `/devspec.clarify` |
|
|
11
|
+
| Current agent | devspec.clarify |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | active blocker ID or none |
|
|
17
|
+
| Recommended option | active blocker option and reason or none |
|
|
18
|
+
| Resume command | `/devspec.clarify` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Clarification Log
|
|
23
|
+
|
|
24
|
+
Use one row per blocker. Keep at most one row with `open` status; resolved, superseded, and withdrawn rows are the history. When no blocker is active, set `Pending user question` in `Resume State` to `none` and use `Next required action` for the handoff target. Open blockers must preserve the structured question intent, exact option labels, `Custom Answer`, and the recommended option with its reason.
|
|
25
|
+
|
|
26
|
+
| ID | Status | Source artifact | Blocking gap | Question | Options | Recommended option and reason | User answer | Impacted artifacts | Updated |
|
|
27
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
28
|
+
| CLAR-001 | open, resolved, superseded, withdrawn | `story.md`, `finalize.md`, user input, or other source | | | intent; option labels including `Custom Answer` | | | | |
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Work-Item Decisions
|
|
2
|
+
|
|
3
|
+
Use this artifact as the single work-item decision log. Record choices that affect scope, implementation, validation, rollout, or handoff. Keep intake context in `story.md`, readiness details in `finalize.md`, and durable cross-work-item architecture decisions in ADR files created under `devspec/architecture/decisions/` when needed; link those artifacts here instead of duplicating them.
|
|
4
|
+
|
|
5
|
+
## Work-Item Decision Log
|
|
6
|
+
|
|
7
|
+
| ID | Status | Decision | Rationale | Impact | Source or related artifacts | Updated |
|
|
8
|
+
| --- | --- | --- | --- | --- | --- | --- |
|
|
9
|
+
| DEC-001 | proposed, accepted, rejected, superseded | | | | | |
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Work-Item Diagrams
|
|
2
|
+
|
|
3
|
+
Use this file only for explicit or clearly temporary work-item diagrams, such as a one-off bug reproduction flow, migration path, security incident or threat flow, temporary implementation plan, or experiment.
|
|
4
|
+
|
|
5
|
+
Reusable process flows, feature workflows, module workflows, user journeys, sequences, and state diagrams should live under `devspec/architecture/diagrams/` and be referenced from the work item.
|
|
6
|
+
|
|
7
|
+
Do not keep a separate diagram index or status here. `devspec/architecture/artifact-queue.md` owns diagram status from `devspec/glossary.md#artifact-status-values`. This file owns only temporary work-item-specific diagram content and the resume state needed to continue the diagram command.
|
|
8
|
+
|
|
9
|
+
## Resume State
|
|
10
|
+
|
|
11
|
+
| Field | Value |
|
|
12
|
+
| --- | --- |
|
|
13
|
+
| Current stage | diagram |
|
|
14
|
+
| Current command | `/devspec.diagram` |
|
|
15
|
+
| Current agent | devspec.diagram |
|
|
16
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
17
|
+
| Current item | |
|
|
18
|
+
| Last completed step | |
|
|
19
|
+
| Next required action | |
|
|
20
|
+
| Pending user question | |
|
|
21
|
+
| Recommended option | |
|
|
22
|
+
| Resume command | `/devspec.diagram` |
|
|
23
|
+
| Resume notes | |
|
|
24
|
+
| Updated | |
|
|
25
|
+
|
|
26
|
+
## Diagram Content
|
|
27
|
+
|
|
28
|
+
### DIA-001 - <subject>
|
|
29
|
+
|
|
30
|
+
| Field | Value |
|
|
31
|
+
| --- | --- |
|
|
32
|
+
| Type | |
|
|
33
|
+
| Subject | |
|
|
34
|
+
| Queue source | `devspec/architecture/artifact-queue.md` |
|
|
35
|
+
| Evidence sources | |
|
|
36
|
+
| Confidence | observed, high-confidence, low-confidence |
|
|
37
|
+
| Assumptions | none or listed below |
|
|
38
|
+
| Notes | |
|
|
39
|
+
|
|
40
|
+
```mermaid
|
|
41
|
+
flowchart TD
|
|
42
|
+
```
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Implementation Readiness Brief
|
|
2
|
+
|
|
3
|
+
Use this artifact as the implementation readiness brief. Keep only details that affect readiness, implementation scope, task planning, validation, delivery risk, or handoff. Put lifecycle recovery in `Resume State`, readiness gating in `Readiness Assessment`, implementation facts in `Implementation Brief`, and proof expectations in `Validation Plan`.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | finalize |
|
|
10
|
+
| Current command | `/devspec.finalize` |
|
|
11
|
+
| Current agent | devspec.finalize |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | |
|
|
17
|
+
| Recommended option | |
|
|
18
|
+
| Resume command | `/devspec.finalize` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Readiness Assessment
|
|
23
|
+
|
|
24
|
+
| Field | Value |
|
|
25
|
+
| --- | --- |
|
|
26
|
+
| Type | feature, bug, security-vulnerability |
|
|
27
|
+
| Severity | bugs and security vulnerabilities only |
|
|
28
|
+
| Priority | features should record priority |
|
|
29
|
+
| Status | See `devspec/glossary.md#readiness-status-values`; use only `ready` or `not ready` for the overall decision |
|
|
30
|
+
| Blocking gates | gate IDs or none |
|
|
31
|
+
| Next action | `/devspec.tasks` when ready; `/devspec.clarify` or required foundation update when not ready |
|
|
32
|
+
| Decision note | |
|
|
33
|
+
| Decision inputs | `story.md`, `clarify.md`, accepted `decisions.md` records, `devspec/foundation/rules.md` |
|
|
34
|
+
|
|
35
|
+
Use readiness gates only for checks that decide whether task planning may proceed. Record the missing fact or blocking action here; record implementation content in `Implementation Brief`.
|
|
36
|
+
|
|
37
|
+
| ID | Check | Evidence source | Ready condition | Status | Blocking action |
|
|
38
|
+
| --- | --- | --- | --- | --- | --- |
|
|
39
|
+
| RG-001 | Scope boundary | Implementation Brief | In-scope and out-of-scope boundaries are explicit and do not expand the work item. | See `devspec/glossary.md#readiness-status-values` | |
|
|
40
|
+
| RG-002 | Acceptance criteria | Implementation Brief | Criteria are observable or testable enough for task planning and validation. | See `devspec/glossary.md#readiness-status-values` | |
|
|
41
|
+
| RG-003 | Dependencies and repository readiness | Implementation Brief; `devspec/foundation/codebase-structure.md` | Dependencies are captured and required repository configuration or access is confirmed or not applicable. | See `devspec/glossary.md#readiness-status-values` | |
|
|
42
|
+
| RG-004 | Type-specific facts | Implementation Brief; `devspec/foundation/rules.md` | Feature priority, bug facts, or security-vulnerability facts required by project rules are captured or explicitly blocked. | See `devspec/glossary.md#readiness-status-values` | |
|
|
43
|
+
| RG-005 | Validation and delivery risk | Implementation Brief; Validation Plan | Validation expectations and material delivery risks are known enough to plan tasks, or marked not applicable. | See `devspec/glossary.md#readiness-status-values` | |
|
|
44
|
+
|
|
45
|
+
## Implementation Brief
|
|
46
|
+
|
|
47
|
+
Use this as the single task-planning input table. Include only facts that affect scope, acceptance criteria, task decomposition, repository readiness, type-specific requirements, delivery risk, or handoff. For multi-repo work, summarize readiness here and keep local paths and access requirement values in `devspec/foundation/codebase-structure.md`. Put validation methods in `Validation Plan`.
|
|
48
|
+
|
|
49
|
+
| Type | ID | Item | Source | Task-planning or delivery effect | Status |
|
|
50
|
+
| --- | --- | --- | --- | --- | --- |
|
|
51
|
+
| Scope: in | SCOPE-IN-001 | <implementation-boundary> | <intake-clarification-decision-or-user-input> | Tasks may be created only for this work. | confirmed |
|
|
52
|
+
| Scope: out | SCOPE-OUT-001 | <explicit-non-goal> | <intake-clarification-decision-or-user-input> | Tasks must not be created for this work. | confirmed |
|
|
53
|
+
| Acceptance criterion | AC-001 | <observable-outcome> | <intake-clarification-decision-or-user-input> | Drives implementation tasks and validation coverage. | pending |
|
|
54
|
+
| Planning input | PI-001 | <assumption-constraint-dependency-or-target-area> | <foundation-intake-clarification-decision-or-discovery-source> | <how tasks should account for it> | pending |
|
|
55
|
+
| Repository readiness | MR-001 | <required-repositories-and-access-confirmation-summary-or-not-applicable> | `devspec/foundation/codebase-structure.md` | Missing or blocked repository readiness prevents task planning. | pending |
|
|
56
|
+
| Type-specific requirement | TS-001 | <bug-security-or-rule-required-fact> | <intake-clarification-decision-or-rule-source> | Required for task planning, validation, or release handling. | pending |
|
|
57
|
+
| Risk or follow-up | RISK-001 | <risk-mitigation-backport-release-note-advisory-or-handoff-item> | <intake-clarification-decision-or-discovery-source> | <delivery-or-handoff-effect> | open |
|
|
58
|
+
|
|
59
|
+
## Validation Plan
|
|
60
|
+
|
|
61
|
+
Record how acceptance criteria, type-specific requirements, and material risks should be validated.
|
|
62
|
+
|
|
63
|
+
| ID | Covers | Method or evidence | Expected signal | Status |
|
|
64
|
+
| --- | --- | --- | --- | --- |
|
|
65
|
+
| VP-001 | AC-001 | <test-command-review-or-manual-check> | <passing-signal> | pending |
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Implementation Record
|
|
2
|
+
|
|
3
|
+
Use this artifact for recovery, audit, and handoff during implementation. Keep lifecycle recovery in `Resume State`, per-task progress in `Implementation Task Ledger`, changed files and validation evidence in `Implementation Evidence`, and attempt history in `Implementation Execution Log`. Omit optional evidence rows with no entries.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | implement |
|
|
10
|
+
| Current command | `/devspec.implement` |
|
|
11
|
+
| Current agent | devspec.implement-task |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | |
|
|
17
|
+
| Recommended option | |
|
|
18
|
+
| Resume command | `/devspec.implement` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Implementation Task Ledger
|
|
23
|
+
|
|
24
|
+
Use this as the single recovery view for implementation progress, current task, last safe checkpoint, and next handoff. Keep one row per task from `tasks.md`.
|
|
25
|
+
|
|
26
|
+
| Field | Value |
|
|
27
|
+
| --- | --- |
|
|
28
|
+
| Overall status | See `devspec/glossary.md#task-status-values` |
|
|
29
|
+
| Completed count | |
|
|
30
|
+
| Pending count | |
|
|
31
|
+
| Skipped count | |
|
|
32
|
+
| Current task | |
|
|
33
|
+
| Last completed task | |
|
|
34
|
+
| Last confirmation outcome | proceed, continue, pause, skip, custom |
|
|
35
|
+
| Known good state | |
|
|
36
|
+
| Roll-forward notes | |
|
|
37
|
+
| Completion note | |
|
|
38
|
+
|
|
39
|
+
| Task | Target repository | Target area | Depends on | Status | Attempt count | Last checkpoint | Validation last run | Next action |
|
|
40
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
41
|
+
| T-001 | | | | pending | 0 | | | |
|
|
42
|
+
|
|
43
|
+
## Implementation Evidence
|
|
44
|
+
|
|
45
|
+
Record only evidence that exists. Use this section for repository access checks, changed files, validation results, type-specific handling, residual risks, follow-ups, and review/audit snippets. Repository path and access requirement source is `devspec/foundation/codebase-structure.md`; type-specific rule source is `devspec/foundation/rules.md`.
|
|
46
|
+
|
|
47
|
+
| Type | Applies to | Item | Evidence or notes | Status |
|
|
48
|
+
| --- | --- | --- | --- | --- |
|
|
49
|
+
| Repository access | <repository-name> | <access-requirement-and-status> | <confirmation-or-blocker-notes> | confirmed, missing, blocked |
|
|
50
|
+
| Changed file | <task-id> | <path> | <change-summary-and-validation> | modified |
|
|
51
|
+
| Validation | <task-id-or-scope> | <command-or-method> | <result-or-expected-signal> | pending, passed, failed, skipped |
|
|
52
|
+
| Type-specific handling | <bug-security-or-rule> | <handling-note> | <rule-source-or-audit-note> | pending, complete |
|
|
53
|
+
| Risk or follow-up | <task-id-or-work-item> | <risk-or-follow-up> | <owner-or-next-action> | open, pending, complete |
|
|
54
|
+
| Review snippet | <task-id-or-file> | <before-after-or-audit-summary> | <why-useful-for-review> | recorded |
|
|
55
|
+
| Token telemetry | <run-or-task> | before, after, unavailable | <usage-summary-or-unavailable-reason> | recorded |
|
|
56
|
+
|
|
57
|
+
## Implementation Execution Log
|
|
58
|
+
|
|
59
|
+
Record one row per task attempt, validation run, blocker, retry escalation, pause, skip, completion, or handoff. Failed methods, retry conditions, and next safer methods belong here.
|
|
60
|
+
|
|
61
|
+
| Date | Task | Event | Attempt count | Status | Summary | Evidence refs | Blockers | Failed method and reason | Retry condition or next safer method | Confirmation or handoff |
|
|
62
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
63
|
+
| | T-001 | attempt, validation, blocker, retry-escalation, pause, skip, completion, handoff | 0 | pending | | | | | | |
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Work-Item Metadata
|
|
2
|
+
|
|
3
|
+
Use this artifact as the work-item control record. Keep only the stable work-item record, routing index, and current workflow state. Put detailed intake content in `story.md`, work-item decisions in `decisions.md`, implementation readiness in `finalize.md`, and execution state in `tasks.md` or `implement.md`.
|
|
4
|
+
|
|
5
|
+
## Work-Item Record
|
|
6
|
+
|
|
7
|
+
Use this section for durable identity, classification, intake provenance, ownership, dates, and links.
|
|
8
|
+
|
|
9
|
+
| Field | Value |
|
|
10
|
+
| --- | --- |
|
|
11
|
+
| Title | |
|
|
12
|
+
| Folder name | |
|
|
13
|
+
| Naming status | valid, needs-confirmation, legacy |
|
|
14
|
+
| Type | feature, bug, security-vulnerability |
|
|
15
|
+
| Severity | low, medium, high, critical, n/a for feature |
|
|
16
|
+
| Priority | record for features when available |
|
|
17
|
+
| Disclosure status | internal, coordinated, public, n/a |
|
|
18
|
+
| Source resolution status | See `devspec/glossary.md#source-resolution-status-values` |
|
|
19
|
+
| Source system | |
|
|
20
|
+
| Identifier | |
|
|
21
|
+
| URL | |
|
|
22
|
+
| Confirmation status | confirmed, rejected, pending, n/a |
|
|
23
|
+
| Resolution notes | |
|
|
24
|
+
| Owner | |
|
|
25
|
+
| Reviewer | |
|
|
26
|
+
| Created | |
|
|
27
|
+
| Updated | |
|
|
28
|
+
| Parent work item | |
|
|
29
|
+
| Related ADRs | |
|
|
30
|
+
| Related PRs or commits | |
|
|
31
|
+
|
|
32
|
+
## Triage Index
|
|
33
|
+
|
|
34
|
+
Use this section for routing and lookup only. Keep narrative impact, acceptance criteria, and dependency details in `story.md`.
|
|
35
|
+
|
|
36
|
+
| Field | Value |
|
|
37
|
+
| --- | --- |
|
|
38
|
+
| Customer impact summary | |
|
|
39
|
+
| Affected scope | |
|
|
40
|
+
| Affected versions | |
|
|
41
|
+
| Multi-repo dependency | yes, no |
|
|
42
|
+
| Related repositories | repository names only |
|
|
43
|
+
| Detail source | `story.md` |
|
|
44
|
+
|
|
45
|
+
## Workflow State
|
|
46
|
+
|
|
47
|
+
| Field | Value |
|
|
48
|
+
| --- | --- |
|
|
49
|
+
| Work item status | See `devspec/glossary.md#work-item-status-values` |
|
|
50
|
+
| Readiness status | See `devspec/glossary.md#readiness-status-values` |
|
|
51
|
+
| Review status | See `devspec/glossary.md#review-status-values` |
|
|
52
|
+
| Current stage | |
|
|
53
|
+
| Current command | |
|
|
54
|
+
| Current agent | |
|
|
55
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
56
|
+
| Current item | |
|
|
57
|
+
| Last completed step | |
|
|
58
|
+
| Next required action | |
|
|
59
|
+
| Pending user question | |
|
|
60
|
+
| Recommended option | |
|
|
61
|
+
| Resume command | |
|
|
62
|
+
| Resume notes | |
|
|
63
|
+
| Updated | |
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Working Notes
|
|
2
|
+
|
|
3
|
+
Use this artifact only for temporary working notes that do not yet belong in a canonical work-item artifact. Promote durable facts to `story.md`, decisions to `decisions.md`, clarification blockers to `clarify.md`, readiness details to `finalize.md`, tasks to `tasks.md`, implementation evidence to `implement.md`, and review findings to `review.md`.
|
|
4
|
+
|
|
5
|
+
| Date | Note | Disposition |
|
|
6
|
+
| --- | --- | --- |
|
|
7
|
+
| | | keep, promoted, obsolete |
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Review Record
|
|
2
|
+
|
|
3
|
+
Use this artifact for review outcome, actionable findings, and handoff. Keep lifecycle recovery in `Resume State`, overall review judgment and non-actionable notes in `Review Outcome`, and required changes or tracked gaps in `Review Findings`.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | review |
|
|
10
|
+
| Current command | `/devspec.review` |
|
|
11
|
+
| Current agent | devspec.review |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | |
|
|
17
|
+
| Recommended option | |
|
|
18
|
+
| Resume command | `/devspec.review` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Review Outcome
|
|
23
|
+
|
|
24
|
+
| Field | Value |
|
|
25
|
+
| --- | --- |
|
|
26
|
+
| Status | See `devspec/glossary.md#review-status-values` |
|
|
27
|
+
| Reviewer | |
|
|
28
|
+
| Date | |
|
|
29
|
+
| Summary | |
|
|
30
|
+
| Finalized scope alignment | aligned, drift found, not reviewed |
|
|
31
|
+
| Validation coverage | complete, gaps found, not reviewed |
|
|
32
|
+
| Type-specific review notes | bug/security/rule notes or n/a |
|
|
33
|
+
| Follow-up summary | |
|
|
34
|
+
|
|
35
|
+
## Review Findings
|
|
36
|
+
|
|
37
|
+
Record required changes, validation gaps, missing tests, scope drift, security risks, regressions, and follow-ups here. Use `Status` values such as `open`, `fixed`, `accepted-risk`, or `follow-up`.
|
|
38
|
+
|
|
39
|
+
| ID | Severity | Category | Details | Required action | Evidence | Status |
|
|
40
|
+
| --- | --- | --- | --- | --- | --- | --- |
|
|
41
|
+
| F-001 | critical, high, medium, low | bug, regression, security, validation, test-gap, scope, maintainability, follow-up | | | | open |
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Work-Item Intake
|
|
2
|
+
|
|
3
|
+
Use this artifact for detailed work-item intake. Keep identity, classification, source provenance, and routing summaries in `meta.md`; keep work-item decisions in `decisions.md`; keep implementation-ready scope in `finalize.md`.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | story |
|
|
10
|
+
| Current command | `/devspec.story` |
|
|
11
|
+
| Current agent | devspec.story |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | |
|
|
17
|
+
| Recommended option | |
|
|
18
|
+
| Resume command | `/devspec.story` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Intake Source Record
|
|
23
|
+
|
|
24
|
+
| Field | Value |
|
|
25
|
+
| --- | --- |
|
|
26
|
+
| External reference | |
|
|
27
|
+
| Resolved summary shown | |
|
|
28
|
+
| Confirmation basis | `devspec/foundation/provider-integrations.md` |
|
|
29
|
+
| User confirmation | confirmed, rejected, pending |
|
|
30
|
+
| Manual intake used | yes, no |
|
|
31
|
+
| Manual description | |
|
|
32
|
+
| Manual acceptance criteria | |
|
|
33
|
+
|
|
34
|
+
## Work-Item Brief
|
|
35
|
+
|
|
36
|
+
Use this section for the durable work-item narrative. Keep it concise but specific enough for clarification and finalization.
|
|
37
|
+
|
|
38
|
+
| Field | Value |
|
|
39
|
+
| --- | --- |
|
|
40
|
+
| Problem | |
|
|
41
|
+
| Intended outcome | |
|
|
42
|
+
| User or customer impact | |
|
|
43
|
+
| Affected components | |
|
|
44
|
+
| Affected versions | |
|
|
45
|
+
|
|
46
|
+
## Work-Item Details
|
|
47
|
+
|
|
48
|
+
Use this table for facts that affect clarification, readiness, task planning, or validation. Keep repository paths and access requirements in `devspec/foundation/codebase-structure.md`; keep rule definitions in `devspec/foundation/rules.md`.
|
|
49
|
+
|
|
50
|
+
| Type | ID | Item | Source | Status |
|
|
51
|
+
| --- | --- | --- | --- | --- |
|
|
52
|
+
| Acceptance criterion | AC-001 | | confirmed, provider, manual, user | pending |
|
|
53
|
+
| Assumption | ASM-001 | | confirmed, inferred, user | open |
|
|
54
|
+
| Constraint | CON-001 | | foundation, intake, user | open |
|
|
55
|
+
| Dependency | DEP-001 | <dependency-or-none> | intake, user, discovery | open |
|
|
56
|
+
| Multi-repo dependency | DEP-REPO-001 | yes, no; related repositories: <repository-names-only> | confirmed, user | open |
|
|
57
|
+
| Type-specific note | TS-001 | <bug-or-security-note>; rule source: `devspec/foundation/rules.md` | intake, user, rule | open |
|
|
58
|
+
| Risk | RISK-001 | | intake, user, discovery | open |
|
|
59
|
+
| Blocker | BLK-001 | | intake, user, discovery | open |
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Implementation Task Plan
|
|
2
|
+
|
|
3
|
+
Use this artifact as the executable implementation plan. Keep lifecycle recovery in `Resume State`, source references in `Planning Basis`, and all executable task details in `Implementation Tasks`. Each task should include target, dependency, impacted area, validation, and done condition.
|
|
4
|
+
|
|
5
|
+
## Resume State
|
|
6
|
+
|
|
7
|
+
| Field | Value |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| Current stage | tasks |
|
|
10
|
+
| Current command | `/devspec.tasks` |
|
|
11
|
+
| Current agent | devspec.tasks |
|
|
12
|
+
| Run status | See `devspec/glossary.md#run-status-values` |
|
|
13
|
+
| Current item | |
|
|
14
|
+
| Last completed step | |
|
|
15
|
+
| Next required action | |
|
|
16
|
+
| Pending user question | |
|
|
17
|
+
| Recommended option | |
|
|
18
|
+
| Resume command | `/devspec.tasks` |
|
|
19
|
+
| Resume notes | |
|
|
20
|
+
| Updated | |
|
|
21
|
+
|
|
22
|
+
## Planning Basis
|
|
23
|
+
|
|
24
|
+
| Field | Value |
|
|
25
|
+
| --- | --- |
|
|
26
|
+
| Implementation brief source | `finalize.md#implementation-brief` |
|
|
27
|
+
| Validation source | `finalize.md#validation-plan` |
|
|
28
|
+
| Readiness source | `finalize.md#readiness-assessment` |
|
|
29
|
+
| Access requirement source | `devspec/foundation/codebase-structure.md` |
|
|
30
|
+
| Type-specific rule source | `devspec/foundation/rules.md` |
|
|
31
|
+
|
|
32
|
+
## Implementation Tasks
|
|
33
|
+
|
|
34
|
+
Use one row per executable checkpoint. Put likely files or areas, validation steps, and done criteria on the task that owns them. Keep validation commands or methods specific enough for `implement.md` to execute or record.
|
|
35
|
+
|
|
36
|
+
| ID | Task | Target repository | Target area or files | Required access | Depends on | Validation | Done when | Status | Attempt count | Last checkpoint |
|
|
37
|
+
| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
|
|
38
|
+
| T-001 | <developer-action> | <repository-name> | <path-module-or-area> | See `devspec/glossary.md#access-requirement-values` | <task-id-or-none> | <command-method-or-review-signal-and-expected-result> | <observable-completion-condition-and-evidence> | pending | 0 | |
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"profiles": {
|
|
4
|
+
"core": {
|
|
5
|
+
"description": "Core devspec framework, Copilot reference prompts and agents, and shared instructions.",
|
|
6
|
+
"includes": [
|
|
7
|
+
"devspec/**",
|
|
8
|
+
".github/prompts/**",
|
|
9
|
+
".github/agents/**",
|
|
10
|
+
"AGENTS.md"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"copilot": {
|
|
14
|
+
"description": "GitHub Copilot support, including bundled reusable skills.",
|
|
15
|
+
"extends": ["core"],
|
|
16
|
+
"includes": [
|
|
17
|
+
".github/skills/**"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"codex": {
|
|
21
|
+
"description": "OpenAI Codex support through AGENTS.md and adapter guidance.",
|
|
22
|
+
"extends": ["core"],
|
|
23
|
+
"includes": []
|
|
24
|
+
},
|
|
25
|
+
"cursor": {
|
|
26
|
+
"description": "Cursor project rules plus shared AGENTS.md fallback guidance.",
|
|
27
|
+
"extends": ["core"],
|
|
28
|
+
"includes": [
|
|
29
|
+
".cursor/**"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"claude": {
|
|
33
|
+
"description": "Claude Code project skills for devspec workflows.",
|
|
34
|
+
"extends": ["core"],
|
|
35
|
+
"includes": [
|
|
36
|
+
".claude/**"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"gemini": {
|
|
40
|
+
"description": "Gemini CLI context and native /devspec:* command wrappers.",
|
|
41
|
+
"extends": ["core"],
|
|
42
|
+
"includes": [
|
|
43
|
+
"GEMINI.md",
|
|
44
|
+
".gemini/**"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"antigravity": {
|
|
48
|
+
"description": "Google Antigravity workspace rule and skill wrappers.",
|
|
49
|
+
"extends": ["core"],
|
|
50
|
+
"includes": [
|
|
51
|
+
".agents/**"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"all": {
|
|
55
|
+
"description": "All supported devspec adapter files.",
|
|
56
|
+
"extends": ["copilot", "codex", "cursor", "claude", "gemini", "antigravity"],
|
|
57
|
+
"includes": []
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|