agent-manager
Creates, lists, and removes custom project-specific agents. Custom agents are stored in .claude/crew-agents/ and registered in crew-team.json for routing.
Displays CodeCrew status including project profile, agent team configuration, codebase index health, skill catalog stats, and recent task history.
$ npx -y skills add d3x293/code-crew --skill team-status --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/team-statusContext preview
The summary Claude sees to decide when to auto-load this skill.
Displays CodeCrew status including project profile, agent team configuration, codebase index health, skill catalog stats, and recent task history.
name: team-status description: Displays CodeCrew status including project profile, agent team configuration, codebase index health, skill catalog stats, and recent task history.
Shows the current state of CodeCrew for the active project.
Read `.claude/crew-profile.md` and display:
Project: {name}
Type: {type} | Languages: {languages} | Frameworks: {frameworks}
Size: {files} files, {lines} linesRead `.claude/crew-index.json` and check:
Index: {file count} files, {symbol count} symbols | {FRESH|STALE|MISSING} | Last: {time ago}**Health assessment:**
Quick staleness check: pick 3 random files from the index, compute their current hash, compare with stored hash. If any mismatch → STALE.
Read `.claude/crew-team.json` and `.claude/crew-config.json` (if exists) and display:
If the config has `"defaultMode": "lite"` or the last task in history used `"mode": "lite"`, show `Mode: LITE` otherwise `Mode: FULL`.
Mode: {FULL|LITE}
Opus: ceo
Sonnet: vp-engineering, vp-quality, senior-dev, code-reviewer, debugger [standby: security-analyst, test-engineer]
Haiku: junior-dev, doc-writer [standby: devops-engineer]Read `.claude/crew-skills.json` and display:
Skills: {relevant}/{total} for {detected stack} | Active: {list} | On-demand: {count} by task typeRead `.claude/crew-history.json` (if exists, and has 3+ tasks) and aggregate per-agent stats:
Agent Performance (last 20 tasks): Agent | Tasks | Success | Avg Confidence senior-dev | 15 | 93% | high debugger | 8 | 100% | high junior-dev | 12 | 100% | high code-reviewer | 6 | 100% | — vp-engineering | 4 | 100% | — doc-writer | 3 | 100% | high
Calculation:
Read `.claude/crew-history.json` (if exists) and display last 3 tasks:
Recent Tasks: 1. [2026-04-04 12:00] bug-fix (moderate) → debugger + senior-dev → SUCCESS 2. [2026-04-04 11:30] docs (trivial) → doc-writer → SUCCESS 3. [2026-04-04 10:15] feature (complex) → vp-eng + senior-dev + test-eng → SUCCESS
If no history: "No tasks yet. Run /crew task to start."
If required files are missing:
A virtual dev crew for Claude Code — 11 specialized AI agents that decompose, implement, review, and ship your tasks. Instead of one AI doing everything, CodeCrew breaks work into subtasks and routes each to the right specialist on the right model.
Repo: d3x293/code-crew
Creates, lists, and removes custom project-specific agents. Custom agents are stored in .claude/crew-agents/ and registered in crew-team.json for routing.
3-layer codebase indexing system for token-efficient code navigation. Builds compact index + symbol map so agents read targeted lines instead of entire files.…
Manages CodeCrew configuration. Allows users to customize default mode, model tiers, agent activation, token budgets, and auto-index settings without editing…
Analyzes a project codebase, builds 3-layer index, generates project profile, and auto-configures the agent team with relevant skills. The main initialization…
Smart hybrid execution engine that dispatches agents in parallel or sequential order based on task dependencies. Manages the Agent tool calls, result…
Keeps the 3-layer codebase index fresh after file edits. Performs incremental updates by recomputing hashes and re-extracting metadata for only changed files.