# Send Perry Coding Agents to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "perry-coding-agents",
    "name": "Perry Coding Agents",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/gricha/perry-coding-agents",
    "canonicalUrl": "https://clawhub.ai/gricha/perry-coding-agents",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/perry-coding-agents",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perry-coding-agents",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "perry-coding-agents",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T20:22:05.920Z",
      "expiresAt": "2026-05-07T20:22:05.920Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perry-coding-agents",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perry-coding-agents",
        "contentDisposition": "attachment; filename=\"perry-coding-agents-1.5.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "perry-coding-agents"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/perry-coding-agents"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/perry-coding-agents",
    "downloadUrl": "https://openagent3.xyz/downloads/perry-coding-agents",
    "agentUrl": "https://openagent3.xyz/skills/perry-coding-agents/agent",
    "manifestUrl": "https://openagent3.xyz/skills/perry-coding-agents/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/perry-coding-agents/agent.md"
  }
}
```
## Documentation

### Perry Coding Agents

Dispatch tasks to OpenCode/Claude Code on Perry workspaces.

### Rules

Always create dex task FIRST — before any dispatch, no exceptions
No hard timeouts — background dispatch, let agent run
Use IPs — MagicDNS broken in containers (tailscale status for IPs)
One task per PR — same session continues until done
Reuse sessions — OpenCode keeps context in ~/.opencode/
Never code directly — always dispatch to agents

### Commands

# OpenCode (primary)
ssh -o StrictHostKeyChecking=no workspace@<IP> "cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'task'" &

# Claude Code (needs TTY)
ssh -t workspace@<IP> "cd ~/<project> && /home/workspace/.local/bin/claude 'task'"

### Dispatch Pattern

WAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')

ssh -o StrictHostKeyChecking=no workspace@<IP> "cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'Your task.

When done: curl -X POST http://${WAKE_IP}:18789/hooks/wake -H \\"Content-Type: application/json\\" -H \\"Authorization: Bearer <hooks-token>\\" -d \\"{\\\\\\"text\\\\\\": \\\\\\"Done: summary\\\\\\", \\\\\\"mode\\\\\\": \\\\\\"now\\\\\\"}\\"
'" &

### Task Tracking

Create task before dispatch with: workspace IP, branch, goal, done criteria.
Same task until CI green. Complete with result summary.

### Example: Full PR Flow

# 1. Create task
# Track: workspace feat1 (100.109.173.45), branch feat/auth, goal: add auth

# 2. Get wake info
WAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')

# 3. Dispatch (background, no timeout)
ssh -o StrictHostKeyChecking=no workspace@100.109.173.45 "cd ~/perry && /home/workspace/.opencode/bin/opencode run 'Add bearer token auth to all API endpoints. Create PR when done.

When finished: curl -X POST http://${WAKE_IP}:18789/hooks/wake -H \\"Content-Type: application/json\\" -H \\"Authorization: Bearer <token>\\" -d \\"{\\\\\\"text\\\\\\": \\\\\\"Done: Auth PR created\\\\\\", \\\\\\"mode\\\\\\": \\\\\\"now\\\\\\"}\\"
'" &

# 4. Wake received → check CI
ssh workspace@100.109.173.45 "cd ~/perry && gh pr checks 145"

# 5. CI fails → dispatch follow-up (same task, agent has context)
ssh -o StrictHostKeyChecking=no workspace@100.109.173.45 "cd ~/perry && /home/workspace/.opencode/bin/opencode run 'CI failing: test/auth.test.ts line 42. Fix and push.

When fixed: curl -X POST http://${WAKE_IP}:18789/hooks/wake ...'" &

# 6. CI green → complete task with result

### Troubleshooting

Can't reach: tailscale status | grep <name>
Commands not found: Use full paths (/home/workspace/.opencode/bin/opencode)
Wake not firing: Check IP/token, test with curl
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: gricha
- Version: 1.5.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T20:22:05.920Z
- Expires at: 2026-05-07T20:22:05.920Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/perry-coding-agents)
- [Send to Agent page](https://openagent3.xyz/skills/perry-coding-agents/agent)
- [JSON manifest](https://openagent3.xyz/skills/perry-coding-agents/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/perry-coding-agents/agent.md)
- [Download page](https://openagent3.xyz/downloads/perry-coding-agents)