@skilly-hand/skilly-hand 0.29.2 → 0.30.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/CHANGELOG.md +31 -0
- package/README.md +2 -2
- package/catalog/README.md +3 -3
- package/catalog/skills/review-rangers/SKILL.md +91 -7
- package/catalog/skills/review-rangers/assets/mender-template.md +70 -0
- package/catalog/skills/review-rangers/manifest.json +8 -7
- package/catalog/skills/spec-driven-development/SKILL.md +95 -144
- package/catalog/skills/spec-driven-development/agents/apply.md +30 -15
- package/catalog/skills/spec-driven-development/agents/orchestrate.md +23 -14
- package/catalog/skills/spec-driven-development/agents/plan.md +19 -17
- package/catalog/skills/spec-driven-development/agents/verify.md +40 -19
- package/catalog/skills/spec-driven-development/assets/delta-spec-template.md +50 -15
- package/catalog/skills/spec-driven-development/assets/design-template.md +20 -14
- package/catalog/skills/spec-driven-development/assets/spec-template.md +41 -20
- package/catalog/skills/spec-driven-development/assets/validation-checklist.md +28 -21
- package/catalog/skills/spec-driven-development/manifest.json +4 -4
- package/catalog/skills/test-driven-development/SKILL.md +92 -117
- package/catalog/skills/test-driven-development/assets/tdd-cycle.md +63 -447
- package/catalog/skills/test-driven-development/manifest.json +5 -5
- package/package.json +5 -3
- package/packages/catalog/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/detectors/package.json +1 -1
|
@@ -2,25 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Implement approved spec
|
|
5
|
+
Implement approved tasks one at a time and keep the spec synchronized with execution evidence.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Procedure
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
1. Read `spec.md`, relevant design decisions, and repository instructions.
|
|
10
|
+
2. Confirm the approval policy is satisfied and dependencies are `DONE`.
|
|
11
|
+
3. Resolve required capabilities from available local skills, tools, or structured self-review.
|
|
12
|
+
4. Mark the selected task `IN_PROGRESS`.
|
|
13
|
+
5. Implement only the assigned outcome.
|
|
14
|
+
6. When the task declares test-driven work, follow the available TDD guidance or the portable RED/GREEN/REFACTOR contract described in the task.
|
|
15
|
+
7. Run the task verify step using commands discovered from the project.
|
|
16
|
+
8. Record concise evidence: command or check, result, and relevant output summary.
|
|
17
|
+
9. Mark the task `DONE` only after verification passes; otherwise mark it `BLOCKED` with the cause.
|
|
18
|
+
10. Append a change-log entry only for requirement, scope, or design changes, not routine progress.
|
|
11
19
|
|
|
12
|
-
##
|
|
20
|
+
## Scope Change Rule
|
|
21
|
+
|
|
22
|
+
If implementation reveals new behavior, conflicting constraints, or a wider blast radius, stop the affected task and return it to planning. Do not silently add work or rewrite acceptance criteria to match the implementation.
|
|
23
|
+
|
|
24
|
+
## Evidence Contract
|
|
25
|
+
|
|
26
|
+
Evidence must be reproducible and proportionate:
|
|
27
|
+
|
|
28
|
+
```text
|
|
29
|
+
Check: <command or manual procedure>
|
|
30
|
+
Result: PASS | FAIL | NOT_RUN
|
|
31
|
+
Summary: <short factual result>
|
|
32
|
+
```
|
|
13
33
|
|
|
14
|
-
|
|
15
|
-
2. Execute one task at a time.
|
|
16
|
-
3. Keep changes scoped to the assigned task.
|
|
17
|
-
4. Run the task verify step before marking done.
|
|
18
|
-
5. Record progress against task IDs.
|
|
19
|
-
6. Stop and report blockers when constraints conflict.
|
|
34
|
+
Do not claim a command ran when it did not. Record unavailable or human-only checks explicitly.
|
|
20
35
|
|
|
21
36
|
## Quality Bar
|
|
22
37
|
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
38
|
+
- Changes remain inside task scope.
|
|
39
|
+
- Verification evidence supports the `DONE` state.
|
|
40
|
+
- Optional integrations have a documented local fallback.
|
|
41
|
+
- No automatic commit, issue update, or remote action is assumed.
|
|
@@ -2,24 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Coordinate planning, implementation, and
|
|
5
|
+
Coordinate planning, implementation, verification, and archive while remaining usable without delegation or external integrations.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Workflow
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
1. PLAN: create or update the active spec.
|
|
10
|
+
2. APPROVE: apply the spec's checkpoint or self-review policy.
|
|
11
|
+
3. APPLY: execute one ready task at a time.
|
|
12
|
+
4. VERIFY TASK: require evidence before selecting the next task.
|
|
13
|
+
5. REPLAN: return changed requirements or blocked dependencies to planning.
|
|
14
|
+
6. VERIFY FEATURE: run validation and the portable final review gate.
|
|
15
|
+
7. ARCHIVE: enforce archive invariants and move the completed work once.
|
|
11
16
|
|
|
12
|
-
##
|
|
17
|
+
## Capability Resolution
|
|
18
|
+
|
|
19
|
+
- Delegate a phase only when a suitable capability is available and delegation improves the outcome.
|
|
20
|
+
- Otherwise execute the corresponding local mode directly.
|
|
21
|
+
- Never invent resource names, identifiers, issue keys, commands, or service availability.
|
|
22
|
+
- Remote writes, commits, and comments require their own discovered workflow and user authorization.
|
|
23
|
+
|
|
24
|
+
## Checkpoint Policy
|
|
13
25
|
|
|
14
|
-
|
|
15
|
-
2. REVIEW CHECKPOINT: Confirm the plan is approved.
|
|
16
|
-
3. APPLY: Execute agreed task batch.
|
|
17
|
-
4. VERIFY CHECKPOINT: Validate outputs against the spec and run the required final `review-rangers` gate.
|
|
18
|
-
5. REPEAT: Continue by phase or task batch.
|
|
19
|
-
6. ARCHIVE: Move completed work from `.sdd/active/` to `.sdd/archive/`.
|
|
26
|
+
Pause for explicit user approval when required by the spec, risk, ambiguity, or an irreversible action. For low-risk autonomous work, record a self-review decision and continue.
|
|
20
27
|
|
|
21
28
|
## Coordination Rules
|
|
22
29
|
|
|
23
|
-
-
|
|
24
|
-
- Keep
|
|
25
|
-
-
|
|
30
|
+
- Keep `spec.md` authoritative.
|
|
31
|
+
- Keep at most one task `IN_PROGRESS` unless independence is explicit.
|
|
32
|
+
- Do not advance past failed verification.
|
|
33
|
+
- Surface blockers with evidence and the smallest decision needed.
|
|
34
|
+
- Do not declare completion while open tasks or unresolved blockers remain.
|
|
@@ -2,26 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Turn a request into an executable,
|
|
6
|
-
|
|
7
|
-
## Inputs
|
|
8
|
-
|
|
9
|
-
- Goal or problem statement.
|
|
10
|
-
- Known constraints.
|
|
11
|
-
- Current state references (files, systems, behaviors).
|
|
5
|
+
Turn a request into an executable spec without assuming a framework, toolchain, or external service.
|
|
12
6
|
|
|
13
7
|
## Procedure
|
|
14
8
|
|
|
15
|
-
1.
|
|
16
|
-
2.
|
|
17
|
-
3.
|
|
18
|
-
4.
|
|
19
|
-
5.
|
|
20
|
-
6.
|
|
9
|
+
1. Inspect the repository for applicable instructions, conventions, commands, and existing behavior.
|
|
10
|
+
2. Clarify only missing information that cannot be discovered safely.
|
|
11
|
+
3. Choose a full or delta spec.
|
|
12
|
+
4. Define scope, constraints, non-goals, approval policy, and validation.
|
|
13
|
+
5. Create tasks using the task contract from the parent skill.
|
|
14
|
+
6. Add behavioral scenarios where outcomes can be observed.
|
|
15
|
+
7. Describe required capabilities semantically and use `none` when no special capability is needed.
|
|
16
|
+
8. Initialize one progress row per task with `TODO`.
|
|
17
|
+
9. Self-review with the validation checklist and apply the approval policy.
|
|
21
18
|
|
|
22
19
|
## Quality Bar
|
|
23
20
|
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
21
|
+
- Another implementer can execute without guessing intent.
|
|
22
|
+
- No task requires a named agent, skill, vendor, framework, or command that has not been discovered locally.
|
|
23
|
+
- Tasks, progress rows, and validation are mutually consistent.
|
|
24
|
+
- Risks and meaningful alternatives live in `design.md`; routine choices stay in the spec.
|
|
25
|
+
- `spec.md` is the only task source of truth.
|
|
26
|
+
|
|
27
|
+
## Blockers
|
|
28
|
+
|
|
29
|
+
Mark planning `BLOCKED` only when a required decision or fact cannot be discovered and a reasonable assumption would create material risk. Record the missing input and its impact.
|
|
@@ -2,31 +2,52 @@
|
|
|
2
2
|
|
|
3
3
|
## Purpose
|
|
4
4
|
|
|
5
|
-
Validate
|
|
5
|
+
Validate implementation against the approved spec using reproducible evidence and a portable final review.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Procedure
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
1. Read the complete spec and relevant design decisions.
|
|
10
|
+
2. Confirm every task has a terminal state and `DONE` tasks have evidence.
|
|
11
|
+
3. Run or inspect each task verify step.
|
|
12
|
+
4. Run feature-level validation discovered from the repository and listed in the spec.
|
|
13
|
+
5. Evaluate every `MUST` and `MUST NOT` constraint independently.
|
|
14
|
+
6. Identify manual checks that still require human confirmation.
|
|
15
|
+
7. Perform the final review gate below.
|
|
16
|
+
8. Report blockers, warnings, and evidence separately.
|
|
11
17
|
|
|
12
|
-
##
|
|
18
|
+
## Portable Final Review Gate
|
|
19
|
+
|
|
20
|
+
Use an installed review capability when one is available and applicable. Otherwise perform this local review:
|
|
21
|
+
|
|
22
|
+
- Correctness: implementation satisfies every scenario and constraint.
|
|
23
|
+
- Regression risk: affected existing behavior has appropriate checks.
|
|
24
|
+
- Scope: no unapproved behavior or dependency was introduced.
|
|
25
|
+
- Maintainability: changes follow discovered project conventions.
|
|
26
|
+
- Safety: security, privacy, accessibility, data, and destructive-operation risks were considered when relevant.
|
|
27
|
+
- Evidence: results are reproducible and unsupported claims are absent.
|
|
28
|
+
|
|
29
|
+
Any unresolved correctness, constraint, or safety blocker fails verification. Missing optional tooling does not fail verification when this fallback is completed.
|
|
30
|
+
|
|
31
|
+
## Report Contract
|
|
32
|
+
|
|
33
|
+
```markdown
|
|
34
|
+
## Verification Report
|
|
13
35
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
3. Run feature-level validation commands.
|
|
17
|
-
4. Confirm constraints (`MUST`, `MUST NOT`) were respected.
|
|
18
|
-
5. Run a final structured `review-rangers` pass over the full change set.
|
|
19
|
-
6. Report pass/fail per area with concrete evidence.
|
|
36
|
+
### Task Evidence
|
|
37
|
+
| Task | Check | Result | Evidence |
|
|
20
38
|
|
|
21
|
-
###
|
|
39
|
+
### Constraints
|
|
40
|
+
| Constraint | Result | Evidence |
|
|
22
41
|
|
|
23
|
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
42
|
+
### Final Review
|
|
43
|
+
- Result: PASS | FAIL
|
|
44
|
+
- Blockers: none | list
|
|
45
|
+
- Warnings: none | list
|
|
46
|
+
- Manual checks: none | list
|
|
47
|
+
```
|
|
27
48
|
|
|
28
49
|
## Quality Bar
|
|
29
50
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
51
|
+
- Results distinguish `PASS`, `FAIL`, and `NOT_RUN`.
|
|
52
|
+
- Manual validation is never reported as automated evidence.
|
|
53
|
+
- Archive readiness is an explicit conclusion, not an implication.
|
|
@@ -1,51 +1,86 @@
|
|
|
1
|
-
# [
|
|
2
|
-
|
|
3
|
-
Use this template when changing behavior in an existing feature.
|
|
1
|
+
# [Work Name] - Delta Spec
|
|
4
2
|
|
|
5
3
|
## Why
|
|
6
4
|
|
|
7
|
-
[
|
|
5
|
+
[Reason for changing established behavior.]
|
|
8
6
|
|
|
9
|
-
##
|
|
7
|
+
## Baseline
|
|
10
8
|
|
|
11
|
-
[
|
|
9
|
+
[Maintained requirement source or a concise description of current behavior.]
|
|
12
10
|
|
|
13
11
|
## ADDED Requirements
|
|
14
12
|
|
|
15
13
|
### Requirement: [Name]
|
|
16
14
|
|
|
17
|
-
[MUST
|
|
15
|
+
[MUST, SHOULD, or MAY statement.]
|
|
18
16
|
|
|
19
17
|
#### Scenario: [Name]
|
|
20
18
|
|
|
21
19
|
- GIVEN [initial state]
|
|
22
20
|
- WHEN [action]
|
|
23
|
-
- THEN [
|
|
21
|
+
- THEN [observable result]
|
|
24
22
|
|
|
25
23
|
## MODIFIED Requirements
|
|
26
24
|
|
|
27
25
|
### Requirement: [Name]
|
|
28
26
|
|
|
29
|
-
[
|
|
27
|
+
[Complete replacement requirement.]
|
|
30
28
|
|
|
31
|
-
|
|
29
|
+
Previously: [Previous requirement or behavior.]
|
|
32
30
|
|
|
33
31
|
## REMOVED Requirements
|
|
34
32
|
|
|
35
33
|
### Requirement: [Name]
|
|
36
34
|
|
|
37
|
-
|
|
35
|
+
Reason: [Why it is removed.]
|
|
36
|
+
|
|
37
|
+
## Constraints
|
|
38
|
+
|
|
39
|
+
### Must
|
|
40
|
+
|
|
41
|
+
- [Enforceable requirement]
|
|
42
|
+
|
|
43
|
+
### Must Not
|
|
44
|
+
|
|
45
|
+
- [Disallowed behavior]
|
|
46
|
+
|
|
47
|
+
### Out of Scope
|
|
48
|
+
|
|
49
|
+
- [Boundary]
|
|
50
|
+
|
|
51
|
+
## Approval Policy
|
|
52
|
+
|
|
53
|
+
- Mode: [explicit checkpoint | self-review]
|
|
54
|
+
- Trigger for reapproval: [change condition]
|
|
38
55
|
|
|
39
56
|
## Tasks
|
|
40
57
|
|
|
41
58
|
### T1: [Title]
|
|
42
59
|
|
|
43
|
-
**What:** [
|
|
60
|
+
**What:** [Observable outcome]
|
|
61
|
+
**Required Capabilities:** [Semantic capabilities, or `none`]
|
|
62
|
+
**Files:** [Expected files, or `discover`]
|
|
63
|
+
**Scenario:** [GIVEN / WHEN / THEN, when behavioral]
|
|
64
|
+
**Verify:** [Project-discovered command or concrete manual check]
|
|
65
|
+
**Done:** [One-sentence completion condition]
|
|
44
66
|
|
|
45
|
-
|
|
67
|
+
## Progress
|
|
46
68
|
|
|
47
|
-
|
|
69
|
+
| Task | Status | Evidence |
|
|
70
|
+
| --- | --- | --- |
|
|
71
|
+
| T1 | TODO | |
|
|
48
72
|
|
|
49
73
|
## Validation
|
|
50
74
|
|
|
51
|
-
- [Checks that prove the
|
|
75
|
+
- [Checks that prove the behavior delta]
|
|
76
|
+
- [Regression checks for retained behavior]
|
|
77
|
+
|
|
78
|
+
## Reconciliation
|
|
79
|
+
|
|
80
|
+
- Baseline update required: [yes | no]
|
|
81
|
+
- Reconciliation result: [pending | complete | not applicable]
|
|
82
|
+
|
|
83
|
+
## Change Log
|
|
84
|
+
|
|
85
|
+
| Date | Change | Affected Tasks | Approval |
|
|
86
|
+
| --- | --- | --- | --- |
|
|
@@ -1,31 +1,37 @@
|
|
|
1
|
-
# Design: [
|
|
1
|
+
# Design: [Work Name]
|
|
2
2
|
|
|
3
|
-
Use
|
|
3
|
+
Use this artifact only for decisions whose rationale or trade-offs will matter after implementation.
|
|
4
4
|
|
|
5
5
|
## Context
|
|
6
6
|
|
|
7
|
-
[
|
|
7
|
+
[Verified system state and reason a decision is needed.]
|
|
8
8
|
|
|
9
9
|
## Goals
|
|
10
10
|
|
|
11
|
-
- [
|
|
12
|
-
- [Secondary outcome]
|
|
11
|
+
- [Desired outcome]
|
|
13
12
|
|
|
14
13
|
## Non-Goals
|
|
15
14
|
|
|
16
|
-
- [
|
|
17
|
-
- [Another excluded area]
|
|
15
|
+
- [Explicit exclusion]
|
|
18
16
|
|
|
19
|
-
##
|
|
17
|
+
## Decision
|
|
20
18
|
|
|
21
|
-
### Decision
|
|
19
|
+
### [Decision Name]
|
|
22
20
|
|
|
23
|
-
|
|
21
|
+
- Choice: [Selected approach]
|
|
22
|
+
- Rationale: [Why it fits the constraints]
|
|
23
|
+
- Required capabilities: [Semantic capabilities, or `none`]
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
## Alternatives Considered
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
| Alternative | Benefit | Cost | Reason Not Selected |
|
|
28
|
+
| --- | --- | --- | --- |
|
|
28
29
|
|
|
29
|
-
## Risks
|
|
30
|
+
## Risks and Mitigations
|
|
30
31
|
|
|
31
|
-
|
|
32
|
+
| Risk | Impact | Mitigation | Verification |
|
|
33
|
+
| --- | --- | --- | --- |
|
|
34
|
+
|
|
35
|
+
## Revisit Conditions
|
|
36
|
+
|
|
37
|
+
- [Evidence or change that should reopen this decision]
|
|
@@ -1,56 +1,77 @@
|
|
|
1
|
-
# [
|
|
1
|
+
# [Work Name]
|
|
2
2
|
|
|
3
3
|
## Why
|
|
4
4
|
|
|
5
|
-
[
|
|
5
|
+
[Problem, value, and why it matters now.]
|
|
6
6
|
|
|
7
7
|
## What
|
|
8
8
|
|
|
9
|
-
[Concrete
|
|
9
|
+
[Concrete and testable deliverable.]
|
|
10
10
|
|
|
11
11
|
## Constraints
|
|
12
12
|
|
|
13
13
|
### Must
|
|
14
14
|
|
|
15
|
-
- [
|
|
16
|
-
|
|
15
|
+
- [Enforceable requirement]
|
|
16
|
+
|
|
17
|
+
### Should
|
|
18
|
+
|
|
19
|
+
- [Preferred outcome; deviations require a reason]
|
|
17
20
|
|
|
18
21
|
### Must Not
|
|
19
22
|
|
|
20
|
-
- [Disallowed
|
|
21
|
-
- [Disallowed dependencies or behavioral changes]
|
|
23
|
+
- [Disallowed behavior or approach]
|
|
22
24
|
|
|
23
25
|
### Out of Scope
|
|
24
26
|
|
|
25
|
-
- [
|
|
27
|
+
- [Explicit boundary]
|
|
26
28
|
|
|
27
29
|
## Current State
|
|
28
30
|
|
|
29
|
-
- [
|
|
30
|
-
|
|
31
|
+
- [Verified files, behavior, dependencies, and conventions]
|
|
32
|
+
|
|
33
|
+
## Approval Policy
|
|
34
|
+
|
|
35
|
+
- Mode: [explicit checkpoint | self-review]
|
|
36
|
+
- Trigger for reapproval: [scope, constraint, risk, or design change]
|
|
31
37
|
|
|
32
38
|
## Tasks
|
|
33
39
|
|
|
34
40
|
### T1: [Title]
|
|
35
41
|
|
|
36
|
-
**What:** [
|
|
42
|
+
**What:** [Observable outcome]
|
|
43
|
+
|
|
44
|
+
**Required Capabilities:** [Semantic capabilities, or `none`]
|
|
37
45
|
|
|
38
|
-
**Files:**
|
|
46
|
+
**Files:** [Expected files, or `discover`]
|
|
39
47
|
|
|
40
|
-
**
|
|
48
|
+
**Scenario:**
|
|
41
49
|
|
|
42
|
-
|
|
50
|
+
- GIVEN [initial state]
|
|
51
|
+
- WHEN [action]
|
|
52
|
+
- THEN [observable result]
|
|
43
53
|
|
|
44
|
-
|
|
54
|
+
**Verify:** [Project-discovered command or concrete manual check]
|
|
45
55
|
|
|
46
|
-
**
|
|
56
|
+
**Done:** [One-sentence completion condition]
|
|
47
57
|
|
|
48
|
-
|
|
58
|
+
## Progress
|
|
49
59
|
|
|
50
|
-
|
|
60
|
+
| Task | Status | Evidence |
|
|
61
|
+
| --- | --- | --- |
|
|
62
|
+
| T1 | TODO | |
|
|
63
|
+
|
|
64
|
+
Valid states: `TODO`, `IN_PROGRESS`, `BLOCKED`, `DONE`.
|
|
51
65
|
|
|
52
66
|
## Validation
|
|
53
67
|
|
|
54
68
|
- [Feature-level automated check]
|
|
55
|
-
- [Feature-level manual scenario]
|
|
56
|
-
- [
|
|
69
|
+
- [Feature-level manual scenario, if needed]
|
|
70
|
+
- [Constraint or regression check]
|
|
71
|
+
|
|
72
|
+
## Change Log
|
|
73
|
+
|
|
74
|
+
Record requirement, scope, or design changes. Do not log routine progress.
|
|
75
|
+
|
|
76
|
+
| Date | Change | Affected Tasks | Approval |
|
|
77
|
+
| --- | --- | --- | --- |
|
|
@@ -1,33 +1,40 @@
|
|
|
1
1
|
# Spec Validation Checklist
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Portability
|
|
4
|
+
|
|
5
|
+
- [ ] The workflow is executable without a named external skill, agent, vendor, service, framework, VCS, package manager, or test runner.
|
|
6
|
+
- [ ] Required capabilities are semantic and can use a local fallback.
|
|
7
|
+
- [ ] Commands were discovered from the target project or are clearly marked as placeholders.
|
|
8
|
+
- [ ] Protocol states use portable ASCII tokens.
|
|
4
9
|
|
|
5
10
|
## Spec Quality
|
|
6
11
|
|
|
7
|
-
- [ ]
|
|
8
|
-
- [ ]
|
|
9
|
-
- [ ]
|
|
10
|
-
- [ ]
|
|
11
|
-
- [ ]
|
|
12
|
+
- [ ] `Why` and `What` are concrete.
|
|
13
|
+
- [ ] Constraints and out-of-scope boundaries are enforceable.
|
|
14
|
+
- [ ] Current-state claims reference verified context.
|
|
15
|
+
- [ ] Approval and reapproval policies are explicit.
|
|
16
|
+
- [ ] Architecture decisions are captured only when their rationale matters.
|
|
12
17
|
|
|
13
18
|
## Task Quality
|
|
14
19
|
|
|
15
|
-
- [ ]
|
|
16
|
-
- [ ] Each task
|
|
17
|
-
- [ ]
|
|
18
|
-
- [ ]
|
|
20
|
+
- [ ] Each task has one observable outcome.
|
|
21
|
+
- [ ] Each task declares capabilities, files, verify step, and definition of done.
|
|
22
|
+
- [ ] Behavioral tasks include an acceptance scenario.
|
|
23
|
+
- [ ] Dependencies and blockers are visible.
|
|
24
|
+
- [ ] Tasks exist only in `spec.md`.
|
|
19
25
|
|
|
20
|
-
##
|
|
26
|
+
## Execution Evidence
|
|
21
27
|
|
|
22
|
-
- [ ]
|
|
23
|
-
- [ ]
|
|
24
|
-
- [ ]
|
|
28
|
+
- [ ] Every `DONE` task has reproducible evidence.
|
|
29
|
+
- [ ] Failed or unavailable checks are recorded honestly.
|
|
30
|
+
- [ ] Scope changes updated the spec before implementation continued.
|
|
31
|
+
- [ ] Superseded evidence is identified.
|
|
25
32
|
|
|
26
|
-
## Pre-Archive
|
|
33
|
+
## Pre-Archive
|
|
27
34
|
|
|
28
|
-
- [ ] All
|
|
29
|
-
- [ ] Feature
|
|
30
|
-
- [ ]
|
|
31
|
-
- [ ]
|
|
32
|
-
- [ ]
|
|
33
|
-
- [ ]
|
|
35
|
+
- [ ] All tasks are `DONE` and no blocker remains.
|
|
36
|
+
- [ ] Feature validation and constraint checks pass.
|
|
37
|
+
- [ ] The portable final review gate passes.
|
|
38
|
+
- [ ] Manual checks are complete or explicitly approved.
|
|
39
|
+
- [ ] Delta reconciliation is complete when applicable.
|
|
40
|
+
- [ ] Archive name uses `<YYYY-MM-DD>-<work-name>`.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "spec-driven-development",
|
|
3
3
|
"title": "Spec-Driven Development",
|
|
4
|
-
"description": "Plan, execute, and verify multi-step work through versioned specs with small, testable tasks.",
|
|
4
|
+
"description": "Plan, execute, and verify multi-step work through versioned specs with small, testable tasks. Trigger: planning or executing feature work, bug fixes, and multi-phase implementation.",
|
|
5
5
|
"portable": true,
|
|
6
6
|
"tags": ["core", "workflow", "planning"],
|
|
7
7
|
"detectors": ["always"],
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"agentSupport": ["codex", "claude", "cursor", "gemini", "copilot", "antigravity", "windsurf", "trae"],
|
|
11
11
|
"skillMetadata": {
|
|
12
12
|
"author": "skilly-hand",
|
|
13
|
-
"last-edit": "2026-
|
|
13
|
+
"last-edit": "2026-06-20",
|
|
14
14
|
"license": "Apache-2.0",
|
|
15
|
-
"version": "1.0
|
|
16
|
-
"changelog": "Added
|
|
15
|
+
"version": "1.1.0",
|
|
16
|
+
"changelog": "Added a portable SDD lifecycle with capability-based routing, task evidence, change control, and archive invariants; prevents fixed tool dependencies and duplicated task state; affects planning, apply, verify, orchestrate, and spec templates",
|
|
17
17
|
"auto-invoke": "Planning or executing feature work, bug fixes, and multi-phase implementation",
|
|
18
18
|
"allowed-modes": [
|
|
19
19
|
"plan",
|