Claude-skill-registry cockpit
Display full ecosystem cockpit with dependency graph, repo health, and proactive alerts. The airplane cockpit that sees everything across all repos.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cockpit" ~/.claude/skills/majiayu000-claude-skill-registry-cockpit && rm -rf "$T"
manifest:
skills/data/cockpit/SKILL.mdsource content
/cockpit - CYNIC Ecosystem Cockpit
"Le cockpit qui voit tout" - The cockpit that sees everything
Quick Start
/cockpit
What It Does
Provides omniscient awareness across the entire ecosystem:
- Repo Health: Status of all repos in /workspaces
- Dependencies: Inter-repo dependency graph
- Alerts: Proactive warnings (uncommitted changes, drift, conflicts)
- Summary: Unified ecosystem metrics
Views
Full Status (default)
/cockpit
Alerts Only
/cockpit alerts
Dependencies
/cockpit deps
Single Repo
/cockpit GASdf
Implementation
The cockpit runs automatically at session start (via
awaken.cjs) and stores state in ~/.cynic/cockpit/.
Manual Scan
To run a fresh scan:
// In hooks/lib context const cockpit = require('./scripts/lib/cockpit.cjs'); const state = cockpit.fullScan(); console.log(cockpit.formatCockpitStatus(state));
Read Cached State
const state = cockpit.getCockpitState();
Data Files
| File | Purpose |
|---|---|
| Full ecosystem scan results |
| Active alerts (TTL: 1 hour) |
| Dependency graph |
Repo Health States
| State | Icon | Meaning |
|---|---|---|
| healthy | ✅ | Clean, on main, up to date |
| warning | ⚠️ | Uncommitted changes or behind remote |
| critical | 🔴 | Major issues needing attention |
| unknown | ❓ | Not a git repo or scan failed |
Alert Types
| Type | Trigger |
|---|---|
| Repo in critical state |
| >10 modified files in critical repo |
| >5 commits behind origin |
| Critical repo not on main |
| Circular dependency detected |
Ecosystem Knowledge
The cockpit knows about these core repos:
| Repo | Role | Critical |
|---|---|---|
| CYNIC-new | core brain | ✅ |
| GASdf | gasless infra | ✅ |
| HolDex | K-Score oracle | ✅ |
| asdf-brain | legacy proto | ❌ |
| asdf-manifesto | philosophy | ❌ |
φ-Alignment
- Scan interval: 61.8 seconds (φ × 100ms × 618)
- Alert TTL: 1 hour
- Max alerts: 100
See Also
- CYNIC services health/health
- Tracked repo updates/ecosystem
- Detected patterns/patterns