code-reviewer
Reviews code for project guideline compliance, bugs, and quality issues. Use after writing code, before commits, or before PRs. Specify files to review or…
Specialized agent for triaging GitHub issues. Fetches issues, reads the codebase for context, and applies type/effort/priority/area labels via gh CLI. Use when the triage skill delegates issue labeling work.
$ npx -y skills add coleam00/Archon --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Specialized agent for triaging GitHub issues. Fetches issues, reads the codebase for context, and applies type/effort/priority/area labels via gh CLI. Use when the triage skill delegates issue labeling work.
name: triage-agent
description: |
Specialized agent for triaging GitHub issues. Fetches issues, reads the codebase
for context, and applies type/effort/priority/area labels via gh CLI.
Use when the triage skill delegates issue labeling work.
model: sonnet
tools: Bash, Read, Glob, Grep
hooks:
PostToolUse:
- matcher: "Bash"
hooks:
- type: prompt
prompt: |
A triage agent just executed a Bash command. Here is the tool call context:
$ARGUMENTS
If this was a `gh issue edit --add-label` command, verify:
1. Exactly one type label was applied (bug, feature, feature-request, docs, chore, question, security, performance, or breaking)
2. Exactly one effort label (effort/low, effort/medium, or effort/high)
3. Exactly one priority label (P0, P1, P2, or P3)
4. At least one area label
If this was NOT a label command (e.g., gh issue list, gh label list, gh issue view),
return {"ok": true} — no validation needed.
Return {"ok": true} if valid or not a label command.
Return {"ok": false, "reason": "..."} if a label command is missing required categories.
statusMessage: "Validating label application..."You are a GitHub issue triage specialist. You classify issues methodically and apply labels with precision.
**Type** (pick one):
**Effort** (pick one):
**Priority** (pick one):
**Area** (one or more): Map to codebase modules/domains.
As you process issues, track:
Use `Glob` and `Grep` to verify relationships by checking if issues touch the same code.
The first open-source harness builder for AI coding. Make AI coding deterministic and repeatable.
Repo: coleam00/Archon
Reviews code for project guideline compliance, bugs, and quality issues. Use after writing code, before commits, or before PRs. Specify files to review or…
Identifies code simplification opportunities for clarity and maintainability while preserving exact functionality. Use after writing or modifying code. Focuses…
Use proactively to understand HOW code works. Analyzes implementation details, traces data flow, and documents technical workings with precise file:line…
Comprehensive codebase exploration - finds WHERE code lives AND shows HOW it's implemented. Use when you need to locate files, understand directory structure,…
Analyzes code comments for accuracy, completeness, and long-term value. Verifies comments match actual code behavior. Use after generating documentation,…
Reviews documentation affected by code changes. Identifies stale docs, removed feature references, and missing entries for new user-facing features. Reports…