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.
- package/LICENSE +21 -0
- package/README.md +463 -0
- package/dist/cli.js +12958 -0
- package/dist/exports.js +12765 -0
- package/package.json +61 -0
- package/templates/languages/go-patterns.md +411 -0
- package/templates/languages/java-patterns.md +545 -0
- package/templates/languages/python-patterns.md +312 -0
- package/templates/languages/rust-patterns.md +232 -0
- package/templates/languages/typescript-patterns.md +313 -0
- package/templates/pi/INDEX.md +437 -0
- package/templates/pi/agent/AGENTS.md +166 -0
- package/templates/pi/agents/architecture-coordinator.md +40 -0
- package/templates/pi/agents/architecture-validator.md +36 -0
- package/templates/pi/agents/bootstrap-implementer.md +37 -0
- package/templates/pi/agents/issue-factory.md +31 -0
- package/templates/pi/agents/operations-validator.md +32 -0
- package/templates/pi/agents/security-validator.md +33 -0
- package/templates/pi/architecture/CHANGELOG.md +78 -0
- package/templates/pi/architecture/decisions/ADR-template.md +76 -0
- package/templates/pi/architecture/diagrams/system-overview.md +159 -0
- package/templates/pi/architecture/modules/module-template.md +152 -0
- package/templates/pi/context/checklists.md +91 -0
- package/templates/pi/context/domain-workflow.md +180 -0
- package/templates/pi/context/output-formats.md +135 -0
- package/templates/pi/context/patterns-base.md +47 -0
- package/templates/pi/context/patterns.md +38 -0
- package/templates/pi/context/project.md +88 -0
- package/templates/pi/domain/exploration.md +93 -0
- package/templates/pi/domain/ubiquitous-language.md +24 -0
- package/templates/pi/extensions/architect-lib/generators.ts +528 -0
- package/templates/pi/extensions/architect-lib/helpers.ts +344 -0
- package/templates/pi/extensions/architect-lib/types.ts +117 -0
- package/templates/pi/extensions/architect.ts +1425 -0
- package/templates/pi/extensions/ask-user-question.ts +579 -0
- package/templates/pi/extensions/bash-guard.ts +556 -0
- package/templates/pi/extensions/config-reload.ts +115 -0
- package/templates/pi/extensions/coordinator.ts +304 -0
- package/templates/pi/extensions/curator.ts +543 -0
- package/templates/pi/extensions/domain-explorer.ts +990 -0
- package/templates/pi/extensions/filechanges.ts +656 -0
- package/templates/pi/extensions/goal-loop.ts +717 -0
- package/templates/pi/extensions/hooks.ts +452 -0
- package/templates/pi/extensions/kanban.ts +547 -0
- package/templates/pi/extensions/pipeline.ts +1246 -0
- package/templates/pi/extensions/plan-mode.ts +209 -0
- package/templates/pi/extensions/project-scaffolder.ts +284 -0
- package/templates/pi/extensions/read-only-mode.ts +192 -0
- package/templates/pi/extensions/redaction.ts +128 -0
- package/templates/pi/extensions/session-persistence.ts +174 -0
- package/templates/pi/extensions/slash-commands.ts +229 -0
- package/templates/pi/extensions/snippets.ts +201 -0
- package/templates/pi/extensions/validation-runner.ts +100 -0
- package/templates/pi/github/agents/architecture-coordinator.agent.md +27 -0
- package/templates/pi/github/agents/architecture-validator.agent.md +20 -0
- package/templates/pi/github/agents/bootstrap-implementer.agent.md +20 -0
- package/templates/pi/github/agents/epic-planner.agent.md +70 -0
- package/templates/pi/github/agents/issue-factory.agent.md +20 -0
- package/templates/pi/github/agents/operations-validator.agent.md +20 -0
- package/templates/pi/github/agents/security-validator.agent.md +20 -0
- package/templates/pi/github/copilot/settings.json +16 -0
- package/templates/pi/github/copilot-instructions.md +155 -0
- package/templates/pi/github/instructions/architecture.instructions.md +71 -0
- package/templates/pi/github/instructions/validation.instructions.md +69 -0
- package/templates/pi/github/workflows/01-planning-workflow.md +75 -0
- package/templates/pi/github/workflows/02-issue-generation-workflow.md +69 -0
- package/templates/pi/github/workflows/03-implementation-workflow.md +80 -0
- package/templates/pi/github/workflows/04-validation-workflow.md +68 -0
- package/templates/pi/preflight_report.json +99 -0
- package/templates/pi/prompts/blueprint-update.md +262 -0
- package/templates/pi/prompts/blueprint-validate.md +218 -0
- package/templates/pi/prompts/bug-fix.md +50 -0
- package/templates/pi/prompts/ci-blueprint.md +131 -0
- package/templates/pi/prompts/context-refresh.md +258 -0
- package/templates/pi/prompts/epic-plan.md +356 -0
- package/templates/pi/prompts/epic-template.md +186 -0
- package/templates/pi/prompts/feature-development.md +131 -0
- package/templates/pi/prompts/git-issues.md +243 -0
- package/templates/pi/prompts/hotfix.md +71 -0
- package/templates/pi/prompts/issue-closeout.md +342 -0
- package/templates/pi/prompts/issue-draft.md +218 -0
- package/templates/pi/prompts/issue-implementation-series.md +173 -0
- package/templates/pi/prompts/issue-merge.md +372 -0
- package/templates/pi/prompts/issue-template-set.md +392 -0
- package/templates/pi/prompts/issue-template.md +207 -0
- package/templates/pi/prompts/pattern-extract.md +269 -0
- package/templates/pi/prompts/plan-to-issues.md +430 -0
- package/templates/pi/prompts/refactoring.md +82 -0
- package/templates/pi/prompts/scope-analyzer.md +254 -0
- package/templates/pi/prompts/sync-check.md +230 -0
- package/templates/pi/scripts/categorize-issues.sh +171 -0
- package/templates/pi/scripts/ci/check_architecture_conformance.sh +748 -0
- package/templates/pi/scripts/ci/check_planning_packet.py +228 -0
- package/templates/pi/scripts/ci/run_hardening_stages.sh +264 -0
- package/templates/pi/scripts/ci/run_preflight.sh +649 -0
- package/templates/pi/scripts/ci/run_stage.sh +193 -0
- package/templates/pi/scripts/ci/stage_docs_policy.sh +82 -0
- package/templates/pi/scripts/ci/stage_integration.sh +3 -0
- package/templates/pi/scripts/ci/stage_lint.sh +130 -0
- package/templates/pi/scripts/ci/stage_migration_verify.sh +3 -0
- package/templates/pi/scripts/ci/stage_package_build.sh +3 -0
- package/templates/pi/scripts/ci/stage_release_readiness.sh +3 -0
- package/templates/pi/scripts/ci/stage_remaining.sh +242 -0
- package/templates/pi/scripts/ci/stage_security.sh +3 -0
- package/templates/pi/scripts/ci/stage_static_analysis.sh +114 -0
- package/templates/pi/scripts/ci/stage_unit.sh +119 -0
- package/templates/pi/scripts/ci/validate_agent_output.py +181 -0
- package/templates/pi/scripts/ci/validate_agent_output.sh +243 -0
- package/templates/pi/scripts/create-feature-branch.sh +136 -0
- package/templates/pi/scripts/create-mr.sh +117 -0
- package/templates/pi/scripts/fetch-issues.sh +131 -0
- package/templates/pi/scripts/generate-architecture.sh +161 -0
- package/templates/pi/scripts/git/close-epic.sh +69 -0
- package/templates/pi/scripts/git/close-issue.sh +35 -0
- package/templates/pi/scripts/git/create-tracking-issue.sh +174 -0
- package/templates/pi/scripts/git/link-issue-to-epic.sh +51 -0
- package/templates/pi/scripts/git/update-tracking-issue.sh +66 -0
- package/templates/pi/scripts/languages/go/validate-architecture.sh +139 -0
- package/templates/pi/scripts/languages/go/validate-canonical.sh +129 -0
- package/templates/pi/scripts/languages/go/validate-ci.sh +132 -0
- package/templates/pi/scripts/languages/go/validate-integration.sh +156 -0
- package/templates/pi/scripts/languages/go/validate-operations.sh +146 -0
- package/templates/pi/scripts/languages/go/validate-security.sh +135 -0
- package/templates/pi/scripts/languages/go/validate-tests.sh +125 -0
- package/templates/pi/scripts/languages/java/validate-annotations.sh +185 -0
- package/templates/pi/scripts/languages/java/validate-architecture.sh +159 -0
- package/templates/pi/scripts/languages/java/validate-canonical.sh +114 -0
- package/templates/pi/scripts/languages/java/validate-ci.sh +269 -0
- package/templates/pi/scripts/languages/java/validate-integration.sh +149 -0
- package/templates/pi/scripts/languages/java/validate-operations.sh +142 -0
- package/templates/pi/scripts/languages/java/validate-security.sh +174 -0
- package/templates/pi/scripts/languages/java/validate-spring-architecture.sh +227 -0
- package/templates/pi/scripts/languages/java/validate-tests.sh +159 -0
- package/templates/pi/scripts/languages/python/validate-architecture.sh +99 -0
- package/templates/pi/scripts/languages/python/validate-canonical.sh +124 -0
- package/templates/pi/scripts/languages/python/validate-ci.sh +130 -0
- package/templates/pi/scripts/languages/python/validate-integration.sh +119 -0
- package/templates/pi/scripts/languages/python/validate-operations.sh +107 -0
- package/templates/pi/scripts/languages/python/validate-security.sh +68 -0
- package/templates/pi/scripts/languages/python/validate-tests.sh +102 -0
- package/templates/pi/scripts/languages/rust/validate-architecture.sh +188 -0
- package/templates/pi/scripts/languages/rust/validate-canonical.sh +146 -0
- package/templates/pi/scripts/languages/rust/validate-ci.sh +147 -0
- package/templates/pi/scripts/languages/rust/validate-integration.sh +149 -0
- package/templates/pi/scripts/languages/rust/validate-operations.sh +154 -0
- package/templates/pi/scripts/languages/rust/validate-security.sh +153 -0
- package/templates/pi/scripts/languages/rust/validate-tests.sh +150 -0
- package/templates/pi/scripts/languages/typescript/validate-architecture.sh +157 -0
- package/templates/pi/scripts/languages/typescript/validate-canonical.sh +135 -0
- package/templates/pi/scripts/languages/typescript/validate-ci.sh +244 -0
- package/templates/pi/scripts/languages/typescript/validate-integration.sh +166 -0
- package/templates/pi/scripts/languages/typescript/validate-operations.sh +162 -0
- package/templates/pi/scripts/languages/typescript/validate-security.sh +169 -0
- package/templates/pi/scripts/languages/typescript/validate-tests.sh +158 -0
- package/templates/pi/scripts/merge-mr.sh +95 -0
- package/templates/pi/scripts/mr-validation.sh +228 -0
- package/templates/pi/scripts/validate-architecture-readiness.sh +153 -0
- package/templates/pi/scripts/validate-architecture.sh +22 -0
- package/templates/pi/scripts/validate-canonical.sh +22 -0
- package/templates/pi/scripts/validate-ci.sh +37 -0
- package/templates/pi/scripts/validate-integration.sh +22 -0
- package/templates/pi/scripts/validate-operations.sh +22 -0
- package/templates/pi/scripts/validate-security.sh +22 -0
- package/templates/pi/scripts/validate-tests.sh +22 -0
- package/templates/pi/scripts/validate-ubiquitous-language.sh +291 -0
- package/templates/pi/scripts/validation-cache.sh +139 -0
- package/templates/pi/skills/agents/architecture-coordinator.md +178 -0
- package/templates/pi/skills/agents/architecture-generator.md +79 -0
- package/templates/pi/skills/agents/architecture-validator.md +74 -0
- package/templates/pi/skills/agents/ci-mr-validator.md +46 -0
- package/templates/pi/skills/agents/code-developer.md +76 -0
- package/templates/pi/skills/agents/commit.md +46 -0
- package/templates/pi/skills/agents/curator.md +71 -0
- package/templates/pi/skills/agents/debug.md +59 -0
- package/templates/pi/skills/agents/documentation-maintainer.md +36 -0
- package/templates/pi/skills/agents/goal-loop.md +125 -0
- package/templates/pi/skills/agents/hooks.md +122 -0
- package/templates/pi/skills/agents/integration-validator.md +35 -0
- package/templates/pi/skills/agents/issue-creator.md +75 -0
- package/templates/pi/skills/agents/issue-factory.md +143 -0
- package/templates/pi/skills/agents/kanban.md +85 -0
- package/templates/pi/skills/agents/land.md +59 -0
- package/templates/pi/skills/agents/operations-validator.md +43 -0
- package/templates/pi/skills/agents/pipeline.md +113 -0
- package/templates/pi/skills/agents/plan-mode.md +77 -0
- package/templates/pi/skills/agents/pull.md +40 -0
- package/templates/pi/skills/agents/push.md +41 -0
- package/templates/pi/skills/agents/security-validator.md +85 -0
- package/templates/pi/skills/agents/session-persistence.md +119 -0
- package/templates/pi/skills/agents/slash-commands.md +117 -0
- package/templates/pi/skills/agents/snippets.md +99 -0
- package/templates/pi/skills/agents/subagent-registry.md +78 -0
- package/templates/pi/skills/agents/test-validator.md +42 -0
- package/templates/pi/skills/validators/architecture-validator.md +43 -0
- package/templates/pi/skills/validators/ci-validator.md +27 -0
- package/templates/pi/skills/validators/context-compaction.md +73 -0
- package/templates/pi/skills/validators/integration-validator.md +38 -0
- package/templates/pi/skills/validators/model-registry.md +96 -0
- package/templates/pi/skills/validators/operations-validator.md +34 -0
- package/templates/pi/skills/validators/security-guards.md +72 -0
- package/templates/pi/skills/validators/security-validator.md +41 -0
- package/templates/pi/skills/validators/system-prompt-tiers.md +69 -0
- package/templates/pi/skills/validators/test-validator.md +33 -0
- package/templates/pi/types.ts +62 -0
- package/templates/pi/validators/README.md +93 -0
- package/templates/pi/validators/default.toml +209 -0
- package/templates/pi/validators/spring.toml +142 -0
- package/templates/pi/workpad.md +53 -0
- package/templates/project/java/Dockerfile +14 -0
- package/templates/project/java/README.md +40 -0
- package/templates/project/java/pom.xml +132 -0
- package/templates/project/typescript/Dockerfile +15 -0
- package/templates/project/typescript/README.md +29 -0
- package/templates/project/typescript/package.json +23 -0
- package/templates/project/typescript/tsconfig.json +21 -0
- 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
|