agent-review
Installation
SKILL.md
Agent Review
Review an agent's AGENTS.md by running two parallel sub-agent checks via TaskCreate:
- Structure check — frontmatter schema, body coherence, schedule validity, permission completeness
- Quality check — does the agent fulfil the user's intent?
Workflow
- Ask the user which agent to review (or infer from context).
- Locate the agent:
- Global:
~/.treasure-work/agents/{name}/AGENTS.md - Workspace:
{workspace}/agents/{name}/AGENTS.md - Use
agent_getif the path / scope is unclear.
- Global:
- Fetch the agent's frontmatter + body via
agent_get { name }. - (Optional, for agents that have already run) fetch the most recent run via
chat_readto look for execution issues that surface only at run time. - Launch both checks in parallel using
TaskCreate. - Collect with
TaskGetand present a unified report.