From agent-exchange
Deploys and orchestrates PicoClaw agents on remote hosts via SSH for parallel dispatch of fast, ephemeral one-shot tasks across a fleet.
npx claudepluginhub ericgrill/agents-skills-plugins --plugin anthropic-rust-analyzer-lspThis skill uses the workspace's default tool permissions.
Orchestrate a fleet of remote PicoClaw workers over SSH for fast, ephemeral one-shot tasks.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Orchestrate a fleet of remote PicoClaw workers over SSH for fast, ephemeral one-shot tasks.
Use this skill to deploy PicoClaw to remote machines, dispatch one-shot tasks, fan out work in parallel, and optionally tear workers down after completion.
scripts/deploy.sh — install/update PicoClaw on a hostscripts/dispatch.sh — run picoclaw agent -m "TASK" on a host and return stdoutscripts/fleet-status.sh — check host reachability and install readinessFleet config path:
~/.openclaw/workspace/config/picoclaw-fleet.jsonIf missing, create it with this default template:
{
"hosts": [
{
"name": "darth",
"host": "192.168.50.57",
"user": "eric",
"arch": "arm64",
"ssh_key": "~/.ssh/id_rsa"
}
],
"defaults": {
"provider": "anthropic",
"api_key_env": "ANTHROPIC_API_KEY"
}
}
Use scripts/deploy.sh <host> <user> <arch> [ssh_key].
Expected behavior:
EricGrill/picoclaw GitHub releasesamd64, arm64, riscv64)~/.local/bin/picoclaw~/.picoclaw/.env with provider + API key env valuepicoclaw onboardRequired envs before deploy:
ANTHROPIC_API_KEY (default) or whichever env is set by defaults.api_key_envPROVIDER (defaults to anthropic)API_KEY_ENV overrideUse scripts/dispatch.sh <host> <user> <task> [timeout_seconds].
Behavior:
picoclaw agent -m "TASK"For multi-task batches, dispatch to multiple hosts in background and wait for all:
scripts/dispatch.sh 192.168.50.57 eric "summarize logs" 120 > /tmp/darth.out 2>&1 &
scripts/dispatch.sh 192.168.50.58 eric "extract action items" 120 > /tmp/lobot.out 2>&1 &
wait
Then print each host output inline.
For single tasks:
scripts/fleet-status.shIf selected host is missing PicoClaw, run deploy first.
To remove PicoClaw after one-shot jobs:
ssh -i ~/.ssh/id_rsa eric@HOST 'rm -f ~/.local/bin/picoclaw ~/.picoclaw/.env'
Use teardown only when explicitly requested or for strict ephemeral execution workflows.
scripts/fleet-status.shscripts/deploy.sh ...scripts/dispatch.sh ...