{
  "schemaVersion": "1.0",
  "item": {
    "slug": "my-fitness-claw",
    "name": "My Fitness Claw",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Serg010101/my-fitness-claw",
    "canonicalUrl": "https://clawhub.ai/Serg010101/my-fitness-claw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/my-fitness-claw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=my-fitness-claw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "assets/canvas/index.html",
      "assets/canvas/offline_data.js",
      "assets/nutrition/daily_macros.json"
    ],
    "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-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/my-fitness-claw"
    },
    "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/my-fitness-claw",
    "agentPageUrl": "https://openagent3.xyz/skills/my-fitness-claw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-fitness-claw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-fitness-claw/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": "MyFitnessClaw",
        "body": "This skill manages your nutritional data and provides a visual dashboard for tracking macros and micronutrients using OpenClaw's native tools."
      },
      {
        "title": "Core Files (Skill Assets)",
        "body": "assets/nutrition/daily_macros.json: The structured log of daily intake.\nassets/nutrition/targets.json: Daily nutritional goals (calories, protein, carbs, fats, and 10 essential micronutrients).\nassets/nutrition/insights.json: AI-generated tips based on current progress.\nassets/nutrition/foods/common.md: A reference list of frequently eaten foods and their macros/micros.\nassets/canvas/index.html: The visual dashboard for the OpenClaw Canvas."
      },
      {
        "title": "Workflow: Logging Food",
        "body": "When the user mentions eating something:\n\nEstimate Macros & Micros: If the user doesn't provide them, estimate:\n\nMacros: Calories, protein, carbs, fats.\nMicros: Vitamin D3, Magnesium, Potassium, Zinc, Vitamin B6, Vitamin B12, Selenium, Vitamin C, Vitamin A, Vitamin E.\nCheck assets/nutrition/foods/common.md first.\n\n\nUpdate Daily Log (Canonical): Update assets/nutrition/daily_macros.json. Include the micros object for both individual meals and the daily total.\nUpdate Offline Mirror: Update assets/canvas/offline_data.js with the same data, ensuring micronutrients are included.\n\nOverwrite the file with: window.__OFFLINE_DAILY_MACROS = [...]; window.__OFFLINE_TARGETS = {...}; window.__OFFLINE_INSIGHTS = {...};\nThis ensures the dashboard works when opened via file:// (offline/browser-first).\n\n\nUpdate Memory: Log the meal in the agent's current daily memory file (e.g., memory/YYYY-MM-DD.md).\nShow Dashboard: Use canvas(action=present, url='skills/my-fitness-claw/assets/canvas/index.html') to show the updated dashboard inside OpenClaw.\nProvide Browser Access: After every log, provide the following message:\n\n📊 View in your browser:\n\nQuick: Open skills/my-fitness-claw/assets/canvas/index.html in your browser (uses offline mirror).\nFull: Run python -m http.server 8000 from the workspace root and visit http://localhost:8000/skills/my-fitness-claw/assets/canvas/index.html.\n\n\n\nGenerate Insights: Analyze progress against goals in assets/nutrition/targets.json and update assets/nutrition/insights.json.\n\nPersistence Rules:\n\nassets/nutrition/*.json: Canonical storage.\nassets/canvas/offline_data.js: Mirror for file:// viewing only.\nDo not modify assets/canvas/index.html during routine logging."
      },
      {
        "title": "Publishing Checklist (Public Safety)",
        "body": "Before publishing or sharing this skill:\n\nSanitize Data: Clear nutrition/daily_macros.json by setting it to [].\nSanitize Mirror: Clear canvas/offline_data.js to match the empty state: window.__OFFLINE_DAILY_MACROS = [];.\nCheck Insights: Clear nutrition/insights.json or reset to template tips.\nRemove Personal Notes: Scrub nutrition/targets.json and memory/ of any sensitive info.\nVerify Assets: Ensure no private images or documents are in the assets/ folder."
      }
    ],
    "body": "MyFitnessClaw\n\nThis skill manages your nutritional data and provides a visual dashboard for tracking macros and micronutrients using OpenClaw's native tools.\n\nCore Files (Skill Assets)\nassets/nutrition/daily_macros.json: The structured log of daily intake.\nassets/nutrition/targets.json: Daily nutritional goals (calories, protein, carbs, fats, and 10 essential micronutrients).\nassets/nutrition/insights.json: AI-generated tips based on current progress.\nassets/nutrition/foods/common.md: A reference list of frequently eaten foods and their macros/micros.\nassets/canvas/index.html: The visual dashboard for the OpenClaw Canvas.\nWorkflow: Logging Food\n\nWhen the user mentions eating something:\n\nEstimate Macros & Micros: If the user doesn't provide them, estimate:\nMacros: Calories, protein, carbs, fats.\nMicros: Vitamin D3, Magnesium, Potassium, Zinc, Vitamin B6, Vitamin B12, Selenium, Vitamin C, Vitamin A, Vitamin E. Check assets/nutrition/foods/common.md first.\nUpdate Daily Log (Canonical): Update assets/nutrition/daily_macros.json. Include the micros object for both individual meals and the daily total.\nUpdate Offline Mirror: Update assets/canvas/offline_data.js with the same data, ensuring micronutrients are included.\nOverwrite the file with: window.__OFFLINE_DAILY_MACROS = [...]; window.__OFFLINE_TARGETS = {...}; window.__OFFLINE_INSIGHTS = {...};\nThis ensures the dashboard works when opened via file:// (offline/browser-first).\nUpdate Memory: Log the meal in the agent's current daily memory file (e.g., memory/YYYY-MM-DD.md).\nShow Dashboard: Use canvas(action=present, url='skills/my-fitness-claw/assets/canvas/index.html') to show the updated dashboard inside OpenClaw.\nProvide Browser Access: After every log, provide the following message:\n\n📊 View in your browser:\n\nQuick: Open skills/my-fitness-claw/assets/canvas/index.html in your browser (uses offline mirror).\nFull: Run python -m http.server 8000 from the workspace root and visit http://localhost:8000/skills/my-fitness-claw/assets/canvas/index.html.\nGenerate Insights: Analyze progress against goals in assets/nutrition/targets.json and update assets/nutrition/insights.json.\n\nPersistence Rules:\n\nassets/nutrition/*.json: Canonical storage.\nassets/canvas/offline_data.js: Mirror for file:// viewing only.\nDo not modify assets/canvas/index.html during routine logging.\nPublishing Checklist (Public Safety)\n\nBefore publishing or sharing this skill:\n\nSanitize Data: Clear nutrition/daily_macros.json by setting it to [].\nSanitize Mirror: Clear canvas/offline_data.js to match the empty state: window.__OFFLINE_DAILY_MACROS = [];.\nCheck Insights: Clear nutrition/insights.json or reset to template tips.\nRemove Personal Notes: Scrub nutrition/targets.json and memory/ of any sensitive info.\nVerify Assets: Ensure no private images or documents are in the assets/ folder."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Serg010101/my-fitness-claw",
    "publisherUrl": "https://clawhub.ai/Serg010101/my-fitness-claw",
    "owner": "Serg010101",
    "version": "1.7.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/my-fitness-claw",
    "downloadUrl": "https://openagent3.xyz/downloads/my-fitness-claw",
    "agentUrl": "https://openagent3.xyz/skills/my-fitness-claw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/my-fitness-claw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/my-fitness-claw/agent.md"
  }
}