{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hokipoki",
    "name": "HokiPoki",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/budjoskop/hokipoki",
    "canonicalUrl": "https://clawhub.ai/budjoskop/hokipoki",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hokipoki",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hokipoki",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/commands.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/hokipoki"
    },
    "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/hokipoki",
    "agentPageUrl": "https://openagent3.xyz/skills/hokipoki/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hokipoki/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hokipoki/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": "HokiPoki Skill",
        "body": "Route tasks to different AI CLIs (Claude, Codex, Gemini) via the HokiPoki P2P network. API keys never leave the provider's machine; only encrypted requests and results are exchanged."
      },
      {
        "title": "Prerequisites",
        "body": "HokiPoki CLI must be installed and authenticated:\n\nnpm install -g @next-halo/hokipoki-cli\nhokipoki login\n\nVerify with hokipoki whoami. If not installed, guide the user through setup."
      },
      {
        "title": "Requesting Help from Another AI",
        "body": "Send a task to a remote AI model. Always use --json for parseable output:\n\n# Specific files\nhokipoki request --tool claude --task \"Fix the auth bug\" --files src/auth.ts --json\n\n# Entire directory\nhokipoki request --tool codex --task \"Add error handling\" --dir src/services/ --json\n\n# Whole project (respects .gitignore)\nhokipoki request --tool gemini --task \"Review for security issues\" --all --json\n\n# Route to a team workspace\nhokipoki request --tool claude --task \"Optimize queries\" --files src/db.ts --workspace my-team --json\n\n# Skip auto-apply (just save the patch)\nhokipoki request --tool codex --task \"Refactor module\" --dir src/ --no-auto-apply --json\n\nTool selection: if the user doesn't specify a tool, ask which model to use or omit --tool to let HokiPoki choose."
      },
      {
        "title": "Patch Auto-Apply",
        "body": "Patches auto-apply when the target directory is a git repo with committed files. If auto-apply fails, inform the user and suggest:\n\ngit init && git add . && git commit -m \"initial\""
      },
      {
        "title": "Provider Mode (Sharing Your AI)",
        "body": "Register and listen for incoming requests:\n\n# Register as a provider (one-time)\nhokipoki register --as-provider --tools claude codex gemini\n\n# Start listening\nhokipoki listen --tools claude codex\n\nTasks execute in isolated Docker containers (read-only filesystem, tmpfs workspace, auto-cleanup). Docker must be running."
      },
      {
        "title": "Status & Account",
        "body": "hokipoki whoami      # Current user info\nhokipoki status      # Account, workspaces, history\nhokipoki dashboard   # Open web dashboard in browser"
      },
      {
        "title": "When to Suggest Hopping",
        "body": "User is stuck on a problem after multiple attempts\nUser asks for a different approach or fresh perspective\nTask involves a domain where another model excels (e.g., Codex for boilerplate, Gemini for large-context analysis)\nUser explicitly asks to try another AI"
      },
      {
        "title": "Full Command Reference",
        "body": "See references/commands.md for all CLI options, auth token locations, and advanced usage."
      }
    ],
    "body": "HokiPoki Skill\n\nRoute tasks to different AI CLIs (Claude, Codex, Gemini) via the HokiPoki P2P network. API keys never leave the provider's machine; only encrypted requests and results are exchanged.\n\nPrerequisites\n\nHokiPoki CLI must be installed and authenticated:\n\nnpm install -g @next-halo/hokipoki-cli\nhokipoki login\n\n\nVerify with hokipoki whoami. If not installed, guide the user through setup.\n\nRequesting Help from Another AI\n\nSend a task to a remote AI model. Always use --json for parseable output:\n\n# Specific files\nhokipoki request --tool claude --task \"Fix the auth bug\" --files src/auth.ts --json\n\n# Entire directory\nhokipoki request --tool codex --task \"Add error handling\" --dir src/services/ --json\n\n# Whole project (respects .gitignore)\nhokipoki request --tool gemini --task \"Review for security issues\" --all --json\n\n# Route to a team workspace\nhokipoki request --tool claude --task \"Optimize queries\" --files src/db.ts --workspace my-team --json\n\n# Skip auto-apply (just save the patch)\nhokipoki request --tool codex --task \"Refactor module\" --dir src/ --no-auto-apply --json\n\n\nTool selection: if the user doesn't specify a tool, ask which model to use or omit --tool to let HokiPoki choose.\n\nPatch Auto-Apply\n\nPatches auto-apply when the target directory is a git repo with committed files. If auto-apply fails, inform the user and suggest:\n\ngit init && git add . && git commit -m \"initial\"\n\nProvider Mode (Sharing Your AI)\n\nRegister and listen for incoming requests:\n\n# Register as a provider (one-time)\nhokipoki register --as-provider --tools claude codex gemini\n\n# Start listening\nhokipoki listen --tools claude codex\n\n\nTasks execute in isolated Docker containers (read-only filesystem, tmpfs workspace, auto-cleanup). Docker must be running.\n\nStatus & Account\nhokipoki whoami      # Current user info\nhokipoki status      # Account, workspaces, history\nhokipoki dashboard   # Open web dashboard in browser\n\nWhen to Suggest Hopping\nUser is stuck on a problem after multiple attempts\nUser asks for a different approach or fresh perspective\nTask involves a domain where another model excels (e.g., Codex for boilerplate, Gemini for large-context analysis)\nUser explicitly asks to try another AI\nFull Command Reference\n\nSee references/commands.md for all CLI options, auth token locations, and advanced usage."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/budjoskop/hokipoki",
    "publisherUrl": "https://clawhub.ai/budjoskop/hokipoki",
    "owner": "budjoskop",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hokipoki",
    "downloadUrl": "https://openagent3.xyz/downloads/hokipoki",
    "agentUrl": "https://openagent3.xyz/skills/hokipoki/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hokipoki/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hokipoki/agent.md"
  }
}