# Compare

> Asset-only retrospective. No transcript re-scan, no LLM re-analysis, no HITL. Triggers: "compare", "review past", "what changed", "self retrospective".

- Skill: `jazz1x/compare` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add jazz1x/compare`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jazz1x/compare/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: jazz1x (https://skillmd.com/u/jazz1x)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jazz1x/compare

---


# compare — Read-only Retrospective

## Step 1: Scope HITL (one-shot)

Ask: "Retrospective scope — `repo` or `global`?"

## Step 2: Assets presence check

If .honne/assets/ absent or empty:
  Print "No assets yet. Run honne first." and exit 0.

## Step 3: Load claims + evolutions

```bash
bash "${CLAUDE_PLUGIN_ROOT}/scripts/query-assets.sh" \
  --tag "<axis>" --scope "$SCOPE" --type claim --out stdout
```

```bash
bash "${CLAUDE_PLUGIN_ROOT}/scripts/query-assets.sh" \
  --type evolution --scope "$SCOPE" --out stdout
```

**Async wait pattern** — use Monitor until-loop, not `sleep N && cat`:
```bash
# ✓ Monitor: until [ -f ".honne/assets/claim.jsonl" ]
```

## Step 4: Time-bucket grouping

Group by axis × recorded_at bucket (YYYY-MM granularity for MVP).

## Step 5: Render docs/honne-compare.md (+ stdout)

Format per architecture PRD §4.2 compare Step 6.
No LLM unless the user asked for "summarize" — and even then, only cite-bound.

## Step 6: Asset immutability check

This skill MUST NOT write to .honne/assets/ or .honne/persona.json.
Verify (test): stat -c %Y on assets/*.jsonl before/after unchanged.

