AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Dispatch

skill-mattjaikaran-meridian-dispatch · by mattjaikaran

A Claude skill from mattjaikaran/meridian.

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

Install

$ agentstack add skill-mattjaikaran-meridian-dispatch

✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mattjaikaran-meridian-dispatch)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Dispatch? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/meridian:dispatch — Remote Agent Dispatch

Send plans to a self-hosted AI agent for autonomous execution. The agent picks up the task, implements it, and creates a PR.

Compatible with any agent that implements the dispatch protocol (Nero, OpenClaw, Hermes, or custom).

Arguments

  • --plan — Dispatch specific plan
  • --phase — Dispatch all pending plans in phase
  • --swarm — Dispatch all pending plans at once (parallel PRs)
  • --status — Check dispatch status
  • --check-all — Check status of all active dispatches
  • --persona — Apply role-typed agent persona (pm, architect, ux, qa, security)

Prerequisites

  • Project must have nero_endpoint configured (set during /meridian:init)
  • Remote agent must be running and reachable
  • Plans must be in pending status

Persona Support

If --persona is passed, load the persona prompt and inject it into the dispatch payload so the remote agent operates through that role's lens.

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.personas import load_persona
persona = load_persona('')
print(json.dumps(persona, indent=2))
"

Available personas: pm, architect, ux, qa, security

Include the persona content as a persona_prompt field in the dispatch payload. Display the active persona in the dispatch banner:

## Dispatch — 
Persona:  ()

Procedure

Dispatch a Plan

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.dispatch import dispatch_plan
result = dispatch_plan('.', plan_id=)
print(json.dumps(result, indent=2, default=str))
"

Dispatch a Phase (Wave-Ordered)

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.dispatch import dispatch_phase
results = dispatch_phase('.', phase_id=)
print(json.dumps(results, indent=2, default=str))
"

Dispatch Phase Swarm (All Parallel)

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.dispatch import dispatch_phase
results = dispatch_phase('.', phase_id=, swarm=True)
print(json.dumps(results, indent=2, default=str))
"

Check Status

PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.dispatch import check_dispatch_status
result = check_dispatch_status('.', dispatch_id=)
print(json.dumps(result, indent=2, default=str))
"

Integration Notes

  • Agent endpoint: configured per-project (e.g. http://:7655)
  • Dispatches tracked in nero_dispatch table (name is historical)
  • Agent returns a task_id for tracking
  • Completed dispatches include pr_url
  • Export state after dispatch so the agent can read meridian-state.json
  • See references/remote-agent.md for the full protocol spec

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.