{
  "schemaVersion": "1.0",
  "item": {
    "slug": "anova-skill",
    "name": "Anova Oven",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dodeja/anova-skill",
    "canonicalUrl": "https://clawhub.ai/dodeja/anova-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/anova-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=anova-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENTS.md",
      "README.md",
      "SKILL.md",
      "requirements.txt",
      "scripts/anova.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/anova-skill"
    },
    "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/anova-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/anova-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/anova-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/anova-skill/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Anova Oven & Precision Cooker Control",
        "body": "Control Anova WiFi devices including Precision Ovens (APO) and Precision Cookers (APC) via WebSocket API."
      },
      {
        "title": "Prerequisites",
        "body": "Personal Access Token from Anova app\n\nDownload Anova Oven app (iOS/Android)\nGo to: More → Developer → Personal Access Tokens\nCreate token (starts with anova-)\nStore in ~/.config/anova/token\n\n\n\nPython dependencies\npip3 install websockets\n\n\n\nDevice Setup\n\nAnova device connected to WiFi\nPaired with your Anova account"
      },
      {
        "title": "Installation",
        "body": "# Install Python dependency\npip3 install websockets\n\n# Store your token\nmkdir -p ~/.config/anova\necho \"anova-YOUR_TOKEN_HERE\" > ~/.config/anova/token\nchmod 600 ~/.config/anova/token"
      },
      {
        "title": "List Devices",
        "body": "python3 scripts/anova.py list"
      },
      {
        "title": "Basic Cooking",
        "body": "# Simple cook at 350°F for 30 minutes\npython3 scripts/anova.py cook --temp 350 --duration 30\n\n# Cook at 175°C for 45 minutes\npython3 scripts/anova.py cook --temp 175 --unit C --duration 45"
      },
      {
        "title": "Advanced Controls",
        "body": "Custom Elements:\n\n# Rear element only (low-temp slow cook)\npython3 scripts/anova.py cook --temp 225 --elements rear --duration 180\n\n# Bottom + rear (standard roasting)\npython3 scripts/anova.py cook --temp 375 --elements bottom,rear --duration 45\n\n# All elements (maximum heat)\npython3 scripts/anova.py cook --temp 450 --elements top,bottom,rear --duration 20\n\nCustom Fan Speed:\n\n# Low fan (gentle cooking)\npython3 scripts/anova.py cook --temp 250 --fan-speed 25 --duration 120\n\n# High fan (fast heat circulation)\npython3 scripts/anova.py cook --temp 400 --fan-speed 100 --duration 30\n\nProbe Cooking:\n\n# Cook to internal temperature (not time-based)\npython3 scripts/anova.py cook --temp 350 --probe-temp 165\n\n# Low-temp probe cook\npython3 scripts/anova.py cook --temp 225 --elements rear --fan-speed 25 --probe-temp 135\n\nCombined Advanced Settings:\n\n# Precision low-temp cook\npython3 scripts/anova.py cook --temp 225 --elements rear --fan-speed 25 --duration 180\n\n# High-heat sear\npython3 scripts/anova.py cook --temp 500 --elements top,bottom,rear --fan-speed 100 --duration 5"
      },
      {
        "title": "Stop Cooking",
        "body": "python3 scripts/anova.py stop"
      },
      {
        "title": "Monitor (Real-time Stream)",
        "body": "python3 scripts/anova.py monitor --monitor-duration 60"
      },
      {
        "title": "Natural Language Examples",
        "body": "Agent prompts:\n\n\"Preheat the oven to 375°F for roasting\"\n\"Start sous vide at 135°F for 2 hours\"\n\"What's the current oven temperature?\"\n\"Stop cooking\"\n\"Steam vegetables at 212°F for 15 minutes\""
      },
      {
        "title": "Anova Precision Oven (APO)",
        "body": "Sous vide cooking (wet bulb mode)\nRoasting (dry bulb mode)\nSteam cooking with humidity control\nTemperature control (C/F)\nReal-time status monitoring\nTelemetry export"
      },
      {
        "title": "Anova Precision Cooker (APC)",
        "body": "Sous vide cooking\nTemperature control\nTimer management\nReal-time status"
      },
      {
        "title": "API Reference",
        "body": "WebSocket Endpoint: Via Anova cloud service\nAuthentication: Personal Access Token (Bearer token)\nProtocol: WebSocket with JSON messages"
      },
      {
        "title": "Configuration",
        "body": "Token file: ~/.config/anova/token\nDefault device: First device found (or specify with --device-id)"
      },
      {
        "title": "Troubleshooting",
        "body": "\"No token found\":\n\necho \"anova-YOUR_TOKEN\" > ~/.config/anova/token\n\n\"No devices found\":\n\nCheck device is online in Anova app\nVerify WiFi connection\nGenerate new token\n\n\"Connection failed\":\n\nCheck internet connection\nVerify token is valid\nEnsure device is paired with account"
      },
      {
        "title": "Safety Notes",
        "body": "Always verify temperature before starting long cooks\nUse timers to prevent overcooking\nMonitor remotely but check in-person for safety\nDefault timeout: 4 hours max"
      },
      {
        "title": "References",
        "body": "Anova Developer Portal\nGitHub: anova-wifi-device-controller"
      }
    ],
    "body": "Anova Oven & Precision Cooker Control\n\nControl Anova WiFi devices including Precision Ovens (APO) and Precision Cookers (APC) via WebSocket API.\n\nPrerequisites\n\nPersonal Access Token from Anova app\n\nDownload Anova Oven app (iOS/Android)\nGo to: More → Developer → Personal Access Tokens\nCreate token (starts with anova-)\nStore in ~/.config/anova/token\n\nPython dependencies\n\npip3 install websockets\n\n\nDevice Setup\n\nAnova device connected to WiFi\nPaired with your Anova account\nInstallation\n# Install Python dependency\npip3 install websockets\n\n# Store your token\nmkdir -p ~/.config/anova\necho \"anova-YOUR_TOKEN_HERE\" > ~/.config/anova/token\nchmod 600 ~/.config/anova/token\n\nUsage\nList Devices\npython3 scripts/anova.py list\n\nBasic Cooking\n# Simple cook at 350°F for 30 minutes\npython3 scripts/anova.py cook --temp 350 --duration 30\n\n# Cook at 175°C for 45 minutes\npython3 scripts/anova.py cook --temp 175 --unit C --duration 45\n\nAdvanced Controls\n\nCustom Elements:\n\n# Rear element only (low-temp slow cook)\npython3 scripts/anova.py cook --temp 225 --elements rear --duration 180\n\n# Bottom + rear (standard roasting)\npython3 scripts/anova.py cook --temp 375 --elements bottom,rear --duration 45\n\n# All elements (maximum heat)\npython3 scripts/anova.py cook --temp 450 --elements top,bottom,rear --duration 20\n\n\nCustom Fan Speed:\n\n# Low fan (gentle cooking)\npython3 scripts/anova.py cook --temp 250 --fan-speed 25 --duration 120\n\n# High fan (fast heat circulation)\npython3 scripts/anova.py cook --temp 400 --fan-speed 100 --duration 30\n\n\nProbe Cooking:\n\n# Cook to internal temperature (not time-based)\npython3 scripts/anova.py cook --temp 350 --probe-temp 165\n\n# Low-temp probe cook\npython3 scripts/anova.py cook --temp 225 --elements rear --fan-speed 25 --probe-temp 135\n\n\nCombined Advanced Settings:\n\n# Precision low-temp cook\npython3 scripts/anova.py cook --temp 225 --elements rear --fan-speed 25 --duration 180\n\n# High-heat sear\npython3 scripts/anova.py cook --temp 500 --elements top,bottom,rear --fan-speed 100 --duration 5\n\nStop Cooking\npython3 scripts/anova.py stop\n\nMonitor (Real-time Stream)\npython3 scripts/anova.py monitor --monitor-duration 60\n\nNatural Language Examples\n\nAgent prompts:\n\n\"Preheat the oven to 375°F for roasting\"\n\"Start sous vide at 135°F for 2 hours\"\n\"What's the current oven temperature?\"\n\"Stop cooking\"\n\"Steam vegetables at 212°F for 15 minutes\"\nFeatures\nAnova Precision Oven (APO)\nSous vide cooking (wet bulb mode)\nRoasting (dry bulb mode)\nSteam cooking with humidity control\nTemperature control (C/F)\nReal-time status monitoring\nTelemetry export\nAnova Precision Cooker (APC)\nSous vide cooking\nTemperature control\nTimer management\nReal-time status\nAPI Reference\n\nWebSocket Endpoint: Via Anova cloud service Authentication: Personal Access Token (Bearer token) Protocol: WebSocket with JSON messages\n\nConfiguration\n\nToken file: ~/.config/anova/token Default device: First device found (or specify with --device-id)\n\nTroubleshooting\n\n\"No token found\":\n\necho \"anova-YOUR_TOKEN\" > ~/.config/anova/token\n\n\n\"No devices found\":\n\nCheck device is online in Anova app\nVerify WiFi connection\nGenerate new token\n\n\"Connection failed\":\n\nCheck internet connection\nVerify token is valid\nEnsure device is paired with account\nSafety Notes\nAlways verify temperature before starting long cooks\nUse timers to prevent overcooking\nMonitor remotely but check in-person for safety\nDefault timeout: 4 hours max\nReferences\nAnova Developer Portal\nGitHub: anova-wifi-device-controller"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dodeja/anova-skill",
    "publisherUrl": "https://clawhub.ai/dodeja/anova-skill",
    "owner": "dodeja",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/anova-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/anova-skill",
    "agentUrl": "https://openagent3.xyz/skills/anova-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/anova-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/anova-skill/agent.md"
  }
}