AgentStack
SKILL verified Apache-2.0 Self-run

Autonomous

skill-mattjaikaran-meridian-autonomous · by mattjaikaran

A Claude skill from mattjaikaran/meridian.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-mattjaikaran-meridian-autonomous

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Autonomous? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/meridian:autonomous — Hands-Free Execution

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

Arguments

  • --from — Start from this phase.
  • --to — Stop after this phase.
  • --only — 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)
  1. 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.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.