Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Agents

This directory contains custom agent definitions for Claude Code. For more information on agents, see the Claude Code agents documentation.

Agent definitions are Markdown files with YAML frontmatter that define custom subagents for Claude Code.

Prerequisites

Before using agents from this repository:

  • GitHub MCP Server: Some agents include GitHub MCP tools (prefixed with mcp__github__) and assume the GitHub MCP server is configured in Claude Code.
  • GitHub CLI: Some agents may invoke the gh command-line utility for GitHub operations. Install it from cli.github.com.
  • Review before use: Agent files should be reviewed before installing to ensure they are suitable for your specific workflow and environment. Check the tools list and system prompt to understand what each agent can do.

Installation

Agents can be installed at two levels:

Global (all projects)

Copy agent files to your global Claude configuration directory:

  • macOS/Linux: ~/.claude/agents/
  • Windows: %USERPROFILE%\.claude\agents\
# Example: Install code-consistency-reviewer globally
cp agents/code-consistency-reviewer.md ~/.claude/agents/

Agents installed globally are available in all projects.

Project-Level

Copy agent files to your project's .claude/agents/ directory:

# From your project root
mkdir -p .claude/agents
cp /path/to/claude-code-config/agents/code-consistency-reviewer.md .claude/agents/

Project-level agents are only available within that specific project and can override global agents with the same name.

Using Agents

Once installed, agents are automatically available to Claude Code. They appear in the Task tool's available agent types and can be invoked when their trigger conditions are met (as defined in the agent's description field).

Available Agents

Agent Description
code-consistency-reviewer Reviews pending code changes for consistency with the existing codebase before committing.
product-owner Assists with product ownership tasks such as backlog management and requirements gathering.