Skip to content

cachix/devenv-ai-agents

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devenv-ai-agents

A collection of specialized AI agents like Claude Code Subagents using https://devenv.sh

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

Usage

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-agents

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.
    '';
  };
}

Learn More

About

A collection of specialized Claude Code agents composed using https://devenv.sh

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published