sdd-cli 0.1.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.
Files changed (186) hide show
  1. package/README.md +566 -0
  2. package/dist/cli.d.ts +2 -0
  3. package/dist/cli.js +308 -0
  4. package/dist/commands/ai-exec.d.ts +1 -0
  5. package/dist/commands/ai-exec.js +18 -0
  6. package/dist/commands/ai-status.d.ts +1 -0
  7. package/dist/commands/ai-status.js +12 -0
  8. package/dist/commands/doctor.d.ts +1 -0
  9. package/dist/commands/doctor.js +101 -0
  10. package/dist/commands/gen-architecture.d.ts +1 -0
  11. package/dist/commands/gen-architecture.js +61 -0
  12. package/dist/commands/gen-best-practices.d.ts +1 -0
  13. package/dist/commands/gen-best-practices.js +64 -0
  14. package/dist/commands/gen-functional-spec.d.ts +1 -0
  15. package/dist/commands/gen-functional-spec.js +67 -0
  16. package/dist/commands/gen-project-readme.d.ts +1 -0
  17. package/dist/commands/gen-project-readme.js +72 -0
  18. package/dist/commands/gen-requirements.d.ts +1 -0
  19. package/dist/commands/gen-requirements.js +7 -0
  20. package/dist/commands/gen-technical-spec.d.ts +1 -0
  21. package/dist/commands/gen-technical-spec.js +67 -0
  22. package/dist/commands/gen-utils.d.ts +4 -0
  23. package/dist/commands/gen-utils.js +44 -0
  24. package/dist/commands/hello.d.ts +1 -0
  25. package/dist/commands/hello.js +63 -0
  26. package/dist/commands/init.d.ts +1 -0
  27. package/dist/commands/init.js +9 -0
  28. package/dist/commands/learn-deliver.d.ts +1 -0
  29. package/dist/commands/learn-deliver.js +55 -0
  30. package/dist/commands/learn-refine.d.ts +1 -0
  31. package/dist/commands/learn-refine.js +71 -0
  32. package/dist/commands/learn-start.d.ts +1 -0
  33. package/dist/commands/learn-start.js +63 -0
  34. package/dist/commands/learn-utils.d.ts +22 -0
  35. package/dist/commands/learn-utils.js +78 -0
  36. package/dist/commands/list.d.ts +1 -0
  37. package/dist/commands/list.js +69 -0
  38. package/dist/commands/pr-audit.d.ts +1 -0
  39. package/dist/commands/pr-audit.js +59 -0
  40. package/dist/commands/pr-finish.d.ts +1 -0
  41. package/dist/commands/pr-finish.js +51 -0
  42. package/dist/commands/pr-report.d.ts +1 -0
  43. package/dist/commands/pr-report.js +59 -0
  44. package/dist/commands/pr-respond.d.ts +1 -0
  45. package/dist/commands/pr-respond.js +65 -0
  46. package/dist/commands/pr-start.d.ts +1 -0
  47. package/dist/commands/pr-start.js +79 -0
  48. package/dist/commands/pr-utils.d.ts +8 -0
  49. package/dist/commands/pr-utils.js +54 -0
  50. package/dist/commands/req-archive.d.ts +1 -0
  51. package/dist/commands/req-archive.js +33 -0
  52. package/dist/commands/req-create.d.ts +10 -0
  53. package/dist/commands/req-create.js +94 -0
  54. package/dist/commands/req-export.d.ts +1 -0
  55. package/dist/commands/req-export.js +37 -0
  56. package/dist/commands/req-finish.d.ts +1 -0
  57. package/dist/commands/req-finish.js +120 -0
  58. package/dist/commands/req-lint.d.ts +1 -0
  59. package/dist/commands/req-lint.js +58 -0
  60. package/dist/commands/req-list.d.ts +1 -0
  61. package/dist/commands/req-list.js +36 -0
  62. package/dist/commands/req-plan.d.ts +1 -0
  63. package/dist/commands/req-plan.js +200 -0
  64. package/dist/commands/req-refine.d.ts +1 -0
  65. package/dist/commands/req-refine.js +108 -0
  66. package/dist/commands/req-report.d.ts +1 -0
  67. package/dist/commands/req-report.js +44 -0
  68. package/dist/commands/req-start.d.ts +1 -0
  69. package/dist/commands/req-start.js +131 -0
  70. package/dist/commands/req-status.d.ts +1 -0
  71. package/dist/commands/req-status.js +29 -0
  72. package/dist/commands/route.d.ts +1 -0
  73. package/dist/commands/route.js +30 -0
  74. package/dist/commands/test-plan.d.ts +1 -0
  75. package/dist/commands/test-plan.js +81 -0
  76. package/dist/context/flags.d.ts +7 -0
  77. package/dist/context/flags.js +17 -0
  78. package/dist/paths.d.ts +1 -0
  79. package/dist/paths.js +10 -0
  80. package/dist/providers/codex.d.ts +7 -0
  81. package/dist/providers/codex.js +19 -0
  82. package/dist/router/flow.d.ts +1 -0
  83. package/dist/router/flow.js +17 -0
  84. package/dist/router/intent.d.ts +3 -0
  85. package/dist/router/intent.js +69 -0
  86. package/dist/router/prompt-map.d.ts +1 -0
  87. package/dist/router/prompt-map.js +20 -0
  88. package/dist/router/prompt-packs.d.ts +8 -0
  89. package/dist/router/prompt-packs.js +20 -0
  90. package/dist/router/validate-prompt-packs.d.ts +4 -0
  91. package/dist/router/validate-prompt-packs.js +16 -0
  92. package/dist/templates/render.d.ts +2 -0
  93. package/dist/templates/render.js +25 -0
  94. package/dist/templates/validate.d.ts +4 -0
  95. package/dist/templates/validate.js +58 -0
  96. package/dist/types.d.ts +7 -0
  97. package/dist/types.js +2 -0
  98. package/dist/ui/prompt.d.ts +2 -0
  99. package/dist/ui/prompt.js +49 -0
  100. package/dist/utils/list.d.ts +2 -0
  101. package/dist/utils/list.js +20 -0
  102. package/dist/validation/validate.d.ts +4 -0
  103. package/dist/validation/validate.js +20 -0
  104. package/dist/workspace/index.d.ts +21 -0
  105. package/dist/workspace/index.js +103 -0
  106. package/flows/ADMISSIONS_ADMIN.md +33 -0
  107. package/flows/ART.md +33 -0
  108. package/flows/BUG_FIX.md +32 -0
  109. package/flows/COURT_SYSTEM.md +33 -0
  110. package/flows/DATA_SCIENTIST.md +33 -0
  111. package/flows/ECOMMERCE.md +33 -0
  112. package/flows/ECONOMICS.md +33 -0
  113. package/flows/GRAPHIC_DESIGN.md +33 -0
  114. package/flows/HISTORY.md +33 -0
  115. package/flows/LAWYER.md +34 -0
  116. package/flows/PROGRAMMER.md +33 -0
  117. package/flows/PR_REVIEW.md +33 -0
  118. package/flows/README.md +29 -0
  119. package/flows/RETAIL_STORE.md +33 -0
  120. package/flows/SOCIOLOGY.md +33 -0
  121. package/flows/STATE_ADMIN.md +33 -0
  122. package/flows/STUDENT_UNIVERSITY.md +33 -0
  123. package/flows/TAXES_ADMIN.md +33 -0
  124. package/flows/TEACHER.md +33 -0
  125. package/package.json +32 -0
  126. package/router/BUG_FIX.flow.md +63 -0
  127. package/router/BUSINESS.flow.md +57 -0
  128. package/router/DATA_SCIENCE.flow.md +58 -0
  129. package/router/DESIGN.flow.md +58 -0
  130. package/router/FLOW_TEMPLATE.md +26 -0
  131. package/router/GENERIC.flow.md +37 -0
  132. package/router/HUMANITIES.flow.md +58 -0
  133. package/router/LEARN.flow.md +52 -0
  134. package/router/LEGAL.flow.md +58 -0
  135. package/router/PR_REVIEW.flow.md +55 -0
  136. package/router/README.md +23 -0
  137. package/router/SOFTWARE_FEATURE.flow.md +59 -0
  138. package/schemas/architecture.schema.json +13 -0
  139. package/schemas/decision-log.schema.json +16 -0
  140. package/schemas/diagram.schema.json +11 -0
  141. package/schemas/domain.schema.json +20 -0
  142. package/schemas/functional-spec.schema.json +15 -0
  143. package/schemas/gate.schema.json +10 -0
  144. package/schemas/learn-session.schema.json +15 -0
  145. package/schemas/pr-review.schema.json +20 -0
  146. package/schemas/progress-log.schema.json +21 -0
  147. package/schemas/project-readme.schema.json +23 -0
  148. package/schemas/project.schema.json +16 -0
  149. package/schemas/prompt-pack.schema.json +12 -0
  150. package/schemas/quality.schema.json +23 -0
  151. package/schemas/requirement.schema.json +34 -0
  152. package/schemas/role.schema.json +17 -0
  153. package/schemas/router-flow.schema.json +15 -0
  154. package/schemas/router-intent.schema.json +13 -0
  155. package/schemas/technical-spec.schema.json +15 -0
  156. package/schemas/template.schema.json +10 -0
  157. package/schemas/test-plan.schema.json +13 -0
  158. package/schemas/workspace.schema.json +12 -0
  159. package/templates/architecture.md +16 -0
  160. package/templates/changelog.md +3 -0
  161. package/templates/ci-checklist.md +14 -0
  162. package/templates/decision-log.md +16 -0
  163. package/templates/diagrams/component.mmd +3 -0
  164. package/templates/diagrams/container.mmd +3 -0
  165. package/templates/diagrams/context.mmd +3 -0
  166. package/templates/functional-spec.md +22 -0
  167. package/templates/gate-index.json +20 -0
  168. package/templates/implementation-plan.md +13 -0
  169. package/templates/pr-comment-audit.md +19 -0
  170. package/templates/pr-comment-lifecycle.md +11 -0
  171. package/templates/pr-comment-severity.md +13 -0
  172. package/templates/pr-dispute-resolution.md +16 -0
  173. package/templates/pr-metrics.md +10 -0
  174. package/templates/pr-response-generator.md +11 -0
  175. package/templates/pr-response-style.md +13 -0
  176. package/templates/pr-review-report.md +22 -0
  177. package/templates/pr-review-summary.md +16 -0
  178. package/templates/progress-log.md +6 -0
  179. package/templates/project-readme.md +19 -0
  180. package/templates/prompt-pack-index.json +127 -0
  181. package/templates/quality.yml +17 -0
  182. package/templates/requirement.md +33 -0
  183. package/templates/summary.md +10 -0
  184. package/templates/technical-spec.md +22 -0
  185. package/templates/template-index.json +212 -0
  186. package/templates/test-plan.md +16 -0
@@ -0,0 +1,22 @@
1
+ # Functional Spec: {{title}}
2
+
3
+ ## Overview
4
+ {{overview}}
5
+
6
+ ## Actors
7
+ {{actors}}
8
+
9
+ ## Use cases
10
+ {{use_cases}}
11
+
12
+ ## Flows
13
+ {{flows}}
14
+
15
+ ## Business rules
16
+ {{rules}}
17
+
18
+ ## Errors and exceptions
19
+ {{errors}}
20
+
21
+ ## Acceptance criteria
22
+ {{acceptance_criteria}}
@@ -0,0 +1,20 @@
1
+ {
2
+ "gates": [
3
+ { "id": "objective_defined", "description": "Objective is defined" },
4
+ { "id": "scope_defined", "description": "Scope is defined" },
5
+ { "id": "acceptance_criteria_defined", "description": "Acceptance criteria defined" },
6
+ { "id": "nfrs_defined", "description": "NFRs defined" },
7
+ { "id": "test_plan_defined", "description": "Test plan defined" },
8
+ { "id": "quality_thresholds_defined", "description": "Quality thresholds defined" },
9
+ { "id": "repro_steps_defined", "description": "Repro steps captured" },
10
+ { "id": "comment_audit_complete", "description": "PR comment audit complete" },
11
+ { "id": "comment_severity_defined", "description": "PR comment severity classified" },
12
+ { "id": "rollout_defined", "description": "Rollout plan defined" },
13
+ { "id": "monitoring_defined", "description": "Monitoring plan defined" },
14
+ { "id": "accessibility_defined", "description": "Accessibility requirements defined" },
15
+ { "id": "source_quality_defined", "description": "Source reliability defined" },
16
+ { "id": "sensitivity_defined", "description": "Sensitivity analysis defined" },
17
+ { "id": "compliance_defined", "description": "Compliance constraints defined" },
18
+ { "id": "learning_format_defined", "description": "Learning output format defined" }
19
+ ]
20
+ }
@@ -0,0 +1,13 @@
1
+ # Implementation Plan: {{title}}
2
+
3
+ ## Milestones
4
+ {{milestones}}
5
+
6
+ ## Tasks
7
+ {{tasks}}
8
+
9
+ ## Dependencies
10
+ {{dependencies}}
11
+
12
+ ## Risks and mitigations
13
+ {{risks}}
@@ -0,0 +1,19 @@
1
+ # PR Comment Audit: {{title}}
2
+
3
+ ## PR link
4
+ {{pr_link}}
5
+
6
+ ## Comment inventory
7
+ {{comment_inventory}}
8
+
9
+ ## Valid comments
10
+ {{valid_comments}}
11
+
12
+ ## Debatable comments
13
+ {{debatable_comments}}
14
+
15
+ ## Recommended responses
16
+ {{recommended_responses}}
17
+
18
+ ## Follow-ups
19
+ {{follow_ups}}
@@ -0,0 +1,11 @@
1
+ # PR Comment Lifecycle
2
+
3
+ ## Status values
4
+ - open
5
+ - accepted
6
+ - challenged
7
+ - deferred
8
+ - resolved
9
+
10
+ ## Log entries
11
+ {{entries}}
@@ -0,0 +1,13 @@
1
+ # PR Comment Severity Rubric
2
+
3
+ ## Levels
4
+ - **Blocker**: Must fix before merge (correctness, security, data loss).
5
+ - **High**: Important improvement (performance, reliability).
6
+ - **Medium**: Quality improvement (readability, maintainability).
7
+ - **Low**: Minor polish (naming, formatting).
8
+
9
+ ## Evaluation questions
10
+ - Does it affect correctness or safety?
11
+ - Does it change public behavior or API?
12
+ - Does it create test gaps or regressions?
13
+ - Is it required by project standards?
@@ -0,0 +1,16 @@
1
+ # PR Dispute Resolution
2
+
3
+ ## Disputed comment
4
+ {{comment}}
5
+
6
+ ## Context
7
+ {{context}}
8
+
9
+ ## Evidence
10
+ {{evidence}}
11
+
12
+ ## Proposed response
13
+ {{response}}
14
+
15
+ ## Follow-up action
16
+ {{follow_up}}
@@ -0,0 +1,10 @@
1
+ # PR Metrics Summary
2
+
3
+ ## Metrics
4
+ - Total comments: {{total_comments}}
5
+ - Blockers: {{blockers}}
6
+ - Avg time to resolve: {{avg_time_to_resolve}}
7
+ - Tests run: {{tests_run}}
8
+
9
+ ## Notes
10
+ {{notes}}
@@ -0,0 +1,11 @@
1
+ # PR Response Generator
2
+
3
+ ## Input
4
+ - PR link: {{pr_link}}
5
+ - Comment ID: {{comment_id}}
6
+ - Severity: {{severity}}
7
+ - Decision: {{decision}} (accept/clarify/disagree/defer)
8
+ - Evidence: {{evidence}}
9
+
10
+ ## Suggested response
11
+ {{response_text}}
@@ -0,0 +1,13 @@
1
+ # PR Response Style Guide
2
+
3
+ ## Principles
4
+ - Be concise and respectful.
5
+ - Acknowledge valid feedback explicitly.
6
+ - Provide evidence for disagreements.
7
+ - Offer an alternative if rejecting a suggestion.
8
+
9
+ ## Response patterns
10
+ - **Accept**: "Good catch. I applied the change in <file>."
11
+ - **Clarify**: "I updated this to <behavior>, which matches <reason>."
12
+ - **Disagree**: "I reviewed this. The current approach is required because <evidence>."
13
+ - **Defer**: "I agree, but it is out of scope for this PR. I created a follow-up issue."
@@ -0,0 +1,22 @@
1
+ # PR Review Report: {{title}}
2
+
3
+ ## Overview
4
+ - PR link: {{pr_link}}
5
+ - Summary: {{summary}}
6
+
7
+ ## Comment status
8
+ - Total: {{total_comments}}
9
+ - Resolved: {{resolved_comments}}
10
+ - Open: {{open_comments}}
11
+
12
+ ## Key decisions
13
+ {{key_decisions}}
14
+
15
+ ## Changes made
16
+ {{changes_made}}
17
+
18
+ ## Test evidence
19
+ {{test_evidence}}
20
+
21
+ ## Remaining risks
22
+ {{remaining_risks}}
@@ -0,0 +1,16 @@
1
+ # PR Review Summary: {{title}}
2
+
3
+ ## PR link
4
+ {{pr_link}}
5
+
6
+ ## Comment audit
7
+ {{comment_audit}}
8
+
9
+ ## Proposed responses
10
+ {{responses}}
11
+
12
+ ## Planned fixes
13
+ {{planned_fixes}}
14
+
15
+ ## Tests
16
+ {{tests}}
@@ -0,0 +1,6 @@
1
+ # Progress Log
2
+
3
+ ## {{date}}
4
+ - Summary: {{summary}}
5
+ - Risks: {{risks}}
6
+ - Next steps: {{next_steps}}
@@ -0,0 +1,19 @@
1
+ # {{project_name}}
2
+
3
+ ## Overview
4
+ {{overview}}
5
+
6
+ ## How to run
7
+ {{how_to_run}}
8
+
9
+ ## Architecture
10
+ {{architecture_summary}}
11
+
12
+ ## Specs
13
+ - Requirements: {{requirements_link}}
14
+ - Functional spec: {{functional_spec_link}}
15
+ - Technical spec: {{technical_spec_link}}
16
+ - Architecture: {{architecture_link}}
17
+
18
+ ## Testing
19
+ {{testing_notes}}
@@ -0,0 +1,127 @@
1
+ {
2
+ "packs": [
3
+ {
4
+ "id": "discovery.core",
5
+ "questions": [
6
+ "What is the objective?",
7
+ "Who are the users and actors?",
8
+ "What is in scope and out of scope?",
9
+ "What are the acceptance criteria?",
10
+ "What NFRs apply (security, performance, availability)?",
11
+ "What are the critical paths and edge cases?",
12
+ "What coverage and complexity thresholds apply?"
13
+ ],
14
+ "gates": [
15
+ "objective_defined",
16
+ "scope_defined",
17
+ "acceptance_criteria_defined",
18
+ "nfrs_defined",
19
+ "test_plan_defined",
20
+ "quality_thresholds_defined"
21
+ ]
22
+ },
23
+ {
24
+ "id": "bug_fix.core",
25
+ "questions": [
26
+ "Expected vs actual behavior?",
27
+ "Steps to reproduce?",
28
+ "Environment and version?",
29
+ "Severity and impact?"
30
+ ],
31
+ "gates": [
32
+ "repro_steps_defined"
33
+ ]
34
+ },
35
+ {
36
+ "id": "pr_review.core",
37
+ "questions": [
38
+ "PR link and target branch?",
39
+ "Blocking comments?",
40
+ "Tests required?"
41
+ ],
42
+ "gates": [
43
+ "comment_audit_complete"
44
+ ]
45
+ },
46
+ {
47
+ "id": "review.severity",
48
+ "questions": [
49
+ "Which comments are blockers vs minor?",
50
+ "Which comments affect correctness or safety?"
51
+ ],
52
+ "gates": [
53
+ "comment_severity_defined"
54
+ ]
55
+ },
56
+ {
57
+ "id": "release.rollout",
58
+ "questions": [
59
+ "What is the rollout plan?",
60
+ "What metrics define success?"
61
+ ],
62
+ "gates": [
63
+ "rollout_defined"
64
+ ]
65
+ },
66
+ {
67
+ "id": "data.monitoring",
68
+ "questions": [
69
+ "How will model drift be monitored?",
70
+ "What alerts are required?"
71
+ ],
72
+ "gates": [
73
+ "monitoring_defined"
74
+ ]
75
+ },
76
+ {
77
+ "id": "design.accessibility",
78
+ "questions": [
79
+ "What accessibility standards apply?",
80
+ "What contrast or usability checks are required?"
81
+ ],
82
+ "gates": [
83
+ "accessibility_defined"
84
+ ]
85
+ },
86
+ {
87
+ "id": "humanities.sources",
88
+ "questions": [
89
+ "What sources are acceptable?",
90
+ "How will source reliability be assessed?"
91
+ ],
92
+ "gates": [
93
+ "source_quality_defined"
94
+ ]
95
+ },
96
+ {
97
+ "id": "business.sensitivity",
98
+ "questions": [
99
+ "What sensitivity analysis is required?",
100
+ "What assumptions are most risky?"
101
+ ],
102
+ "gates": [
103
+ "sensitivity_defined"
104
+ ]
105
+ },
106
+ {
107
+ "id": "legal.compliance",
108
+ "questions": [
109
+ "What compliance constraints apply?",
110
+ "What retention/audit rules are required?"
111
+ ],
112
+ "gates": [
113
+ "compliance_defined"
114
+ ]
115
+ },
116
+ {
117
+ "id": "learn.format",
118
+ "questions": [
119
+ "What output format do you want?",
120
+ "What depth is required?"
121
+ ],
122
+ "gates": [
123
+ "learning_format_defined"
124
+ ]
125
+ }
126
+ ]
127
+ }
@@ -0,0 +1,17 @@
1
+ rules:
2
+ - single-responsibility
3
+ - explicit-error-handling
4
+ - lint-and-format-required
5
+ - tests-for-critical-flows
6
+ thresholds:
7
+ coverage: "80%"
8
+ complexity: "10"
9
+ profiles:
10
+ javascript:
11
+ - eslint
12
+ - prettier
13
+ - vitest
14
+ python:
15
+ - ruff
16
+ - black
17
+ - pytest
@@ -0,0 +1,33 @@
1
+ # Requirement: {{title}}
2
+
3
+ ## ID
4
+ {{id}}
5
+
6
+ ## Objective
7
+ {{objective}}
8
+
9
+ ## Actors
10
+ {{actors}}
11
+
12
+ ## Scope (in)
13
+ {{scope_in}}
14
+
15
+ ## Scope (out)
16
+ {{scope_out}}
17
+
18
+ ## Acceptance criteria
19
+ {{acceptance_criteria}}
20
+
21
+ ## Non-functional requirements
22
+ - Security: {{nfr_security}}
23
+ - Performance: {{nfr_performance}}
24
+ - Availability: {{nfr_availability}}
25
+
26
+ ## Constraints
27
+ {{constraints}}
28
+
29
+ ## Risks
30
+ {{risks}}
31
+
32
+ ## Links
33
+ {{links}}
@@ -0,0 +1,10 @@
1
+ # Summary
2
+
3
+ ## Objective
4
+ {{objective}}
5
+
6
+ ## Key decisions
7
+ {{decisions}}
8
+
9
+ ## Open questions
10
+ {{open_questions}}
@@ -0,0 +1,22 @@
1
+ # Technical Spec: {{title}}
2
+
3
+ ## Stack
4
+ {{stack}}
5
+
6
+ ## Interfaces and contracts
7
+ {{interfaces}}
8
+
9
+ ## Data model
10
+ {{data_model}}
11
+
12
+ ## Security
13
+ {{security}}
14
+
15
+ ## Errors
16
+ {{errors}}
17
+
18
+ ## Performance
19
+ {{performance}}
20
+
21
+ ## Observability
22
+ {{observability}}
@@ -0,0 +1,212 @@
1
+ {
2
+ "templates": [
3
+ {
4
+ "name": "requirement",
5
+ "placeholders": [
6
+ "title",
7
+ "id",
8
+ "objective",
9
+ "actors",
10
+ "scope_in",
11
+ "scope_out",
12
+ "acceptance_criteria",
13
+ "nfr_security",
14
+ "nfr_performance",
15
+ "nfr_availability",
16
+ "constraints",
17
+ "risks",
18
+ "links"
19
+ ]
20
+ },
21
+ {
22
+ "name": "functional-spec",
23
+ "placeholders": [
24
+ "title",
25
+ "overview",
26
+ "actors",
27
+ "use_cases",
28
+ "flows",
29
+ "rules",
30
+ "errors",
31
+ "acceptance_criteria"
32
+ ]
33
+ },
34
+ {
35
+ "name": "technical-spec",
36
+ "placeholders": [
37
+ "title",
38
+ "stack",
39
+ "interfaces",
40
+ "data_model",
41
+ "security",
42
+ "errors",
43
+ "performance",
44
+ "observability"
45
+ ]
46
+ },
47
+ {
48
+ "name": "architecture",
49
+ "placeholders": [
50
+ "title",
51
+ "context",
52
+ "containers",
53
+ "components",
54
+ "deployment",
55
+ "diagrams"
56
+ ]
57
+ },
58
+ {
59
+ "name": "test-plan",
60
+ "placeholders": [
61
+ "title",
62
+ "critical_paths",
63
+ "edge_cases",
64
+ "acceptance_tests",
65
+ "regressions",
66
+ "coverage_target"
67
+ ]
68
+ },
69
+ {
70
+ "name": "quality",
71
+ "placeholders": [
72
+ "rules",
73
+ "thresholds",
74
+ "profiles"
75
+ ]
76
+ },
77
+ {
78
+ "name": "decision-log",
79
+ "placeholders": [
80
+ "id",
81
+ "title",
82
+ "status",
83
+ "context",
84
+ "decision",
85
+ "consequences",
86
+ "date"
87
+ ]
88
+ },
89
+ {
90
+ "name": "progress-log",
91
+ "placeholders": [
92
+ "date",
93
+ "summary",
94
+ "risks",
95
+ "next_steps"
96
+ ]
97
+ },
98
+ {
99
+ "name": "project-readme",
100
+ "placeholders": [
101
+ "project_name",
102
+ "overview",
103
+ "how_to_run",
104
+ "architecture_summary",
105
+ "requirements_link",
106
+ "functional_spec_link",
107
+ "technical_spec_link",
108
+ "architecture_link",
109
+ "testing_notes"
110
+ ]
111
+ },
112
+ {
113
+ "name": "summary",
114
+ "placeholders": [
115
+ "objective",
116
+ "decisions",
117
+ "open_questions"
118
+ ]
119
+ },
120
+ {
121
+ "name": "changelog",
122
+ "placeholders": [
123
+ "date"
124
+ ]
125
+ },
126
+ {
127
+ "name": "implementation-plan",
128
+ "placeholders": [
129
+ "title",
130
+ "milestones",
131
+ "tasks",
132
+ "dependencies",
133
+ "risks"
134
+ ]
135
+ },
136
+ {
137
+ "name": "pr-comment-audit",
138
+ "placeholders": [
139
+ "title",
140
+ "pr_link",
141
+ "comment_inventory",
142
+ "valid_comments",
143
+ "debatable_comments",
144
+ "recommended_responses",
145
+ "follow_ups"
146
+ ]
147
+ },
148
+ {
149
+ "name": "pr-review-summary",
150
+ "placeholders": [
151
+ "title",
152
+ "pr_link",
153
+ "comment_audit",
154
+ "responses",
155
+ "planned_fixes",
156
+ "tests"
157
+ ]
158
+ },
159
+ {
160
+ "name": "pr-review-report",
161
+ "placeholders": [
162
+ "title",
163
+ "pr_link",
164
+ "summary",
165
+ "total_comments",
166
+ "resolved_comments",
167
+ "open_comments",
168
+ "key_decisions",
169
+ "changes_made",
170
+ "test_evidence",
171
+ "remaining_risks"
172
+ ]
173
+ },
174
+ {
175
+ "name": "pr-metrics",
176
+ "placeholders": [
177
+ "total_comments",
178
+ "blockers",
179
+ "avg_time_to_resolve",
180
+ "tests_run",
181
+ "notes"
182
+ ]
183
+ },
184
+ {
185
+ "name": "pr-comment-lifecycle",
186
+ "placeholders": [
187
+ "entries"
188
+ ]
189
+ },
190
+ {
191
+ "name": "pr-response-generator",
192
+ "placeholders": [
193
+ "pr_link",
194
+ "comment_id",
195
+ "severity",
196
+ "decision",
197
+ "evidence",
198
+ "response_text"
199
+ ]
200
+ },
201
+ {
202
+ "name": "pr-dispute-resolution",
203
+ "placeholders": [
204
+ "comment",
205
+ "context",
206
+ "evidence",
207
+ "response",
208
+ "follow_up"
209
+ ]
210
+ }
211
+ ]
212
+ }
@@ -0,0 +1,16 @@
1
+ # Test Plan: {{title}}
2
+
3
+ ## Critical paths
4
+ {{critical_paths}}
5
+
6
+ ## Edge cases
7
+ {{edge_cases}}
8
+
9
+ ## Acceptance tests
10
+ {{acceptance_tests}}
11
+
12
+ ## Regression tests
13
+ {{regressions}}
14
+
15
+ ## Coverage target
16
+ {{coverage_target}}