Resume
Skill that gives AI coding agents persistent memory and quality enforcement
npx -y skills add mattjaikaran/meridian --skill resumeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.2 KB, as published. Nobody here has run it
/meridian:resume — Deterministic Resume
Generate and load a resume prompt from SQLite state. Start exactly where you left off.
Arguments
- (no args) — run pre-flight health check then generate resume prompt
--skip-health— skip the pre-flight health check
Procedure
Step 0: Pre-flight Health Check (skip if --skip-health)
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from pathlib import Path
from scripts.health import run_health_check
result = run_health_check(Path('.'), do_repair=False)
print(json.dumps(result, indent=2))
"
If status is "warning" or "error", surface the findings to the user before
continuing. Example output:
⚠ Health check found 2 warnings:
- Phase 'Build API' (id=3) has been executing for 7.2h — may be stuck
- Artifact dir '04-old-feature' has no DB phase record
Run
/meridian:health --repairto auto-fix, or continue with--skip-health.
If status is "ok", proceed silently.
Step 1: Generate Resume Prompt
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
from scripts.resume import generate_resume_prompt
print(generate_resume_prompt('.'))
"
Step 2: Display Resume
Print the full resume prompt so the agent can understand current state.
Step 3: Determine Next Action
The resume prompt always ends with a computed next action. Follow it:
activate_milestone→ Activate the planned milestonecreate_phases→ Run/meridian:plangather_context→ Dispatch context-gatherer subagentcreate_plans→ Generate plans for the phaseexecute→ Run/meridian:executeexecute_plan→ Execute the specific plan shownverify_phase→ Run acceptance criteria verificationreview_phase→ Run/meridian:reviewcomplete_phase→ Mark phase completecomplete_milestone→ Mark milestone completefix_failed_plan→ Debug and retry the failed planunblock_phase→ Address the blocker
Step 4: Announce Position
Tell the user where we are and what's next. Example:
Resuming MyApp — Phase 2: Features (executing) 2/4 plans complete. Next: execute "Add API routes" (wave 2). Ready to continue?