cachix/devenv-ai-agents
A collection of specialized Claude Code agents composed using https://devenv.sh
{ "createdAt": "2025-07-28T17:54:21Z", "defaultBranch": "main", "description": "A collection of specialized Claude Code agents composed using https://devenv.sh", "fullName": "cachix/devenv-ai-agents", "homepage": null, "language": "Nix", "name": "devenv-ai-agents", "pushedAt": "2025-08-28T20:49:41Z", "stargazersCount": 15, "topics": [], "updatedAt": "2025-11-02T06:33:43Z", "url": "https://github.com/cachix/devenv-ai-agents"}devenv-ai-agents
Section titled “devenv-ai-agents”A collection of specialized AI agents like Claude Code Subagents using https://devenv.sh
Available Agents
Section titled “Available Agents”- 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: falseimports: - devenv-ai-agentsExtending agents
Section titled “Extending agents”If 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. ''; };}