Deevs' Agent System
Deevs' plugin marketplace for Claude Code with workflow chains, terminal control, and expert agents.
Installation
/plugin marketplace add git@github.com:DeevsDeevs/agent-system.git
Codex Setup
Codex loads repo-scoped skills from .agents/skills. This repo includes .agents/skills symlinks to each skill folder.
For backward compatibility, .codex/skills symlinks are also kept.
Codex multi-agent role config for all personas is included in:
.codex/config.toml
.codex/agents/*.toml
Usage:
- Invoke a skill with
$skill-name or /skills.
- For chain operations:
$chain-system link <name>, $chain-system load <name>, $chain-system list.
- For persona workflows:
$dev-experts <persona>, $bug-hunters <role>, $alpha-squad <role>, $mft-research-experts <role>.
If Codex was already running, restart it to reload the skills.
Global (user-scoped) install for any repo:
curl -fsSL https://raw.githubusercontent.com/DeevsDeevs/agent-system/main/scripts/install.sh \
| bash -s -- --non-interactive --platform codex
Install selected skills only:
curl -fsSL https://raw.githubusercontent.com/DeevsDeevs/agent-system/main/scripts/install.sh \
| bash -s -- --non-interactive --platform codex --skills dev-experts,bug-hunters
Installer (interactive by default):
curl -fsSL https://raw.githubusercontent.com/DeevsDeevs/agent-system/main/scripts/install.sh \\
| bash -s --
Installer flags: --non-interactive, --platform claude|codex|both, --repo-ref <tag|branch|commit>, --uninstall, --skills a,b,c.
Uninstall:
- Codex: run the installer with
--uninstall.
- Claude Code: use
/plugin uninstall <plugin>@deevs-agent-system inside Claude Code.
Install a single skill by URL with $skill-installer.
Plugins
chain-system
Multi-session workflow chains for maintaining context across conversations.
Core: Save conversation state, resume complex projects across sessions without losing technical details.
Commands:
/chain-link [name] - Save current work to chain
/chain-load [name] - Resume from saved chain
/chain-list - List all chains
Use when: Working on multi-session projects, need to pause and resume with full context.
Details: chain-system/README.md
/plugin install chain-system@deevs-agent-system
dev-experts
Critical, opinionated developer personas focused on approach and methodology.
Agents:
/architect - Technical lead and architect
- Plans features, explores alternatives with trade-off analysis
- Creates actionable implementation plans
- Use for: Architecture decisions, feature design
/devops - Production detective
- Methodical bug hunting and failure investigation
- Forms hypotheses, tests systematically
- Use for: Production issues, mysterious bugs, deployment failures
/rust-dev - Rust purist
- Hunts un-Rusty patterns, ownership issues, safety violations
- Use for: Rust code review, idiom improvements
/python-dev - Pythonista
- Type safety, async pitfalls, modern Python (3.10+)
- Use for: Python code review, modernization
/cpp-dev - C++ performance purist
- UB, memory bugs, latency killers, lock-free correctness
- Use for: C++ code review, performance optimization
/reviewer - Grumpy code wizard, 40 years experience
- Security holes, race conditions, performance sins, edge cases
- Line-by-line analysis with specific fixes
- Use for: Pre-merge review, security audit
/tester - Testing specialist
- Comprehensive, real-world tests (no fake tests)
- Use for: Writing tests, improving coverage
Details: dev-experts/README.md
/plugin install dev-experts@deevs-agent-system
alpha-squad
Five hypothesis generators attacking from complementary angles. Mechanism over fit. Counterparty over correlation.
Agents:
/fundamentalist - Accounting & value lens
- Financial statements, earnings quality, capital efficiency
- Use for: Mispricing from accounting misreads
/vulture - Flows & constraints lens
- Forced sellers, index reconstitutions, 13F crowding
- Use for: Constraint-driven alpha, calendar flows
/network-architect - Relationships & propagation lens
- Customer-supplier networks, lead-lag, contagion paths
- Use for: Information propagation, network effects
/book-physicist - Microstructure & entropy lens
- Order book entropy, informativity decomposition, structural models (Kyle, Hawkes)
- Use for: Microstructure alpha, order flow informativity, entropy regime detection
/causal-detective - Mechanisms & confounding lens
- Frisch-Waugh-Lovell, Double ML, placebo tests
- Use for: Proving causal mechanisms, killing confounded signals
Details: alpha-squad/README.md
/plugin install alpha-squad@deevs-agent-system
mft-research-experts