{
  "schemaVersion": "1.0",
  "item": {
    "slug": "garden",
    "name": "Garden",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/garden",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/garden",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/garden",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=garden",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "EXTRA_FILES.txt",
      "SKILL.md",
      "climate-setup.md",
      "diagnostics.md",
      "memory-template.md",
      "planning.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/garden"
    },
    "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/garden",
    "agentPageUrl": "https://openagent3.xyz/skills/garden/agent",
    "manifestUrl": "https://openagent3.xyz/skills/garden/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/garden/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": "Setup",
        "body": "If ~/garden/ doesn't exist or is empty, read setup.md and follow it. The user engaging with the skill implies interest — start helping them naturally."
      },
      {
        "title": "When to Use",
        "body": "User needs help managing their garden: tracking plants, logging activities, planning rotations, diagnosing problems, or reviewing harvests. Agent maintains structured memory across seasons."
      },
      {
        "title": "Architecture",
        "body": "Memory lives in ~/garden/. See memory-template.md for templates.\n\n~/garden/\n├── memory.md      # REQUIRED: context and status\n├── climate.md     # Optional: zone, frost dates\n├── plants/        # Optional: detailed plant files\n├── zones/         # Optional: zone tracking\n└── harvests.md    # Optional: yield records\n\nStart minimal (just memory.md). Add others only if user wants detailed tracking."
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileSetup processsetup.mdMemory templatememory-template.mdPlant & zone templatestracking.mdClimate configurationclimate-setup.mdProblem diagnosisdiagnostics.mdRotation planningplanning.md"
      },
      {
        "title": "1. Plant Registry",
        "body": "Each plant gets a file in plants/ with: variety, planting date, zone, care schedule, health history. Load on request, not by default."
      },
      {
        "title": "2. Zone Management",
        "body": "Each garden area gets a file in zones/ with: conditions, current plants, rotation history. Enforce 3-year minimum before repeating same plant family."
      },
      {
        "title": "3. Activity Logging",
        "body": "Log actions in log/YYYY-MM.md with icons: 🌱 plant, 💧 water, 🐛 pest, 🍅 harvest, ✂️ prune, 🌡️ weather event."
      },
      {
        "title": "4. Climate Awareness",
        "body": "User configures climate file with USDA zone and frost dates. Use for planting window calculations and seasonal alerts."
      },
      {
        "title": "5. Harvest Tracking",
        "body": "Log yields in harvests file with date, plant, zone, quantity. Enables season-over-season comparison and variety evaluation."
      },
      {
        "title": "6. Problem Diagnosis",
        "body": "When user reports issue: check plant health history, zone conditions, recent weather. See diagnostics.md for symptom reference."
      },
      {
        "title": "7. Tiered Storage",
        "body": "Memory file = current focus, always loaded first\nPlant/zone files = load on demand\nLog archives = historical reference only"
      },
      {
        "title": "Common Queries",
        "body": "\"What needs water?\" - check care schedules vs last log\n\"What can I plant now?\" - frost dates + rotation rules\n\"Why yellow leaves?\" - diagnostic flow in diagnostics.md\n\"Show tomato history\" - load plant file\n\"Last year's harvest?\" - aggregate from harvests file"
      },
      {
        "title": "Garden Traps",
        "body": "Planting same family in same zone within 3 years - diseases compound\nIgnoring microclimate differences between zones - timing varies\nNot logging problems when they occur - diagnosis harder later\nOverwatering based on schedule not soil - check before watering"
      },
      {
        "title": "Security & Privacy",
        "body": "Data that stays local:\n\nAll garden data stored in ~/garden/\nNo external APIs or network calls\nNo telemetry, analytics, or data collection\n\nWhat this skill writes:\n\nFiles in ~/garden/ (memory.md, plants/, etc.)\nOptionally: one line in user's workspace MEMORY.md (e.g., ~/MEMORY.md or equivalent) — only after asking and receiving explicit \"yes\"\n\nThis skill does NOT:\n\nInfer or save preferences without user confirmation\nAccess weather APIs (climate is manually configured)\nControl hardware or irrigation systems\nWrite outside ~/garden/ without asking first\nMake any network requests"
      },
      {
        "title": "Related Skills",
        "body": "Install with clawhub install <slug> if user confirms:\n\nplants — Plant care and identification\nhabits — Daily habit tracking\njournal — General journaling\nremind — Reminder scheduling\ndaily-planner — Day planning"
      },
      {
        "title": "Feedback",
        "body": "If useful: clawhub star garden\nStay updated: clawhub sync"
      }
    ],
    "body": "Setup\n\nIf ~/garden/ doesn't exist or is empty, read setup.md and follow it. The user engaging with the skill implies interest — start helping them naturally.\n\nWhen to Use\n\nUser needs help managing their garden: tracking plants, logging activities, planning rotations, diagnosing problems, or reviewing harvests. Agent maintains structured memory across seasons.\n\nArchitecture\n\nMemory lives in ~/garden/. See memory-template.md for templates.\n\n~/garden/\n├── memory.md      # REQUIRED: context and status\n├── climate.md     # Optional: zone, frost dates\n├── plants/        # Optional: detailed plant files\n├── zones/         # Optional: zone tracking\n└── harvests.md    # Optional: yield records\n\n\nStart minimal (just memory.md). Add others only if user wants detailed tracking.\n\nQuick Reference\nTopic\tFile\nSetup process\tsetup.md\nMemory template\tmemory-template.md\nPlant & zone templates\ttracking.md\nClimate configuration\tclimate-setup.md\nProblem diagnosis\tdiagnostics.md\nRotation planning\tplanning.md\nCore Rules\n1. Plant Registry\n\nEach plant gets a file in plants/ with: variety, planting date, zone, care schedule, health history. Load on request, not by default.\n\n2. Zone Management\n\nEach garden area gets a file in zones/ with: conditions, current plants, rotation history. Enforce 3-year minimum before repeating same plant family.\n\n3. Activity Logging\n\nLog actions in log/YYYY-MM.md with icons: 🌱 plant, 💧 water, 🐛 pest, 🍅 harvest, ✂️ prune, 🌡️ weather event.\n\n4. Climate Awareness\n\nUser configures climate file with USDA zone and frost dates. Use for planting window calculations and seasonal alerts.\n\n5. Harvest Tracking\n\nLog yields in harvests file with date, plant, zone, quantity. Enables season-over-season comparison and variety evaluation.\n\n6. Problem Diagnosis\n\nWhen user reports issue: check plant health history, zone conditions, recent weather. See diagnostics.md for symptom reference.\n\n7. Tiered Storage\nMemory file = current focus, always loaded first\nPlant/zone files = load on demand\nLog archives = historical reference only\nCommon Queries\n\"What needs water?\" - check care schedules vs last log\n\"What can I plant now?\" - frost dates + rotation rules\n\"Why yellow leaves?\" - diagnostic flow in diagnostics.md\n\"Show tomato history\" - load plant file\n\"Last year's harvest?\" - aggregate from harvests file\nGarden Traps\nPlanting same family in same zone within 3 years - diseases compound\nIgnoring microclimate differences between zones - timing varies\nNot logging problems when they occur - diagnosis harder later\nOverwatering based on schedule not soil - check before watering\nSecurity & Privacy\n\nData that stays local:\n\nAll garden data stored in ~/garden/\nNo external APIs or network calls\nNo telemetry, analytics, or data collection\n\nWhat this skill writes:\n\nFiles in ~/garden/ (memory.md, plants/, etc.)\nOptionally: one line in user's workspace MEMORY.md (e.g., ~/MEMORY.md or equivalent) — only after asking and receiving explicit \"yes\"\n\nThis skill does NOT:\n\nInfer or save preferences without user confirmation\nAccess weather APIs (climate is manually configured)\nControl hardware or irrigation systems\nWrite outside ~/garden/ without asking first\nMake any network requests\nRelated Skills\n\nInstall with clawhub install <slug> if user confirms:\n\nplants — Plant care and identification\nhabits — Daily habit tracking\njournal — General journaling\nremind — Reminder scheduling\ndaily-planner — Day planning\nFeedback\nIf useful: clawhub star garden\nStay updated: clawhub sync"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/garden",
    "publisherUrl": "https://clawhub.ai/ivangdavila/garden",
    "owner": "ivangdavila",
    "version": "1.1.6",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/garden",
    "downloadUrl": "https://openagent3.xyz/downloads/garden",
    "agentUrl": "https://openagent3.xyz/skills/garden/agent",
    "manifestUrl": "https://openagent3.xyz/skills/garden/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/garden/agent.md"
  }
}