{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pest-disease-tracker",
    "name": "Pest & Disease Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/johstracke/pest-disease-tracker",
    "canonicalUrl": "https://clawhub.ai/johstracke/pest-disease-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pest-disease-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pest-disease-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/pest_tracker.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. 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-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/pest-disease-tracker"
    },
    "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/pest-disease-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/pest-disease-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pest-disease-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pest-disease-tracker/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": "Pest & Disease Tracker",
        "body": "Track and manage garden pests and diseases with treatment tracking."
      },
      {
        "title": "Add a pest or disease",
        "body": "pest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes,peppers\""
      },
      {
        "title": "Record treatment",
        "body": "pest_tracker.py treat \"<id>\" --method \"<method>\" --product \"<product>\" --notes \"<notes>\""
      },
      {
        "title": "List all issues",
        "body": "pest_tracker.py list"
      },
      {
        "title": "Show problem details",
        "body": "pest_tracker.py show \"<id>\""
      },
      {
        "title": "Search issues",
        "body": "pest_tracker.py search \"<query>\""
      },
      {
        "title": "Get treatment recommendations",
        "body": "pest_tracker.py recommend \"<problem>\""
      },
      {
        "title": "Export data",
        "body": "pest_tracker.py export \"<output_file>\""
      },
      {
        "title": "For pest identification and tracking",
        "body": "# Add pest sightings\npest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes\" --severity \"moderate\"\npest_tracker.py add --type \"pest\" --name \"slugs\" --plants \"lettuce,hostas\" --severity \"high\"\n\n# Get treatment recommendations\npest_tracker.py recommend \"aphids\"\n# Output: Neem oil, insecticidal soap, ladybugs\n\n# Record treatments\npest_tracker.py treat <id> --method \"spray\" --product \"neem oil\" --notes \"Apply in evening, reapply in 7 days\"\npest_tracker.py treat <id> --method \"natural\" --product \"ladybugs\" --notes \"Released 100 ladybugs\""
      },
      {
        "title": "For disease management",
        "body": "# Add diseases\npest_tracker.py add --type \"disease\" --name \"early blight\" --plants \"tomatoes\" --severity \"critical\"\npest_tracker.py add --type \"disease\" --name \"powdery mildew\" --plants \"squash\" --severity \"moderate\"\n\n# Get treatment options\npest_tracker.py recommend \"early blight\"\n# Output: Copper fungicide, remove affected leaves, improve air circulation\n\n# Track treatment effectiveness\npest_tracker.py treat <id> --method \"remove\" --product \"fungicide\" --status \"effective\""
      },
      {
        "title": "For preventive planning",
        "body": "# Document common issues in your garden\npest_tracker.py add --type \"pest\" --name \"cucumber beetles\" --plants \"cucumbers,melons\" --severity \"low\" --notes \"Prevent with row covers\"\n\n# Set up prevention schedule\npest_tracker.py recommend \"cucumber beetles\"\n# Output: Row covers, beneficial nematodes, crop rotation"
      },
      {
        "title": "Common Pests",
        "body": "Aphids - Small sap-suckers, distort new growth\nSlugs - Eat leaves, leave slime trails\nCaterpillars - Eat foliage and fruit\nCucumber Beetles - Chew leaves, spread wilt disease\nJapanese Beetles - Skeletonize leaves\nSquash Bugs - Pierce stems, cause wilting\nSpider Mites - Webbing, yellow stippling\nThrips - Scarring, distorted growth\nWhiteflies - Yellow leaves, sticky honeydew"
      },
      {
        "title": "Common Diseases",
        "body": "Early Blight - Dark spots on tomatoes\nLate Blight - White fuzzy growth\nPowdery Mildew - White powdery coating\nDowny Mildew - Yellow patches, purple growth\nBlossom End Rot - Blossoms fall off\nVerticillium Wilt - Plants wilt and die\nBacterial Spot - Water-soaked spots\nAnthracnose - Sunken lesions"
      },
      {
        "title": "Organic/Natural Treatments",
        "body": "Neem Oil - Broad-spectrum insecticide, safe for beneficials\nInsecticidal Soap - Kills soft-bodied insects on contact\nDiatomaceous Earth - Mechanical insect control\nBacillus thuringiensis - Bt for caterpillars\nCopper Fungicide - Organic disease control\nSulfur Fungicide - Powdery mildew control\nCompost Tea - Boosts plant immunity\nBeneficial Insects - Ladybugs, lacewings, parasitic wasps\nBarriers - Row covers, collars, netting"
      },
      {
        "title": "Chemical Treatments",
        "body": "Pyrethrin - Synthetic insecticide\nImidacloprid - Systemic insecticide\nChlorothalonil - Broad-spectrum fungicide\nMancozeb - Multi-site fungicide\nCaptan - Seed treatment and fungicide\n\nAlways follow label directions and safety precautions."
      },
      {
        "title": "Severity Levels",
        "body": "LevelDescriptionAction TimelinelowMinor annoyance, limited damageTreat within 7 daysmoderateNoticeable damage, spreadingTreat within 3-5 dayshighSignificant damage, severe impactTreat within 1-2 dayscriticalPlant death or total crop lossTreat immediately"
      },
      {
        "title": "Aphid outbreak on tomatoes",
        "body": "# Add the problem\npest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes\" --severity \"high\" \\\n  --notes \"Found on new growth, honeydew present\"\n\n# Get treatment options\npest_tracker.py recommend \"aphids\"\n# Output: Neem oil, insecticidal soap, ladybugs, strong water spray\n\n# Apply treatment\npest_tracker.py treat <id> --method \"spray\" --product \"neem oil\" \\\n  --notes \"Spray every 2-3 days for 2 weeks, apply in evening\""
      },
      {
        "title": "Early blight on tomatoes",
        "body": "# Add disease\npest_tracker.py add --type \"disease\" --name \"early blight\" --plants \"tomatoes\" --severity \"critical\" \\\n  --notes \"Found on lower leaves, rainy weather, needs immediate action\"\n\n# Get recommendations\npest_tracker.py recommend \"early blight\"\n# Output: Copper fungicide, remove affected leaves, improve air circulation, avoid overhead watering\n\n# Apply treatment\npest_tracker.py treat <id> --method \"remove\" --product \"copper fungicide\" \\\n  --notes \"Applied fungicide, removed worst leaves, spaced plants for airflow\""
      },
      {
        "title": "Slug problem on lettuce",
        "body": "# Add pest\npest_tracker.py add --type \"pest\" --name \"slugs\" --plants \"lettuce,hostas\" --severity \"moderate\" \\\n  --notes \"Slime trails visible, holes in leaves\"\n\n# Get options\npest_tracker.py recommend \"slugs\"\n# Output: Beer traps, diatomaceous earth, copper tape, beneficial nematodes\n\n# Set up traps\npest_tracker.py treat <id> --method \"traps\" --product \"beer traps\" \\\n  --notes \"Set up 5 beer traps around bed, check daily\""
      },
      {
        "title": "Search Features",
        "body": "Search by problem name\nFilter by type (pest/disease)\nSearch by affected plants\nView treatment history\nTrack treatment effectiveness"
      },
      {
        "title": "Path Validation",
        "body": "The export function validates output paths to prevent malicious writes:\n\n✅ Allowed: ~/.openclaw/workspace/, /tmp/, and home directory\n❌ Blocked: System paths (/etc/, /usr/, /var/, etc.)\n❌ Blocked: Sensitive dotfiles (~/.bashrc, ~/.ssh, etc.)"
      },
      {
        "title": "Data Storage",
        "body": "Pest data stored in: ~/.openclaw/workspace/pest_tracker_db.json\nEach problem tracks: type, name, affected plants, severity, treatments, status\nTreatment history includes: method, product, date, effectiveness, notes\nJSON format makes it easy to backup or migrate"
      },
      {
        "title": "Best Practices",
        "body": "Identify early - Treat problems before they spread\nMonitor regularly - Check plants daily during growing season\nUse IPM - Integrated Pest Management combines methods for best results\nDocument treatments - Track what worked and what didn't\nPrevent first - Barriers and beneficials reduce need for treatments\nRotate treatments - Prevent pest resistance\nFollow labels - Chemical treatments need proper application\nImprove conditions - Many problems thrive in stressed plants"
      },
      {
        "title": "Prevent Pests",
        "body": "Crop rotation - Breaks pest life cycles\nBarriers - Row covers, netting, collars\nBeneficial insects - Ladybugs, lacewings, praying mantises\nClean garden - Remove debris that harbors pests\nCompanion planting - Repel pests with specific plants"
      },
      {
        "title": "Prevent Diseases",
        "body": "Water correctly - Avoid wetting foliage\nImprove airflow - Space plants properly, prune regularly\nClean tools - Disinfect between plants\nUse disease-resistant varieties - When available\nSanitize soil - Solarization, crop rotation"
      },
      {
        "title": "Related Skills",
        "body": "plant-tracker - Track individual plants and care schedules\nseasonal-planting-guide - What to plant when, by zone\ngarden-layout-planner - Design gardens with companion planting\n\nUse together for complete garden management!"
      }
    ],
    "body": "Pest & Disease Tracker\n\nTrack and manage garden pests and diseases with treatment tracking.\n\nQuick Start\nAdd a pest or disease\npest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes,peppers\"\n\nRecord treatment\npest_tracker.py treat \"<id>\" --method \"<method>\" --product \"<product>\" --notes \"<notes>\"\n\nList all issues\npest_tracker.py list\n\nShow problem details\npest_tracker.py show \"<id>\"\n\nSearch issues\npest_tracker.py search \"<query>\"\n\nGet treatment recommendations\npest_tracker.py recommend \"<problem>\"\n\nExport data\npest_tracker.py export \"<output_file>\"\n\nUsage Patterns\nFor pest identification and tracking\n# Add pest sightings\npest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes\" --severity \"moderate\"\npest_tracker.py add --type \"pest\" --name \"slugs\" --plants \"lettuce,hostas\" --severity \"high\"\n\n# Get treatment recommendations\npest_tracker.py recommend \"aphids\"\n# Output: Neem oil, insecticidal soap, ladybugs\n\n# Record treatments\npest_tracker.py treat <id> --method \"spray\" --product \"neem oil\" --notes \"Apply in evening, reapply in 7 days\"\npest_tracker.py treat <id> --method \"natural\" --product \"ladybugs\" --notes \"Released 100 ladybugs\"\n\nFor disease management\n# Add diseases\npest_tracker.py add --type \"disease\" --name \"early blight\" --plants \"tomatoes\" --severity \"critical\"\npest_tracker.py add --type \"disease\" --name \"powdery mildew\" --plants \"squash\" --severity \"moderate\"\n\n# Get treatment options\npest_tracker.py recommend \"early blight\"\n# Output: Copper fungicide, remove affected leaves, improve air circulation\n\n# Track treatment effectiveness\npest_tracker.py treat <id> --method \"remove\" --product \"fungicide\" --status \"effective\"\n\nFor preventive planning\n# Document common issues in your garden\npest_tracker.py add --type \"pest\" --name \"cucumber beetles\" --plants \"cucumbers,melons\" --severity \"low\" --notes \"Prevent with row covers\"\n\n# Set up prevention schedule\npest_tracker.py recommend \"cucumber beetles\"\n# Output: Row covers, beneficial nematodes, crop rotation\n\nProblem Types\nCommon Pests\nAphids - Small sap-suckers, distort new growth\nSlugs - Eat leaves, leave slime trails\nCaterpillars - Eat foliage and fruit\nCucumber Beetles - Chew leaves, spread wilt disease\nJapanese Beetles - Skeletonize leaves\nSquash Bugs - Pierce stems, cause wilting\nSpider Mites - Webbing, yellow stippling\nThrips - Scarring, distorted growth\nWhiteflies - Yellow leaves, sticky honeydew\nCommon Diseases\nEarly Blight - Dark spots on tomatoes\nLate Blight - White fuzzy growth\nPowdery Mildew - White powdery coating\nDowny Mildew - Yellow patches, purple growth\nBlossom End Rot - Blossoms fall off\nVerticillium Wilt - Plants wilt and die\nBacterial Spot - Water-soaked spots\nAnthracnose - Sunken lesions\nTreatment Recommendations\nOrganic/Natural Treatments\nNeem Oil - Broad-spectrum insecticide, safe for beneficials\nInsecticidal Soap - Kills soft-bodied insects on contact\nDiatomaceous Earth - Mechanical insect control\nBacillus thuringiensis - Bt for caterpillars\nCopper Fungicide - Organic disease control\nSulfur Fungicide - Powdery mildew control\nCompost Tea - Boosts plant immunity\nBeneficial Insects - Ladybugs, lacewings, parasitic wasps\nBarriers - Row covers, collars, netting\nChemical Treatments\nPyrethrin - Synthetic insecticide\nImidacloprid - Systemic insecticide\nChlorothalonil - Broad-spectrum fungicide\nMancozeb - Multi-site fungicide\nCaptan - Seed treatment and fungicide\n\nAlways follow label directions and safety precautions.\n\nSeverity Levels\nLevel\tDescription\tAction Timeline\nlow\tMinor annoyance, limited damage\tTreat within 7 days\nmoderate\tNoticeable damage, spreading\tTreat within 3-5 days\nhigh\tSignificant damage, severe impact\tTreat within 1-2 days\ncritical\tPlant death or total crop loss\tTreat immediately\nExamples\nAphid outbreak on tomatoes\n# Add the problem\npest_tracker.py add --type \"pest\" --name \"aphids\" --plants \"tomatoes\" --severity \"high\" \\\n  --notes \"Found on new growth, honeydew present\"\n\n# Get treatment options\npest_tracker.py recommend \"aphids\"\n# Output: Neem oil, insecticidal soap, ladybugs, strong water spray\n\n# Apply treatment\npest_tracker.py treat <id> --method \"spray\" --product \"neem oil\" \\\n  --notes \"Spray every 2-3 days for 2 weeks, apply in evening\"\n\nEarly blight on tomatoes\n# Add disease\npest_tracker.py add --type \"disease\" --name \"early blight\" --plants \"tomatoes\" --severity \"critical\" \\\n  --notes \"Found on lower leaves, rainy weather, needs immediate action\"\n\n# Get recommendations\npest_tracker.py recommend \"early blight\"\n# Output: Copper fungicide, remove affected leaves, improve air circulation, avoid overhead watering\n\n# Apply treatment\npest_tracker.py treat <id> --method \"remove\" --product \"copper fungicide\" \\\n  --notes \"Applied fungicide, removed worst leaves, spaced plants for airflow\"\n\nSlug problem on lettuce\n# Add pest\npest_tracker.py add --type \"pest\" --name \"slugs\" --plants \"lettuce,hostas\" --severity \"moderate\" \\\n  --notes \"Slime trails visible, holes in leaves\"\n\n# Get options\npest_tracker.py recommend \"slugs\"\n# Output: Beer traps, diatomaceous earth, copper tape, beneficial nematodes\n\n# Set up traps\npest_tracker.py treat <id> --method \"traps\" --product \"beer traps\" \\\n  --notes \"Set up 5 beer traps around bed, check daily\"\n\nSearch Features\nSearch by problem name\nFilter by type (pest/disease)\nSearch by affected plants\nView treatment history\nTrack treatment effectiveness\nSecurity\nPath Validation\n\nThe export function validates output paths to prevent malicious writes:\n\n✅ Allowed: ~/.openclaw/workspace/, /tmp/, and home directory\n❌ Blocked: System paths (/etc/, /usr/, /var/, etc.)\n❌ Blocked: Sensitive dotfiles (~/.bashrc, ~/.ssh, etc.)\nData Storage\nPest data stored in: ~/.openclaw/workspace/pest_tracker_db.json\nEach problem tracks: type, name, affected plants, severity, treatments, status\nTreatment history includes: method, product, date, effectiveness, notes\nJSON format makes it easy to backup or migrate\nBest Practices\nIdentify early - Treat problems before they spread\nMonitor regularly - Check plants daily during growing season\nUse IPM - Integrated Pest Management combines methods for best results\nDocument treatments - Track what worked and what didn't\nPrevent first - Barriers and beneficials reduce need for treatments\nRotate treatments - Prevent pest resistance\nFollow labels - Chemical treatments need proper application\nImprove conditions - Many problems thrive in stressed plants\nPrevention Tips\nPrevent Pests\nCrop rotation - Breaks pest life cycles\nBarriers - Row covers, netting, collars\nBeneficial insects - Ladybugs, lacewings, praying mantises\nClean garden - Remove debris that harbors pests\nCompanion planting - Repel pests with specific plants\nPrevent Diseases\nWater correctly - Avoid wetting foliage\nImprove airflow - Space plants properly, prune regularly\nClean tools - Disinfect between plants\nUse disease-resistant varieties - When available\nSanitize soil - Solarization, crop rotation\nRelated Skills\nplant-tracker - Track individual plants and care schedules\nseasonal-planting-guide - What to plant when, by zone\ngarden-layout-planner - Design gardens with companion planting\n\nUse together for complete garden management!"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/johstracke/pest-disease-tracker",
    "publisherUrl": "https://clawhub.ai/johstracke/pest-disease-tracker",
    "owner": "johstracke",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pest-disease-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/pest-disease-tracker",
    "agentUrl": "https://openagent3.xyz/skills/pest-disease-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pest-disease-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pest-disease-tracker/agent.md"
  }
}