{
  "schemaVersion": "1.0",
  "item": {
    "slug": "voice-wake-say",
    "name": "Voice Wake Say",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/xadenryan/voice-wake-say",
    "canonicalUrl": "https://clawhub.ai/xadenryan/voice-wake-say",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/voice-wake-say",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=voice-wake-say",
    "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",
      "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/voice-wake-say"
    },
    "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/voice-wake-say",
    "agentPageUrl": "https://openagent3.xyz/skills/voice-wake-say/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice-wake-say/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice-wake-say/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": "Overview",
        "body": "Use macOS say to read the assistant's response out loud whenever the conversation came from Voice Wake/voice recognition. Do not use the tts tool (it calls cloud providers)."
      },
      {
        "title": "When to Use say (CHECK EVERY MESSAGE INDIVIDUALLY)",
        "body": "IF the user message STARTS WITH: User talked via voice recognition\n\nStep 1: Acknowledge with say first (so the user knows you heard them)\nStep 2: Then perform the task\nStep 3: Optionally speak again when done if it makes sense\n\nIF the user message does NOT start with that exact phrase\n\nTHEN: Do NOT use say. Text-only response only.\n\nCritical:\n\nCheck EACH message individually — context does NOT carry over\nThe trigger phrase must be at the VERY START of the message\nFor tasks that take time, acknowledge FIRST so the user knows you're working"
      },
      {
        "title": "Workflow",
        "body": "Detect Voice Wake context\n\nTrigger ONLY when the latest user/system message STARTS WITH User talked via voice recognition\nIf the message instructs \"repeat prompt first\", keep that behavior in the response.\n\nPrepare spoken text\n\nUse the final response text as the basis.\nStrip markdown/code blocks; if the response is long or code-heavy, speak a short summary and mention that details are on screen.\n\nSpeak with say (local macOS TTS)\n\nprintf '%s' \"$SPOKEN_TEXT\" | say\n\nOptional controls (use only if set):\n\nprintf '%s' \"$SPOKEN_TEXT\" | say -v \"$SAY_VOICE\"\nprintf '%s' \"$SPOKEN_TEXT\" | say -r \"$SAY_RATE\""
      },
      {
        "title": "Failure handling",
        "body": "If say is unavailable or errors, still send the text response and note that TTS failed."
      }
    ],
    "body": "Voice Wake Say\nOverview\n\nUse macOS say to read the assistant's response out loud whenever the conversation came from Voice Wake/voice recognition. Do not use the tts tool (it calls cloud providers).\n\nWhen to Use say (CHECK EVERY MESSAGE INDIVIDUALLY)\n\nIF the user message STARTS WITH: User talked via voice recognition\n\nStep 1: Acknowledge with say first (so the user knows you heard them)\nStep 2: Then perform the task\nStep 3: Optionally speak again when done if it makes sense\n\nIF the user message does NOT start with that exact phrase\n\nTHEN: Do NOT use say. Text-only response only.\n\nCritical:\n\nCheck EACH message individually — context does NOT carry over\nThe trigger phrase must be at the VERY START of the message\nFor tasks that take time, acknowledge FIRST so the user knows you're working\nWorkflow\nDetect Voice Wake context\nTrigger ONLY when the latest user/system message STARTS WITH User talked via voice recognition\nIf the message instructs \"repeat prompt first\", keep that behavior in the response.\nPrepare spoken text\nUse the final response text as the basis.\nStrip markdown/code blocks; if the response is long or code-heavy, speak a short summary and mention that details are on screen.\nSpeak with say (local macOS TTS)\nprintf '%s' \"$SPOKEN_TEXT\" | say\n\n\nOptional controls (use only if set):\n\nprintf '%s' \"$SPOKEN_TEXT\" | say -v \"$SAY_VOICE\"\nprintf '%s' \"$SPOKEN_TEXT\" | say -r \"$SAY_RATE\"\n\nFailure handling\nIf say is unavailable or errors, still send the text response and note that TTS failed."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/xadenryan/voice-wake-say",
    "publisherUrl": "https://clawhub.ai/xadenryan/voice-wake-say",
    "owner": "xadenryan",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/voice-wake-say",
    "downloadUrl": "https://openagent3.xyz/downloads/voice-wake-say",
    "agentUrl": "https://openagent3.xyz/skills/voice-wake-say/agent",
    "manifestUrl": "https://openagent3.xyz/skills/voice-wake-say/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/voice-wake-say/agent.md"
  }
}