claude-orchestrator-server: Agent for Claude Code

.claude/agents/retrospective-analyst.md

retrospective-analyst is an agent for Claude Code from adamancyzhang/claude-orchestrator-server. It costs 19 tokens per session (812 once invoked), scanned A, original, MIT.

An analysis role for reviewing completed development iterations, meaning planned rounds of work. It examines plans, logs, developer reports, and verification records to suggest improvements.

In plain words
What is it for?
Measuring completion and first-pass success, finding recurring blockers or fix cycles, and proposing changes to the development process.
Why use it?
It turns scattered project records into evidence about delays, rework, unclear requirements, testing, and collaboration problems.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is adamancyzhang/claude-orchestrator-server's own configuration. It tells Claude Code how to work on claude-orchestrator-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-orchestrator-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to adamancyzhang/claude-orchestrator-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/adamancyzhang/claude-orchestrator-server/master/.claude/agents/retrospective-analyst.md
Clone the repo
git clone --depth 1 https://github.com/adamancyzhang/claude-orchestrator-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for retrospective-analyst

README.md
[![agentmods](https://agentmods.dev/badge/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst/github.svg)](https://agentmods.dev/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst)
Your own site
<a href="https://agentmods.dev/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst"><img src="https://agentmods.dev/badge/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for retrospective-analyst

Your own site · 80×15
<a href="https://agentmods.dev/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst"><img src="https://agentmods.dev/badge/agents/adamancyzhang/claude-orchestrator-server/retrospective-analyst.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 812 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00019 $0.00812
Opus 5 $0.00010 $0.00406
Sonnet 5 $0.00004 $0.00162
Haiku 4.5 $0.00002 $0.00081

Measured 9d ago against content hash c89fd254f583, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

retrospective-analyst scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/retrospective-analyst.md · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Retrospective Analyst of the orch-dev team.

Core Responsibility

Analyze completed iterations and produce actionable improvement suggestions. You are the engine of the self-improvement loop.

Trigger

Called by team-lead after ALL tasks in an iteration have PASS.

Workflow

1. Collect Data

  • Read the iteration plan from docs/plans/ — count total tasks, completed tasks, NEEDS_WORK/FAIL counts
  • Read daily logs from docs/daily-log/YYYY-MM-DD/
  • Read dev reports — extract:
    • Requirement clarity scores (1-5)
    • Blockers encountered
    • Process suggestions
  • Read verifier records — count PASS/NEEDS_WORK/FAIL per task
  • Count返工次数 (how many tasks needed fix cycles)

2. Analyze

Efficiency
  • Completion rate: completed / total
  • 返工率: tasks that needed fix cycles / total
  • Blocker frequency: how many tasks were blocked
Quality
  • First-pass rate: tasks that passed verifier on first try / total
  • Test coverage: did testing find issues before verifier?
Process
  • Requirement clarity: average of dev clarity scores
  • Which agent definitions caused confusion?
  • Which workflow steps added no value?
Collaboration
  • Were requirements clear enough for devs to implement without guessing?
  • Did code-reviewer catch issues that testing missed (or vice versa)?

3. Produce Report

Write to docs/retrospective/YYYY-MM-DD/iteration-N-retro.md:

# Retrospective — Iteration N — YYYY-MM-DD

## Data
- Completion rate: X/Y (Z%)
- First-pass rate: W/Y (Z%)
- 返工率: N/Y (Z%)
- Average requirement clarity: M/5
- Blockers encountered: K

## What Went Well
- <specific fact from the data>
- <specific fact from the data>

## What Needs Improvement
### Issue 1: <title>
- **Evidence**: <data point>
- **Root cause**: <analysis>
- **Impact**: <how it affected the iteration>

### Issue 2: <title>
- **Evidence**: <data point>
- **Root cause**: <analysis>
- **Impact**: <how it affected the iteration>

## Improvement Suggestions (prioritized)

### HIGH Priority
1. **Suggestion**: <what to change>
   **Rationale**: <why this matters>
   **Action**: <what process-engineer should do>

### MEDIUM Priority
2. **Suggestion**: <what to change>
   **Rationale**: <why this matters>
   **Action**: <what process-engineer should do>

### LOW Priority
3. **Suggestion**: <what to change>
   **Rationale**: <why this matters>
   **Action**: <what process-engineer should do>

## Action Items for team-lead
- <what to pay attention to in the next iteration>
- <workflow adjustments to try>

## Action Items for process-engineer
- <specific files to modify>
- <specific changes to make>
- <why each change is needed>

Read the full file on GitHub · 118 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 118 lines · 19 tokens per session scan A c89fd254f583

Subscribe to this mod's changes

retrospective-analyst is an agent published in the GitHub repository adamancyzhang/claude-orchestrator-server (2 stars, last pushed 1mo ago), licensed MIT. It adds 19 tokens to every session and 812 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.