Claude Mates
Description
Autonomous background agents for codebase maintenance, powered by Claude Code CLI
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Claude Mates
Autonomous maintenance agents for your codebase, shipped as a GitHub composite action.
Each mate is a specialized Claude Code agent that runs on a schedule, analyzes your repo, and either files an issue or opens a PR with fixes. Mates never merge — humans decide.
Inspired by [AI Daemons](https://ai-daemons.com/spec/), built on [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
The mates
Two classes:
**Drift mates** — nightly state-query over HEAD. Each is a Claude Code prompt tuned for one concern.
| Mate | Purpose | Default model | Trigger |
|---|---|---|---|
docs |
Documentation quality, staleness, drift | Haiku | nightly |
tests |
Outdated/redundant tests, weak assertions | Haiku | nightly |
dead-code |
Unused symbols, orphaned files | Haiku | nightly |
logic |
TODOs, deprecated APIs, hardcoded values | Haiku | nightly |
**Policy gate** — PR-scoped, wraps a specialized tool.
| Mate | Purpose | Engine | Trigger |
|---|---|---|---|
security |
Security review, diff-aware, inline PR comments | `anthropics/claude-code-security-review` (Opus 4.1 default) | pull_request only |
The security mate is a thin wrapper over Anthropic's specialized scanner: you keep the `mate: security` interface, the scanner does the analysis. See [examples/README.md](examples/README.md) for the PR-scoped invocation pattern.
**Key architectural difference from the drift mates**:
| Drift mates | Security mate | |
|---|---|---|
| Findings go to | Job Summary panel (ephemeral, per-run) | Inline PR review comments (during PR lifecycle) |
| Opens a PR? | Yes, when there's a concrete fix | No — detection-only |
| Opens an issue? | No (avoids tracker noise at nightly scale) | Only when a PR merges with residual findings (via optional security-aftermath.yml companion). Rare × high-signal. |
| Blocks merge? | Never (advisory only) | Yes, when security is added as a re |
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11