Install
$ agentstack add skill-mattjaikaran-meridian-autonomous ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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
- 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))
"
- For each phase, determine the next step and dispatch:
discuss→ Run/meridian:discuss --autofor the phaseplan→ Run/meridian:planfor the phaseexecute→ Run/meridian:executefor the phaseverify→ Transition to reviewingcomplete→ Skip (already done)
- On failure, stop the loop and report which phase/step failed with error context. The state is resumable — running
/meridian:autonomousagain 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.
- Author: mattjaikaran
- Source: mattjaikaran/meridian
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.