{
  "schemaVersion": "1.0",
  "item": {
    "slug": "protoss-voice",
    "name": "Generate Protoss-style (StarCraft) voice effects using SoX and FFmpeg.",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/vemec/protoss-voice",
    "canonicalUrl": "https://clawhub.ai/vemec/protoss-voice",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/protoss-voice",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=protoss-voice",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "protoss_fx.py",
      "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",
      "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/protoss-voice"
    },
    "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/protoss-voice",
    "agentPageUrl": "https://openagent3.xyz/skills/protoss-voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/protoss-voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/protoss-voice/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": "Protoss Voice Effect",
        "body": "Applies a \"Khala\" psionic transformation chain to audio files using the V9 \"Massive Void\" engine.\nModular Design: This skill does NOT generate speech. It transforms existing audio."
      },
      {
        "title": "Usage",
        "body": "Run the script on any input audio file (wav, mp3, ogg, etc):\n\npython3 skills/protoss-voice/protoss_fx.py <path_to_audio_file>\n\nOutput:\nCreates a new file with suffix _psionic.wav in the same directory."
      },
      {
        "title": "Agent Protocol & Behavior",
        "body": "When acting as a Protoss persona (e.g., Selendis, Artanis, Zeratul, etc), the agent should:\n\nGenerate/Record Base Audio:\n\nUse kokoro-tts (or any other TTS skill) to generate the raw speech.\nOR accept a user-provided recording.\n\n\nProcess (The \"Black Box\"):\n\nExecute protoss_fx.py on the raw file.\nDo not narrate this step unless debugging.\n\n\nDeliver Final Artifact:\n\nSend the processed file (_psionic) using the message tool.\nClean up raw/intermediate files silently if they are temporary."
      },
      {
        "title": "Integration Example (Kokoro)",
        "body": "# 1. Generate (Raw)\npython3 skills/kokoro-tts/speak.py \"En Taro Adun.\" -o raw.wav -v ef_dora\n\n# 2. Transform (Psionic)\npython3 skills/protoss-voice/protoss_fx.py raw.wav\n# Output: raw_psionic.wav\n\n# 3. Optimize for Transport (Telegram OGG)\nffmpeg -i raw_psionic.wav -c:a libopus -b:a 64k -vbr on final.ogg -y\n\n# 4. Send\nmessage(action=\"send\", media=\"final.ogg\", asVoice=true)"
      },
      {
        "title": "Requirements",
        "body": "Requires ffmpeg and sox (Sound eXchange).\n\nbrew install ffmpeg sox"
      }
    ],
    "body": "Protoss Voice Effect\n\nApplies a \"Khala\" psionic transformation chain to audio files using the V9 \"Massive Void\" engine. Modular Design: This skill does NOT generate speech. It transforms existing audio.\n\nUsage\n\nRun the script on any input audio file (wav, mp3, ogg, etc):\n\npython3 skills/protoss-voice/protoss_fx.py <path_to_audio_file>\n\n\nOutput: Creates a new file with suffix _psionic.wav in the same directory.\n\nAgent Protocol & Behavior\n\nWhen acting as a Protoss persona (e.g., Selendis, Artanis, Zeratul, etc), the agent should:\n\nGenerate/Record Base Audio:\nUse kokoro-tts (or any other TTS skill) to generate the raw speech.\nOR accept a user-provided recording.\nProcess (The \"Black Box\"):\nExecute protoss_fx.py on the raw file.\nDo not narrate this step unless debugging.\nDeliver Final Artifact:\nSend the processed file (_psionic) using the message tool.\nClean up raw/intermediate files silently if they are temporary.\nIntegration Example (Kokoro)\n# 1. Generate (Raw)\npython3 skills/kokoro-tts/speak.py \"En Taro Adun.\" -o raw.wav -v ef_dora\n\n# 2. Transform (Psionic)\npython3 skills/protoss-voice/protoss_fx.py raw.wav\n# Output: raw_psionic.wav\n\n# 3. Optimize for Transport (Telegram OGG)\nffmpeg -i raw_psionic.wav -c:a libopus -b:a 64k -vbr on final.ogg -y\n\n# 4. Send\nmessage(action=\"send\", media=\"final.ogg\", asVoice=true)\n\nRequirements\n\nRequires ffmpeg and sox (Sound eXchange).\n\nbrew install ffmpeg sox"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/vemec/protoss-voice",
    "publisherUrl": "https://clawhub.ai/vemec/protoss-voice",
    "owner": "vemec",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/protoss-voice",
    "downloadUrl": "https://openagent3.xyz/downloads/protoss-voice",
    "agentUrl": "https://openagent3.xyz/skills/protoss-voice/agent",
    "manifestUrl": "https://openagent3.xyz/skills/protoss-voice/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/protoss-voice/agent.md"
  }
}