A collection of specialized AI agents like Claude Code Subagents using https://devenv.sh
- code-reviewer: Expert code review specialist that checks for quality, security, and best practices (runs proactively)
- architecture-designer: System architecture and API design specialist for planning new features or refactoring
- documentation-writer: Technical documentation expert for maintaining docs, API specs, and changelogs
- devops-specialist: CI/CD and infrastructure automation expert for deployment and DevOps improvements
- fullstack-developer: Full-stack implementation specialist for features across the entire stack
- quality-assurance: Quality assurance and compliance expert for testing and regulatory verification
To use these Claude code agents in your devenv.sh project, import this repository in your devenv.yaml:
inputs:
devenv-ai-agents:
url: github:cachix/devenv-ai-agents
flake: false
imports:
- devenv-ai-agentsIf you'd like to expand agent prompt:
{ pkgs, lib, ... }: {
claude.code.agents = {
code-reviewer.prompt = ''
NEVER say "You're right"!
'';
};
}If you'd like to override the whole prompt:
{ pkgs, lib, ... }: {
claude.code.agents = {
code-reviewer.prompt = lib.mkForce ''
Do a basic code review.
'';
};
}