@accelerationguy/accel 1.0.2 → 1.0.3
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.
|
@@ -1,125 +1,123 @@
|
|
|
1
1
|
<purpose>
|
|
2
|
-
Detect all installed
|
|
2
|
+
Detect all installed Accelerate modules, report health, and identify issues. Single-glance view of what's installed and working.
|
|
3
3
|
</purpose>
|
|
4
4
|
|
|
5
|
-
<user-story>
|
|
6
|
-
As a Claude Code user, I want to see what frameworks are installed and whether they're healthy, so I know if anything needs attention.
|
|
7
|
-
</user-story>
|
|
8
|
-
|
|
9
5
|
<when-to-use>
|
|
10
|
-
- Checking what's
|
|
11
|
-
- Verifying
|
|
12
|
-
- Diagnosing issues
|
|
13
|
-
- Entry point routes here via /accel status
|
|
6
|
+
- Checking what's installed
|
|
7
|
+
- Verifying installation completed correctly
|
|
8
|
+
- Diagnosing module issues
|
|
14
9
|
</when-to-use>
|
|
15
10
|
|
|
16
|
-
<context>
|
|
17
|
-
@frameworks/framework-registry.md
|
|
18
|
-
</context>
|
|
19
|
-
|
|
20
11
|
<steps>
|
|
21
12
|
|
|
22
|
-
<step name="
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
For each of the 7 frameworks, run detection checks from the registry:
|
|
26
|
-
|
|
27
|
-
**Vector:**
|
|
28
|
-
- Global install: check `~/.vector/vector.json` exists
|
|
29
|
-
- Hook: check `~/.claude/hooks/vector-hook.py` exists
|
|
30
|
-
- MCP: check `.mcp.json` has `vector-mcp` entry (workspace-level)
|
|
31
|
-
- Version: grep `VECTOR_HOOK_VERSION` from hook file
|
|
32
|
-
|
|
33
|
-
**Momentum:**
|
|
34
|
-
- Global install: check `~/.claude/momentum-framework/` exists
|
|
35
|
-
- Workspace install: check `.accel/momentum/workspace.json` exists
|
|
36
|
-
- Hooks wired: check `.claude/settings.json` for `.accel/momentum/hooks/` entries
|
|
37
|
-
- MCP: check `.mcp.json` has `momentum-mcp` entry
|
|
38
|
-
- Data surfaces: check `.accel/momentum/data/projects.json` exists
|
|
39
|
-
- Version: read from `.accel/momentum/momentum-mcp/package.json`
|
|
40
|
-
|
|
41
|
-
**Drive:**
|
|
42
|
-
- Install: check `~/.claude/commands/drive/` exists
|
|
43
|
-
- Framework: check `~/.claude/drive-framework/` exists
|
|
44
|
-
- Version: check package.json or command file headers
|
|
45
|
-
|
|
46
|
-
**Ignition:**
|
|
47
|
-
- Install: check `~/.claude/commands/ignition/ignition.md` exists
|
|
48
|
-
- Version: read frontmatter from ignition.md
|
|
49
|
-
|
|
50
|
-
**Forge:**
|
|
51
|
-
- Install: check `~/.claude/commands/forge/forge.md` exists
|
|
52
|
-
- Specs: check `~/.claude/forge-specs/` exists
|
|
53
|
-
- Version: read frontmatter from forge.md
|
|
54
|
-
|
|
55
|
-
**Radar:**
|
|
56
|
-
- Framework: check `~/.claude/radar/` exists
|
|
57
|
-
- Commands: check `~/.claude/commands/radar/audit.md` exists
|
|
58
|
-
- Tools: check `semgrep --version`, `trivy --version`, `gitleaks --version` etc.
|
|
59
|
-
- Version: grep RADAR_VERSION or count framework files
|
|
60
|
-
|
|
61
|
-
Run all checks in parallel where possible.
|
|
62
|
-
</step>
|
|
13
|
+
<step name="read_manifest" priority="first">
|
|
14
|
+
Read the Accelerate manifest to know what's installed:
|
|
63
15
|
|
|
64
|
-
|
|
65
|
-
|
|
16
|
+
```bash
|
|
17
|
+
cat ~/.accel/manifest.json 2>/dev/null || echo "NOT_INSTALLED"
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
If NOT_INSTALLED: tell user "Accelerate is not installed. Run `npx @accelerationguy/accel` to install." and stop.
|
|
66
21
|
|
|
67
|
-
|
|
22
|
+
The manifest lists all installed modules, version, and install date.
|
|
23
|
+
</step>
|
|
24
|
+
|
|
25
|
+
<step name="detect_installed">
|
|
26
|
+
Check each module's actual state. Run ALL checks in parallel:
|
|
27
|
+
|
|
28
|
+
**Vector (Rules Engine):**
|
|
29
|
+
- Module files: `~/.accel/modules/vector/` exists
|
|
30
|
+
- User config: `~/.accel/modules/vector/vector.json` exists
|
|
31
|
+
- Hook: `~/.claude/hooks/vector-hook.py` exists
|
|
32
|
+
- Hook wired: `~/.claude/settings.json` has vector-hook.py in UserPromptSubmit hooks
|
|
33
|
+
- MCP: `~/.mcp.json` has `vector-mcp` entry
|
|
34
|
+
- Version: grep `VECTOR_HOOK_VERSION` from `~/.claude/hooks/vector-hook.py`
|
|
35
|
+
|
|
36
|
+
**Momentum (Workspace State):**
|
|
37
|
+
- Module files: `~/.accel/modules/momentum/` exists
|
|
38
|
+
- Data: `~/.accel/modules/momentum/data/` directory exists
|
|
39
|
+
- Hooks wired: `~/.claude/settings.json` has momentum hooks (active-hook.py, backlog-hook.py, momentum-pulse-check.py, psmm-injector.py, satellite-detection.py, operator.py, apex-insights.py)
|
|
40
|
+
- MCP: `~/.mcp.json` has `momentum-mcp` entry
|
|
41
|
+
|
|
42
|
+
**Drive (Dev Workflow):**
|
|
43
|
+
- Module files: `~/.accel/modules/drive/` exists
|
|
44
|
+
- Commands: `~/.claude/commands/drive/` exists
|
|
45
|
+
- Command count: count .md files in `~/.claude/commands/drive/`
|
|
46
|
+
|
|
47
|
+
**Ignition (Project Incubation):**
|
|
48
|
+
- Module files: `~/.accel/modules/ignition/` exists
|
|
49
|
+
- Commands: `~/.claude/commands/ignition/` exists
|
|
50
|
+
- Command count: count .md files in `~/.claude/commands/ignition/`
|
|
51
|
+
|
|
52
|
+
**Radar (Security Auditing):**
|
|
53
|
+
- Module files: `~/.accel/modules/radar/` exists
|
|
54
|
+
- Commands: `~/.claude/commands/radar/` exists
|
|
55
|
+
- External tools: `semgrep --version`, `trivy --version`, `gitleaks --version`
|
|
56
|
+
|
|
57
|
+
**Forge (Skill Builder):**
|
|
58
|
+
- Module files: `~/.accel/modules/forge/` exists
|
|
59
|
+
- Commands: `~/.claude/commands/forge/` exists
|
|
60
|
+
|
|
61
|
+
**Mission Control (Orchestrator):**
|
|
62
|
+
- Module files: `~/.accel/modules/mission-control/` exists
|
|
63
|
+
- Commands: `~/.claude/commands/mission-control/` exists
|
|
64
|
+
</step>
|
|
68
65
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
3. **Staleness**: When was it last modified vs the source repo?
|
|
72
|
-
4. **Cross-framework**: Are expected integrations present? (e.g., Drive domain in Vector)
|
|
66
|
+
<step name="assess_health">
|
|
67
|
+
For each module in the manifest:
|
|
73
68
|
|
|
74
|
-
|
|
75
|
-
- **
|
|
76
|
-
- **
|
|
77
|
-
- **Not installed** — framework not detected
|
|
69
|
+
- **Healthy** — module files exist + commands installed + hooks/MCP wired (if applicable)
|
|
70
|
+
- **Degraded** — module files exist but missing commands, hooks, or MCP wiring
|
|
71
|
+
- **Not installed** — in manifest but files missing (corrupted install)
|
|
78
72
|
</step>
|
|
79
73
|
|
|
80
74
|
<step name="report">
|
|
81
|
-
Present the status report.
|
|
82
|
-
|
|
83
75
|
Format:
|
|
84
76
|
```
|
|
85
|
-
|
|
77
|
+
Accelerate Status (v{version})
|
|
86
78
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
Vector
|
|
90
|
-
Momentum
|
|
91
|
-
Drive
|
|
92
|
-
Ignition
|
|
93
|
-
|
|
94
|
-
|
|
79
|
+
Module Status Notes
|
|
80
|
+
────── ────── ─────
|
|
81
|
+
Vector Healthy hook + MCP wired
|
|
82
|
+
Momentum Healthy {N} hooks wired, MCP active
|
|
83
|
+
Drive Healthy {N} commands
|
|
84
|
+
Ignition Healthy {N} commands
|
|
85
|
+
Radar Degraded {N} commands, scan tools missing
|
|
86
|
+
Forge Healthy {N} commands
|
|
87
|
+
Mission Ctrl Healthy orchestrator active
|
|
95
88
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
Last groom: {date}
|
|
89
|
+
Installed: {date}
|
|
90
|
+
Modules: {count}/7
|
|
99
91
|
|
|
100
92
|
Issues:
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
93
|
+
- Radar: scan tools not installed
|
|
94
|
+
Fix: brew install semgrep trivy gitleaks
|
|
95
|
+
|
|
96
|
+
Quick commands:
|
|
97
|
+
/momentum:scaffold — set up workspace tracking
|
|
98
|
+
/drive:init — initialize dev workflow
|
|
99
|
+
/ignition:ideate — start a new project
|
|
100
|
+
/radar:audit — run security audit
|
|
105
101
|
```
|
|
106
102
|
|
|
107
|
-
If all healthy
|
|
108
|
-
If
|
|
103
|
+
If all healthy: "All modules healthy."
|
|
104
|
+
If Radar tools missing: suggest brew install.
|
|
105
|
+
If hooks not wired: suggest `npx @accelerationguy/accel@latest` reinstall.
|
|
109
106
|
</step>
|
|
110
107
|
|
|
111
108
|
</steps>
|
|
112
109
|
|
|
113
110
|
<output>
|
|
114
|
-
Status table showing all
|
|
111
|
+
Status table showing all modules with health state and actionable fix instructions.
|
|
115
112
|
</output>
|
|
116
113
|
|
|
117
114
|
<acceptance-criteria>
|
|
118
|
-
- [ ]
|
|
119
|
-
- [ ]
|
|
120
|
-
- [ ]
|
|
121
|
-
- [ ]
|
|
122
|
-
- [ ]
|
|
123
|
-
- [ ]
|
|
124
|
-
- [ ]
|
|
115
|
+
- [ ] Reads manifest from ~/.accel/manifest.json
|
|
116
|
+
- [ ] All installed modules checked at ~/.accel/modules/{id}/
|
|
117
|
+
- [ ] Commands verified at ~/.claude/commands/{id}/
|
|
118
|
+
- [ ] Hooks verified in ~/.claude/settings.json (Vector, Momentum)
|
|
119
|
+
- [ ] MCP verified in ~/.mcp.json (Vector, Momentum)
|
|
120
|
+
- [ ] Health state assigned per module
|
|
121
|
+
- [ ] Issues listed with fix commands
|
|
122
|
+
- [ ] Clean table format
|
|
125
123
|
</acceptance-criteria>
|