{
  "schemaVersion": "1.0",
  "item": {
    "slug": "infrastructure",
    "name": "Infrastructure",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/infrastructure",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/infrastructure",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/infrastructure",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=infrastructure",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "backups.md",
      "patterns.md",
      "providers.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",
      "slug": "infrastructure",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T07:22:56.369Z",
      "expiresAt": "2026-05-07T07:22:56.369Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=infrastructure",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=infrastructure",
        "contentDisposition": "attachment; filename=\"infrastructure-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "infrastructure"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/infrastructure"
    },
    "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/infrastructure",
    "agentPageUrl": "https://openagent3.xyz/skills/infrastructure/agent",
    "manifestUrl": "https://openagent3.xyz/skills/infrastructure/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/infrastructure/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": "Scope",
        "body": "This skill:\n\n✅ Guides architecture decisions\n✅ Provides provisioning commands for user to run\n✅ Documents infrastructure patterns\n\nUser-driven model:\n\nUser provides cloud credentials when needed\nUser runs provisioning commands\nSkill guides decisions and generates commands\n\nThis skill does NOT:\n\n❌ Store or access cloud credentials directly\n❌ Run provisioning commands automatically\n❌ Modify infrastructure without user confirmation\n\nFor implementation: User runs commands skill provides, or uses server skill for execution."
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileArchitecture patternspatterns.mdProvider commandsproviders.mdBackup strategiesbackups.md"
      },
      {
        "title": "1. User Runs Commands",
        "body": "Skill generates commands, user executes:\n\nAgent: \"To create the server, run:\n        hcloud server create --name web1 --type cx21 --image ubuntu-24.04\n        \n        This requires HCLOUD_TOKEN in your environment.\"\nUser: [runs command]"
      },
      {
        "title": "2. Required Tools (User Installs)",
        "body": "ProviderToolInstallHetznerhcloudbrew install hcloudAWSawsbrew install awscliDigitalOceandoctlbrew install doctlDockerdockerDocker Desktop"
      },
      {
        "title": "3. Credential Handling",
        "body": "User sets credentials in their environment\nSkill never stores or logs credential values\nCommands reference env vars: $HCLOUD_TOKEN, $AWS_ACCESS_KEY_ID"
      },
      {
        "title": "4. Architecture Guidance",
        "body": "StageRecommendedMVPSingle VPS + Docker ComposeGrowthDedicated DB + load balancerScaleMulti-region + CDN"
      },
      {
        "title": "5. Decision Framework",
        "body": "QuestionAnswerHow to structure infra?✅ This skillShould I add another server?✅ This skillHow to configure nginx?Use server skillHow to write Dockerfile?Use docker skill"
      },
      {
        "title": "6. Backup Strategy",
        "body": "DataMethodFrequencyDatabasepg_dump → S3/B2DailyVolumesSnapshotsWeeklyConfigGitEvery change"
      }
    ],
    "body": "Scope\n\nThis skill:\n\n✅ Guides architecture decisions\n✅ Provides provisioning commands for user to run\n✅ Documents infrastructure patterns\n\nUser-driven model:\n\nUser provides cloud credentials when needed\nUser runs provisioning commands\nSkill guides decisions and generates commands\n\nThis skill does NOT:\n\n❌ Store or access cloud credentials directly\n❌ Run provisioning commands automatically\n❌ Modify infrastructure without user confirmation\n\nFor implementation: User runs commands skill provides, or uses server skill for execution.\n\nQuick Reference\nTopic\tFile\nArchitecture patterns\tpatterns.md\nProvider commands\tproviders.md\nBackup strategies\tbackups.md\nCore Rules\n1. User Runs Commands\n\nSkill generates commands, user executes:\n\nAgent: \"To create the server, run:\n        hcloud server create --name web1 --type cx21 --image ubuntu-24.04\n        \n        This requires HCLOUD_TOKEN in your environment.\"\nUser: [runs command]\n\n2. Required Tools (User Installs)\nProvider\tTool\tInstall\nHetzner\thcloud\tbrew install hcloud\nAWS\taws\tbrew install awscli\nDigitalOcean\tdoctl\tbrew install doctl\nDocker\tdocker\tDocker Desktop\n3. Credential Handling\nUser sets credentials in their environment\nSkill never stores or logs credential values\nCommands reference env vars: $HCLOUD_TOKEN, $AWS_ACCESS_KEY_ID\n4. Architecture Guidance\nStage\tRecommended\nMVP\tSingle VPS + Docker Compose\nGrowth\tDedicated DB + load balancer\nScale\tMulti-region + CDN\n5. Decision Framework\nQuestion\tAnswer\nHow to structure infra?\t✅ This skill\nShould I add another server?\t✅ This skill\nHow to configure nginx?\tUse server skill\nHow to write Dockerfile?\tUse docker skill\n6. Backup Strategy\nData\tMethod\tFrequency\nDatabase\tpg_dump → S3/B2\tDaily\nVolumes\tSnapshots\tWeekly\nConfig\tGit\tEvery change"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/infrastructure",
    "publisherUrl": "https://clawhub.ai/ivangdavila/infrastructure",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/infrastructure",
    "downloadUrl": "https://openagent3.xyz/downloads/infrastructure",
    "agentUrl": "https://openagent3.xyz/skills/infrastructure/agent",
    "manifestUrl": "https://openagent3.xyz/skills/infrastructure/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/infrastructure/agent.md"
  }
}