guardian-framework 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 (216) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +463 -0
  3. package/dist/cli.js +12958 -0
  4. package/dist/exports.js +12765 -0
  5. package/package.json +61 -0
  6. package/templates/languages/go-patterns.md +411 -0
  7. package/templates/languages/java-patterns.md +545 -0
  8. package/templates/languages/python-patterns.md +312 -0
  9. package/templates/languages/rust-patterns.md +232 -0
  10. package/templates/languages/typescript-patterns.md +313 -0
  11. package/templates/pi/INDEX.md +437 -0
  12. package/templates/pi/agent/AGENTS.md +166 -0
  13. package/templates/pi/agents/architecture-coordinator.md +40 -0
  14. package/templates/pi/agents/architecture-validator.md +36 -0
  15. package/templates/pi/agents/bootstrap-implementer.md +37 -0
  16. package/templates/pi/agents/issue-factory.md +31 -0
  17. package/templates/pi/agents/operations-validator.md +32 -0
  18. package/templates/pi/agents/security-validator.md +33 -0
  19. package/templates/pi/architecture/CHANGELOG.md +78 -0
  20. package/templates/pi/architecture/decisions/ADR-template.md +76 -0
  21. package/templates/pi/architecture/diagrams/system-overview.md +159 -0
  22. package/templates/pi/architecture/modules/module-template.md +152 -0
  23. package/templates/pi/context/checklists.md +91 -0
  24. package/templates/pi/context/domain-workflow.md +180 -0
  25. package/templates/pi/context/output-formats.md +135 -0
  26. package/templates/pi/context/patterns-base.md +47 -0
  27. package/templates/pi/context/patterns.md +38 -0
  28. package/templates/pi/context/project.md +88 -0
  29. package/templates/pi/domain/exploration.md +93 -0
  30. package/templates/pi/domain/ubiquitous-language.md +24 -0
  31. package/templates/pi/extensions/architect-lib/generators.ts +528 -0
  32. package/templates/pi/extensions/architect-lib/helpers.ts +344 -0
  33. package/templates/pi/extensions/architect-lib/types.ts +117 -0
  34. package/templates/pi/extensions/architect.ts +1425 -0
  35. package/templates/pi/extensions/ask-user-question.ts +579 -0
  36. package/templates/pi/extensions/bash-guard.ts +556 -0
  37. package/templates/pi/extensions/config-reload.ts +115 -0
  38. package/templates/pi/extensions/coordinator.ts +304 -0
  39. package/templates/pi/extensions/curator.ts +543 -0
  40. package/templates/pi/extensions/domain-explorer.ts +990 -0
  41. package/templates/pi/extensions/filechanges.ts +656 -0
  42. package/templates/pi/extensions/goal-loop.ts +717 -0
  43. package/templates/pi/extensions/hooks.ts +452 -0
  44. package/templates/pi/extensions/kanban.ts +547 -0
  45. package/templates/pi/extensions/pipeline.ts +1246 -0
  46. package/templates/pi/extensions/plan-mode.ts +209 -0
  47. package/templates/pi/extensions/project-scaffolder.ts +284 -0
  48. package/templates/pi/extensions/read-only-mode.ts +192 -0
  49. package/templates/pi/extensions/redaction.ts +128 -0
  50. package/templates/pi/extensions/session-persistence.ts +174 -0
  51. package/templates/pi/extensions/slash-commands.ts +229 -0
  52. package/templates/pi/extensions/snippets.ts +201 -0
  53. package/templates/pi/extensions/validation-runner.ts +100 -0
  54. package/templates/pi/github/agents/architecture-coordinator.agent.md +27 -0
  55. package/templates/pi/github/agents/architecture-validator.agent.md +20 -0
  56. package/templates/pi/github/agents/bootstrap-implementer.agent.md +20 -0
  57. package/templates/pi/github/agents/epic-planner.agent.md +70 -0
  58. package/templates/pi/github/agents/issue-factory.agent.md +20 -0
  59. package/templates/pi/github/agents/operations-validator.agent.md +20 -0
  60. package/templates/pi/github/agents/security-validator.agent.md +20 -0
  61. package/templates/pi/github/copilot/settings.json +16 -0
  62. package/templates/pi/github/copilot-instructions.md +155 -0
  63. package/templates/pi/github/instructions/architecture.instructions.md +71 -0
  64. package/templates/pi/github/instructions/validation.instructions.md +69 -0
  65. package/templates/pi/github/workflows/01-planning-workflow.md +75 -0
  66. package/templates/pi/github/workflows/02-issue-generation-workflow.md +69 -0
  67. package/templates/pi/github/workflows/03-implementation-workflow.md +80 -0
  68. package/templates/pi/github/workflows/04-validation-workflow.md +68 -0
  69. package/templates/pi/preflight_report.json +99 -0
  70. package/templates/pi/prompts/blueprint-update.md +262 -0
  71. package/templates/pi/prompts/blueprint-validate.md +218 -0
  72. package/templates/pi/prompts/bug-fix.md +50 -0
  73. package/templates/pi/prompts/ci-blueprint.md +131 -0
  74. package/templates/pi/prompts/context-refresh.md +258 -0
  75. package/templates/pi/prompts/epic-plan.md +356 -0
  76. package/templates/pi/prompts/epic-template.md +186 -0
  77. package/templates/pi/prompts/feature-development.md +131 -0
  78. package/templates/pi/prompts/git-issues.md +243 -0
  79. package/templates/pi/prompts/hotfix.md +71 -0
  80. package/templates/pi/prompts/issue-closeout.md +342 -0
  81. package/templates/pi/prompts/issue-draft.md +218 -0
  82. package/templates/pi/prompts/issue-implementation-series.md +173 -0
  83. package/templates/pi/prompts/issue-merge.md +372 -0
  84. package/templates/pi/prompts/issue-template-set.md +392 -0
  85. package/templates/pi/prompts/issue-template.md +207 -0
  86. package/templates/pi/prompts/pattern-extract.md +269 -0
  87. package/templates/pi/prompts/plan-to-issues.md +430 -0
  88. package/templates/pi/prompts/refactoring.md +82 -0
  89. package/templates/pi/prompts/scope-analyzer.md +254 -0
  90. package/templates/pi/prompts/sync-check.md +230 -0
  91. package/templates/pi/scripts/categorize-issues.sh +171 -0
  92. package/templates/pi/scripts/ci/check_architecture_conformance.sh +748 -0
  93. package/templates/pi/scripts/ci/check_planning_packet.py +228 -0
  94. package/templates/pi/scripts/ci/run_hardening_stages.sh +264 -0
  95. package/templates/pi/scripts/ci/run_preflight.sh +649 -0
  96. package/templates/pi/scripts/ci/run_stage.sh +193 -0
  97. package/templates/pi/scripts/ci/stage_docs_policy.sh +82 -0
  98. package/templates/pi/scripts/ci/stage_integration.sh +3 -0
  99. package/templates/pi/scripts/ci/stage_lint.sh +130 -0
  100. package/templates/pi/scripts/ci/stage_migration_verify.sh +3 -0
  101. package/templates/pi/scripts/ci/stage_package_build.sh +3 -0
  102. package/templates/pi/scripts/ci/stage_release_readiness.sh +3 -0
  103. package/templates/pi/scripts/ci/stage_remaining.sh +242 -0
  104. package/templates/pi/scripts/ci/stage_security.sh +3 -0
  105. package/templates/pi/scripts/ci/stage_static_analysis.sh +114 -0
  106. package/templates/pi/scripts/ci/stage_unit.sh +119 -0
  107. package/templates/pi/scripts/ci/validate_agent_output.py +181 -0
  108. package/templates/pi/scripts/ci/validate_agent_output.sh +243 -0
  109. package/templates/pi/scripts/create-feature-branch.sh +136 -0
  110. package/templates/pi/scripts/create-mr.sh +117 -0
  111. package/templates/pi/scripts/fetch-issues.sh +131 -0
  112. package/templates/pi/scripts/generate-architecture.sh +161 -0
  113. package/templates/pi/scripts/git/close-epic.sh +69 -0
  114. package/templates/pi/scripts/git/close-issue.sh +35 -0
  115. package/templates/pi/scripts/git/create-tracking-issue.sh +174 -0
  116. package/templates/pi/scripts/git/link-issue-to-epic.sh +51 -0
  117. package/templates/pi/scripts/git/update-tracking-issue.sh +66 -0
  118. package/templates/pi/scripts/languages/go/validate-architecture.sh +139 -0
  119. package/templates/pi/scripts/languages/go/validate-canonical.sh +129 -0
  120. package/templates/pi/scripts/languages/go/validate-ci.sh +132 -0
  121. package/templates/pi/scripts/languages/go/validate-integration.sh +156 -0
  122. package/templates/pi/scripts/languages/go/validate-operations.sh +146 -0
  123. package/templates/pi/scripts/languages/go/validate-security.sh +135 -0
  124. package/templates/pi/scripts/languages/go/validate-tests.sh +125 -0
  125. package/templates/pi/scripts/languages/java/validate-annotations.sh +185 -0
  126. package/templates/pi/scripts/languages/java/validate-architecture.sh +159 -0
  127. package/templates/pi/scripts/languages/java/validate-canonical.sh +114 -0
  128. package/templates/pi/scripts/languages/java/validate-ci.sh +269 -0
  129. package/templates/pi/scripts/languages/java/validate-integration.sh +149 -0
  130. package/templates/pi/scripts/languages/java/validate-operations.sh +142 -0
  131. package/templates/pi/scripts/languages/java/validate-security.sh +174 -0
  132. package/templates/pi/scripts/languages/java/validate-spring-architecture.sh +227 -0
  133. package/templates/pi/scripts/languages/java/validate-tests.sh +159 -0
  134. package/templates/pi/scripts/languages/python/validate-architecture.sh +99 -0
  135. package/templates/pi/scripts/languages/python/validate-canonical.sh +124 -0
  136. package/templates/pi/scripts/languages/python/validate-ci.sh +130 -0
  137. package/templates/pi/scripts/languages/python/validate-integration.sh +119 -0
  138. package/templates/pi/scripts/languages/python/validate-operations.sh +107 -0
  139. package/templates/pi/scripts/languages/python/validate-security.sh +68 -0
  140. package/templates/pi/scripts/languages/python/validate-tests.sh +102 -0
  141. package/templates/pi/scripts/languages/rust/validate-architecture.sh +188 -0
  142. package/templates/pi/scripts/languages/rust/validate-canonical.sh +146 -0
  143. package/templates/pi/scripts/languages/rust/validate-ci.sh +147 -0
  144. package/templates/pi/scripts/languages/rust/validate-integration.sh +149 -0
  145. package/templates/pi/scripts/languages/rust/validate-operations.sh +154 -0
  146. package/templates/pi/scripts/languages/rust/validate-security.sh +153 -0
  147. package/templates/pi/scripts/languages/rust/validate-tests.sh +150 -0
  148. package/templates/pi/scripts/languages/typescript/validate-architecture.sh +157 -0
  149. package/templates/pi/scripts/languages/typescript/validate-canonical.sh +135 -0
  150. package/templates/pi/scripts/languages/typescript/validate-ci.sh +244 -0
  151. package/templates/pi/scripts/languages/typescript/validate-integration.sh +166 -0
  152. package/templates/pi/scripts/languages/typescript/validate-operations.sh +162 -0
  153. package/templates/pi/scripts/languages/typescript/validate-security.sh +169 -0
  154. package/templates/pi/scripts/languages/typescript/validate-tests.sh +158 -0
  155. package/templates/pi/scripts/merge-mr.sh +95 -0
  156. package/templates/pi/scripts/mr-validation.sh +228 -0
  157. package/templates/pi/scripts/validate-architecture-readiness.sh +153 -0
  158. package/templates/pi/scripts/validate-architecture.sh +22 -0
  159. package/templates/pi/scripts/validate-canonical.sh +22 -0
  160. package/templates/pi/scripts/validate-ci.sh +37 -0
  161. package/templates/pi/scripts/validate-integration.sh +22 -0
  162. package/templates/pi/scripts/validate-operations.sh +22 -0
  163. package/templates/pi/scripts/validate-security.sh +22 -0
  164. package/templates/pi/scripts/validate-tests.sh +22 -0
  165. package/templates/pi/scripts/validate-ubiquitous-language.sh +291 -0
  166. package/templates/pi/scripts/validation-cache.sh +139 -0
  167. package/templates/pi/skills/agents/architecture-coordinator.md +178 -0
  168. package/templates/pi/skills/agents/architecture-generator.md +79 -0
  169. package/templates/pi/skills/agents/architecture-validator.md +74 -0
  170. package/templates/pi/skills/agents/ci-mr-validator.md +46 -0
  171. package/templates/pi/skills/agents/code-developer.md +76 -0
  172. package/templates/pi/skills/agents/commit.md +46 -0
  173. package/templates/pi/skills/agents/curator.md +71 -0
  174. package/templates/pi/skills/agents/debug.md +59 -0
  175. package/templates/pi/skills/agents/documentation-maintainer.md +36 -0
  176. package/templates/pi/skills/agents/goal-loop.md +125 -0
  177. package/templates/pi/skills/agents/hooks.md +122 -0
  178. package/templates/pi/skills/agents/integration-validator.md +35 -0
  179. package/templates/pi/skills/agents/issue-creator.md +75 -0
  180. package/templates/pi/skills/agents/issue-factory.md +143 -0
  181. package/templates/pi/skills/agents/kanban.md +85 -0
  182. package/templates/pi/skills/agents/land.md +59 -0
  183. package/templates/pi/skills/agents/operations-validator.md +43 -0
  184. package/templates/pi/skills/agents/pipeline.md +113 -0
  185. package/templates/pi/skills/agents/plan-mode.md +77 -0
  186. package/templates/pi/skills/agents/pull.md +40 -0
  187. package/templates/pi/skills/agents/push.md +41 -0
  188. package/templates/pi/skills/agents/security-validator.md +85 -0
  189. package/templates/pi/skills/agents/session-persistence.md +119 -0
  190. package/templates/pi/skills/agents/slash-commands.md +117 -0
  191. package/templates/pi/skills/agents/snippets.md +99 -0
  192. package/templates/pi/skills/agents/subagent-registry.md +78 -0
  193. package/templates/pi/skills/agents/test-validator.md +42 -0
  194. package/templates/pi/skills/validators/architecture-validator.md +43 -0
  195. package/templates/pi/skills/validators/ci-validator.md +27 -0
  196. package/templates/pi/skills/validators/context-compaction.md +73 -0
  197. package/templates/pi/skills/validators/integration-validator.md +38 -0
  198. package/templates/pi/skills/validators/model-registry.md +96 -0
  199. package/templates/pi/skills/validators/operations-validator.md +34 -0
  200. package/templates/pi/skills/validators/security-guards.md +72 -0
  201. package/templates/pi/skills/validators/security-validator.md +41 -0
  202. package/templates/pi/skills/validators/system-prompt-tiers.md +69 -0
  203. package/templates/pi/skills/validators/test-validator.md +33 -0
  204. package/templates/pi/types.ts +62 -0
  205. package/templates/pi/validators/README.md +93 -0
  206. package/templates/pi/validators/default.toml +209 -0
  207. package/templates/pi/validators/spring.toml +142 -0
  208. package/templates/pi/workpad.md +53 -0
  209. package/templates/project/java/Dockerfile +14 -0
  210. package/templates/project/java/README.md +40 -0
  211. package/templates/project/java/pom.xml +132 -0
  212. package/templates/project/typescript/Dockerfile +15 -0
  213. package/templates/project/typescript/README.md +29 -0
  214. package/templates/project/typescript/package.json +23 -0
  215. package/templates/project/typescript/tsconfig.json +21 -0
  216. package/templates/workflow.md +123 -0
@@ -0,0 +1,171 @@
1
+ #!/usr/bin/env bash
2
+ # ============================================================================
3
+ # categorize-issues.sh — Categorize Issues into Implementation Groups
4
+ #
5
+ # Run as: bash .pi/scripts/categorize-issues.sh
6
+ # Input: .claude/plans/issues-fetched.json
7
+ # Output: .claude/plans/issue-groups.md
8
+ # ============================================================================
9
+ set -euo pipefail
10
+
11
+ INPUT_FILE=".claude/plans/issues-fetched.json"
12
+ OUTPUT_FILE=".claude/plans/issue-groups.md"
13
+
14
+ RED='\033[0;31m'
15
+ GREEN='\033[0;32m'
16
+ YELLOW='\033[1;33m'
17
+ BLUE='\033[0;34m'
18
+ NC='\033[0m'
19
+
20
+ echo "============================================"
21
+ echo " Categorize Issues into Groups"
22
+ echo "============================================"
23
+ echo ""
24
+
25
+ # ---------------------------------------------------------------------------
26
+ # Check Input
27
+ # ---------------------------------------------------------------------------
28
+ if [ ! -f "$INPUT_FILE" ]; then
29
+ echo -e "${RED}❌ No issues file found${NC}"
30
+ echo " Run: bash .pi/scripts/fetch-issues.sh first"
31
+ exit 1
32
+ fi
33
+
34
+ COUNT=$(jq 'length' "$INPUT_FILE")
35
+ echo "Processing $COUNT issues..."
36
+
37
+ # ---------------------------------------------------------------------------
38
+ # Generate Groups
39
+ # ---------------------------------------------------------------------------
40
+ cat > "$OUTPUT_FILE" << 'EOF'
41
+ # Issue Implementation Groups
42
+
43
+ **Generated:** $(date)
44
+ **Total Issues:** $COUNT
45
+
46
+ ---
47
+
48
+ ## Grouping Strategy
49
+
50
+ Issues are grouped by:
51
+ 1. **Component** — Same module/files affected
52
+ 2. **Priority** — Critical > High > Medium > Low
53
+ 3. **Dependency** — Blocking relationships
54
+
55
+ ---
56
+
57
+ EOF
58
+
59
+ # ---------------------------------------------------------------------------
60
+ # Priority Groups
61
+ # ---------------------------------------------------------------------------
62
+ echo ""
63
+ echo "--- Priority Groups ---"
64
+
65
+ # Critical issues
66
+ CRITICAL_ISSUES=$(jq -c '[.[] | select(.labels[]?.name == "critical" or .labels[]?.name == "priority/critical")] | sort_by(.number)' "$INPUT_FILE")
67
+ CRITICAL_COUNT=$(echo "$CRITICAL_ISSUES" | jq 'length')
68
+
69
+ if [ "$CRITICAL_COUNT" -gt 0 ]; then
70
+ echo -e "${RED}Critical: $CRITICAL_COUNT issues${NC}"
71
+ cat >> "$OUTPUT_FILE" << EOF
72
+
73
+ ### Group: Critical Priority
74
+
75
+ **Branch:** \`priority/critical-$(date +%Y%m%d)\`
76
+ **Issues:** $CRITICAL_COUNT
77
+
78
+ EOF
79
+ echo "$CRITICAL_ISSUES" | jq -r '.[] | "- #\(.number): \(.title)"' >> "$OUTPUT_FILE"
80
+ echo "" >> "$OUTPUT_FILE"
81
+ fi
82
+
83
+ # High priority
84
+ HIGH_ISSUES=$(jq -c '[.[] | select(.labels[]?.name == "high" or .labels[]?.name == "priority/high")]' "$INPUT_FILE")
85
+ HIGH_COUNT=$(echo "$HIGH_ISSUES" | jq 'length')
86
+
87
+ if [ "$HIGH_COUNT" -gt 0 ]; then
88
+ echo -e "${YELLOW}High: $HIGH_COUNT issues${NC}"
89
+ cat >> "$OUTPUT_FILE" << EOF
90
+
91
+ ### Group: High Priority
92
+
93
+ **Branch:** \`priority/high-$(date +%Y%m%d)\`
94
+ **Issues:** $HIGH_COUNT
95
+
96
+ EOF
97
+ echo "$HIGH_ISSUES" | jq -r '.[] | "- #\(.number): \(.title)"' >> "$OUTPUT_FILE"
98
+ echo "" >> "$OUTPUT_FILE"
99
+ fi
100
+
101
+ # ---------------------------------------------------------------------------
102
+ # Component Groups (by label patterns)
103
+ # ---------------------------------------------------------------------------
104
+ echo ""
105
+ echo "--- Component Groups ---"
106
+
107
+ # Extract unique component labels
108
+ COMPONENTS=$(jq -r '[.[] | .labels[]?.name | select(. | startswith("component/") or startswith("area/") or startswith("module/"))] | unique | .[]' "$INPUT_FILE" 2>/dev/null || true)
109
+
110
+ for COMP in $COMPONENTS; do
111
+ COMP_NAME=$(echo "$COMP" | sed 's/component\|area\|module\///')
112
+ COMP_ISSUES=$(jq -c '[.[] | select(.labels[]?.name == "'$COMP'")] | sort_by(.number)' "$INPUT_FILE")
113
+ COMP_COUNT=$(echo "$COMP_ISSUES" | jq 'length')
114
+
115
+ if [ "$COMP_COUNT" -ge 2 ]; then
116
+ echo -e "${BLUE}Component '$COMP_NAME': $COMP_COUNT issues${NC}"
117
+ cat >> "$OUTPUT_FILE" << EOF
118
+
119
+ ### Group: $COMP_NAME
120
+
121
+ **Branch:** \`feature/$COMP_NAME-issues\`
122
+ **Component:** $COMP
123
+ **Issues:** $COMP_COUNT
124
+
125
+ EOF
126
+ echo "$COMP_ISSUES" | jq -r '.[] | "- #\(.number): \(.title)"' >> "$OUTPUT_FILE"
127
+ echo "" >> "$OUTPUT_FILE"
128
+ fi
129
+ done
130
+
131
+ # ---------------------------------------------------------------------------
132
+ # Individual Issues (no grouping)
133
+ # ---------------------------------------------------------------------------
134
+ echo ""
135
+ echo "--- Individual Issues ---"
136
+
137
+ SINGLE_ISSUES=$(jq -c '[.[] | select(
138
+ (.labels | length == 0) or
139
+ (.labels[]?.name != "critical" and .labels[]?.name != "high" and
140
+ (.labels[]?.name | startswith("component/") | not) and
141
+ (.labels[]?.name | startswith("area/") | not) and
142
+ (.labels[]?.name | startswith("module/") | not))
143
+ )]' "$INPUT_FILE" 2>/dev/null || jq -c '[.[]]' "$INPUT_FILE")
144
+ SINGLE_COUNT=$(echo "$SINGLE_ISSUES" | jq 'length')
145
+
146
+ if [ "$SINGLE_COUNT" -gt 0 ]; then
147
+ echo -e "${NC}Individual: $SINGLE_COUNT issues${NC}"
148
+ cat >> "$OUTPUT_FILE" << EOF
149
+
150
+ ### Individual Issues (No Grouping)
151
+
152
+ Each requires separate branch: \`issue/{number}\`
153
+
154
+ EOF
155
+ echo "$SINGLE_ISSUES" | jq -r '.[] | "- #\(.number): \(.title) → branch: \`issue/\(.number)\`"' >> "$OUTPUT_FILE"
156
+ fi
157
+
158
+ # ---------------------------------------------------------------------------
159
+ # Summary
160
+ # ---------------------------------------------------------------------------
161
+ echo ""
162
+ echo "============================================"
163
+ echo " Summary"
164
+ echo "============================================"
165
+ echo -e " Critical groups: ${RED}${CRITICAL_COUNT}${NC}"
166
+ echo -e " High groups: ${YELLOW}${HIGH_COUNT}${NC}"
167
+ echo -e " Individual: ${NC}${SINGLE_COUNT}${NC}"
168
+ echo ""
169
+ echo "Output: $OUTPUT_FILE"
170
+
171
+ exit 0