{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/perry-coding-agents",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=perry-coding-agents",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/perry-coding-agents",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Perry Coding Agents",
        "body": "Dispatch tasks to OpenCode/Claude Code on Perry workspaces."
      },
      {
        "title": "Rules",
        "body": "Always create dex task FIRST — before any dispatch, no exceptions\nNo hard timeouts — background dispatch, let agent run\nUse IPs — MagicDNS broken in containers (tailscale status for IPs)\nOne task per PR — same session continues until done\nReuse sessions — OpenCode keeps context in ~/.opencode/\nNever code directly — always dispatch to agents"
      },
      {
        "title": "Commands",
        "body": "# OpenCode (primary)\nssh -o StrictHostKeyChecking=no workspace@<IP> \"cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'task'\" &\n\n# Claude Code (needs TTY)\nssh -t workspace@<IP> \"cd ~/<project> && /home/workspace/.local/bin/claude 'task'\""
      },
      {
        "title": "Dispatch Pattern",
        "body": "WAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')\n\nssh -o StrictHostKeyChecking=no workspace@<IP> \"cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'Your task.\n\nWhen 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\\\\\\\"}\\\"\n'\" &"
      },
      {
        "title": "Task Tracking",
        "body": "Create task before dispatch with: workspace IP, branch, goal, done criteria.\nSame task until CI green. Complete with result summary."
      },
      {
        "title": "Example: Full PR Flow",
        "body": "# 1. Create task\n# Track: workspace feat1 (100.109.173.45), branch feat/auth, goal: add auth\n\n# 2. Get wake info\nWAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')\n\n# 3. Dispatch (background, no timeout)\nssh -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.\n\nWhen 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\\\\\\\"}\\\"\n'\" &\n\n# 4. Wake received → check CI\nssh workspace@100.109.173.45 \"cd ~/perry && gh pr checks 145\"\n\n# 5. CI fails → dispatch follow-up (same task, agent has context)\nssh -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.\n\nWhen fixed: curl -X POST http://${WAKE_IP}:18789/hooks/wake ...'\" &\n\n# 6. CI green → complete task with result"
      },
      {
        "title": "Troubleshooting",
        "body": "Can't reach: tailscale status | grep <name>\nCommands not found: Use full paths (/home/workspace/.opencode/bin/opencode)\nWake not firing: Check IP/token, test with curl"
      }
    ],
    "body": "Perry Coding Agents\n\nDispatch tasks to OpenCode/Claude Code on Perry workspaces.\n\nRules\nAlways create dex task FIRST — before any dispatch, no exceptions\nNo hard timeouts — background dispatch, let agent run\nUse IPs — MagicDNS broken in containers (tailscale status for IPs)\nOne task per PR — same session continues until done\nReuse sessions — OpenCode keeps context in ~/.opencode/\nNever code directly — always dispatch to agents\nCommands\n# OpenCode (primary)\nssh -o StrictHostKeyChecking=no workspace@<IP> \"cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'task'\" &\n\n# Claude Code (needs TTY)\nssh -t workspace@<IP> \"cd ~/<project> && /home/workspace/.local/bin/claude 'task'\"\n\nDispatch Pattern\nWAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')\n\nssh -o StrictHostKeyChecking=no workspace@<IP> \"cd ~/<project> && /home/workspace/.opencode/bin/opencode run 'Your task.\n\nWhen 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\\\\\\\"}\\\"\n'\" &\n\nTask Tracking\n\nCreate task before dispatch with: workspace IP, branch, goal, done criteria. Same task until CI green. Complete with result summary.\n\nExample: Full PR Flow\n# 1. Create task\n# Track: workspace feat1 (100.109.173.45), branch feat/auth, goal: add auth\n\n# 2. Get wake info\nWAKE_IP=$(tailscale status --self --json | jq -r '.Self.TailscaleIPs[0]')\n\n# 3. Dispatch (background, no timeout)\nssh -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.\n\nWhen 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\\\\\\\"}\\\"\n'\" &\n\n# 4. Wake received → check CI\nssh workspace@100.109.173.45 \"cd ~/perry && gh pr checks 145\"\n\n# 5. CI fails → dispatch follow-up (same task, agent has context)\nssh -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.\n\nWhen fixed: curl -X POST http://${WAKE_IP}:18789/hooks/wake ...'\" &\n\n# 6. CI green → complete task with result\n\nTroubleshooting\nCan't reach: tailscale status | grep <name>\nCommands not found: Use full paths (/home/workspace/.opencode/bin/opencode)\nWake not firing: Check IP/token, test with curl"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gricha/perry-coding-agents",
    "publisherUrl": "https://clawhub.ai/gricha/perry-coding-agents",
    "owner": "gricha",
    "version": "1.5.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}