azclaude-copilot 0.3.0 → 0.3.1
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/package.json
CHANGED
|
@@ -27,7 +27,7 @@ echo "--- Core files ---"
|
|
|
27
27
|
[ -f .claude/capabilities/manifest.md ] && echo "✓ manifest.md" || echo "✗ manifest.md MISSING"
|
|
28
28
|
|
|
29
29
|
echo "--- Commands ---"
|
|
30
|
-
for cmd in dream setup fix add
|
|
30
|
+
for cmd in dream setup fix add audit test blueprint evolve debate persist level-up ship pulse explain loop; do
|
|
31
31
|
[ -f ".claude/commands/$cmd.md" ] && echo "✓ /$cmd" || echo "✗ /$cmd MISSING"
|
|
32
32
|
done
|
|
33
33
|
|
|
@@ -71,6 +71,30 @@ done
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
+
### Capability Reference Check
|
|
75
|
+
|
|
76
|
+
Verify all `capabilities/` references in commands and agents resolve to existing files:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
echo "--- Capability references ---"
|
|
80
|
+
missing=0
|
|
81
|
+
for dir in .claude/commands .claude/agents; do
|
|
82
|
+
[ -d "$dir" ] || continue
|
|
83
|
+
for f in "$dir"/*.md; do
|
|
84
|
+
refs=$(grep -oE 'capabilities/[^ )\]}"'"'"',]+' "$f" 2>/dev/null | sort -u)
|
|
85
|
+
for ref in $refs; do
|
|
86
|
+
if [ ! -f ".claude/$ref" ] && [ ! -d ".claude/$ref" ]; then
|
|
87
|
+
echo "✗ Missing: $ref (in $(basename $f))"
|
|
88
|
+
missing=$((missing + 1))
|
|
89
|
+
fi
|
|
90
|
+
done
|
|
91
|
+
done
|
|
92
|
+
done
|
|
93
|
+
[ "$missing" -eq 0 ] && echo "✓ All capability references resolve" || echo "✗ $missing broken references"
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
74
98
|
### Pass Criteria
|
|
75
99
|
|
|
76
100
|
All checks must show ✓ before declaring setup complete.
|