agentsclimarketplace

Autonomous

Skill mattjaikaran/meridian/skills/autonomous

Skill that gives AI coding agents persistent memory and quality enforcement

Install
npx -y skills add mattjaikaran/meridian --skill autonomous

Assembled 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

1.5 KB, as published. Nobody here has run it

/meridian:autonomous — Hands-Free Execution

Run discuss→plan→execute for each remaining phase without manual intervention.

Arguments

  • --from <phase_id> — Start from this phase.
  • --to <phase_id> — Stop after this phase.
  • --only <phase_id> — Run a single phase autonomously.

Keywords

autonomous, auto, hands-free, unattended, run all, batch execute

Procedure

  1. Plan the run — Determine which phases need processing.
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.db import open_project
from scripts.autonomous import plan_autonomous_run
from scripts.state import get_status
with open_project('.') as conn:
    status = get_status(conn)
    ms = status.get('active_milestone')
    if not ms:
        print('ERROR: No active milestone')
    else:
        result = plan_autonomous_run(conn, ms['id'])
        print(json.dumps(result, default=str, indent=2))
"
  1. For each phase, determine the next step and dispatch:

    • discuss → Run /meridian:discuss --auto for the phase
    • plan → Run /meridian:plan for the phase
    • execute → Run /meridian:execute for the phase
    • verify → Transition to reviewing
    • complete → Skip (already done)
  2. On failure, stop the loop and report which phase/step failed with error context. The state is resumable — running /meridian:autonomous again picks up where it left off.

Output

Show progress per phase: phase name, current step, result. On completion, show summary of phases processed.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.