{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hostinger",
    "name": "Hostinger",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rexlunae/hostinger",
    "canonicalUrl": "https://clawhub.ai/rexlunae/hostinger",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hostinger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hostinger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-endpoints.md",
      "scripts/hostinger.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",
      "slug": "hostinger",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T05:24:26.073Z",
      "expiresAt": "2026-05-11T05:24:26.073Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hostinger",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hostinger",
        "contentDisposition": "attachment; filename=\"hostinger-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hostinger"
      },
      "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/hostinger"
    },
    "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/hostinger",
    "agentPageUrl": "https://openagent3.xyz/skills/hostinger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hostinger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hostinger/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": "Hostinger API Skill",
        "body": "Control Hostinger services programmatically: VPS instances, DNS records, domains, websites, hosting."
      },
      {
        "title": "Authentication",
        "body": "API token required. Get one from: https://hpanel.hostinger.com/profile/api\n\nStore in ~/.config/hostinger/token (just the token, no newline):\n\nmkdir -p ~/.config/hostinger\necho -n \"YOUR_API_TOKEN\" > ~/.config/hostinger/token\nchmod 600 ~/.config/hostinger/token"
      },
      {
        "title": "VPS Operations",
        "body": "# List all VPS instances\npython3 scripts/hostinger.py vps list\n\n# Get VPS details\npython3 scripts/hostinger.py vps get <vm_id>\n\n# Start/stop/restart VPS\npython3 scripts/hostinger.py vps start <vm_id>\npython3 scripts/hostinger.py vps stop <vm_id>\npython3 scripts/hostinger.py vps restart <vm_id>\n\n# Create/restore snapshots\npython3 scripts/hostinger.py vps snapshot-create <vm_id>\npython3 scripts/hostinger.py vps snapshot-restore <vm_id>\n\n# View backups\npython3 scripts/hostinger.py vps backups <vm_id>"
      },
      {
        "title": "DNS Management",
        "body": "# Get DNS records for domain\npython3 scripts/hostinger.py dns get <domain>\n\n# Update DNS records (JSON file with records array)\npython3 scripts/hostinger.py dns update <domain> <records.json>\n\n# Reset DNS to defaults\npython3 scripts/hostinger.py dns reset <domain>\n\n# DNS snapshots\npython3 scripts/hostinger.py dns snapshots <domain>\npython3 scripts/hostinger.py dns snapshot-restore <domain> <snapshot_id>"
      },
      {
        "title": "Domain Portfolio",
        "body": "# List all domains\npython3 scripts/hostinger.py domains list\n\n# Get domain details\npython3 scripts/hostinger.py domains get <domain>\n\n# Update nameservers\npython3 scripts/hostinger.py domains nameservers <domain> ns1.example.com ns2.example.com\n\n# Check availability\npython3 scripts/hostinger.py domains check example.com example.org"
      },
      {
        "title": "Hosting/Websites",
        "body": "# List websites\npython3 scripts/hostinger.py hosting websites\n\n# List datacenters\npython3 scripts/hostinger.py hosting datacenters"
      },
      {
        "title": "Billing",
        "body": "# View subscriptions\npython3 scripts/hostinger.py billing subscriptions\n\n# View payment methods\npython3 scripts/hostinger.py billing payment-methods\n\n# View catalog\npython3 scripts/hostinger.py billing catalog"
      },
      {
        "title": "DNS Record Format",
        "body": "When updating DNS records, provide a JSON file:\n\n{\n  \"records\": [\n    {\"type\": \"A\", \"name\": \"@\", \"value\": \"1.2.3.4\", \"ttl\": 300},\n    {\"type\": \"A\", \"name\": \"www\", \"value\": \"1.2.3.4\", \"ttl\": 300},\n    {\"type\": \"MX\", \"name\": \"@\", \"value\": \"mail.example.com\", \"priority\": 10, \"ttl\": 300},\n    {\"type\": \"TXT\", \"name\": \"@\", \"value\": \"v=spf1 include:_spf.google.com ~all\", \"ttl\": 300}\n  ]\n}"
      },
      {
        "title": "VPS Docker Management",
        "body": "For VPS with Docker OS templates:\n\n# List Docker projects\npython3 scripts/hostinger.py docker list <vm_id>\n\n# Deploy from docker-compose.yml URL\npython3 scripts/hostinger.py docker deploy <vm_id> <project_name> --url <compose_url>\n\n# Or from local file\npython3 scripts/hostinger.py docker deploy <vm_id> <project_name> --file <compose.yml>\n\n# Start/stop/restart project\npython3 scripts/hostinger.py docker start <vm_id> <project_name>\npython3 scripts/hostinger.py docker stop <vm_id> <project_name>\npython3 scripts/hostinger.py docker restart <vm_id> <project_name>\n\n# View logs\npython3 scripts/hostinger.py docker logs <vm_id> <project_name>\n\n# Delete project\npython3 scripts/hostinger.py docker down <vm_id> <project_name>"
      },
      {
        "title": "VPS Firewall",
        "body": "# List firewalls\npython3 scripts/hostinger.py firewall list\n\n# Create firewall\npython3 scripts/hostinger.py firewall create <name>\n\n# Add rule\npython3 scripts/hostinger.py firewall add-rule <firewall_id> --protocol tcp --port 443 --source 0.0.0.0/0\n\n# Activate on VM\npython3 scripts/hostinger.py firewall activate <firewall_id> <vm_id>"
      },
      {
        "title": "Direct API Access",
        "body": "For operations not covered by the script, use curl:\n\nTOKEN=$(cat ~/.config/hostinger/token)\ncurl -H \"Authorization: Bearer $TOKEN\" \\\n     -H \"Content-Type: application/json\" \\\n     https://developers.hostinger.com/api/vps/v1/virtual-machines"
      },
      {
        "title": "API Documentation",
        "body": "Full API reference: https://developers.hostinger.com\nOpenAPI spec: https://github.com/hostinger/api/blob/main/openapi.json\nPython SDK: https://github.com/hostinger/api-python-sdk\nCLI tool: https://github.com/hostinger/api-cli"
      },
      {
        "title": "Deploy a Website",
        "body": "Get VPS ID: python3 scripts/hostinger.py vps list\nUpdate DNS to point to VPS: python3 scripts/hostinger.py dns update domain.com records.json\nSSH to VPS and deploy, OR use Docker: python3 scripts/hostinger.py docker deploy <vm_id> mysite --file docker-compose.yml"
      },
      {
        "title": "Secure a VPS",
        "body": "Create firewall: python3 scripts/hostinger.py firewall create \"web-server\"\nAdd rules for SSH, HTTP, HTTPS\nActivate: python3 scripts/hostinger.py firewall activate <fw_id> <vm_id>"
      },
      {
        "title": "Backup Before Changes",
        "body": "Create snapshot: python3 scripts/hostinger.py vps snapshot-create <vm_id>\nMake changes\nIf needed, restore: python3 scripts/hostinger.py vps snapshot-restore <vm_id>"
      }
    ],
    "body": "Hostinger API Skill\n\nControl Hostinger services programmatically: VPS instances, DNS records, domains, websites, hosting.\n\nAuthentication\n\nAPI token required. Get one from: https://hpanel.hostinger.com/profile/api\n\nStore in ~/.config/hostinger/token (just the token, no newline):\n\nmkdir -p ~/.config/hostinger\necho -n \"YOUR_API_TOKEN\" > ~/.config/hostinger/token\nchmod 600 ~/.config/hostinger/token\n\nQuick Reference\nVPS Operations\n# List all VPS instances\npython3 scripts/hostinger.py vps list\n\n# Get VPS details\npython3 scripts/hostinger.py vps get <vm_id>\n\n# Start/stop/restart VPS\npython3 scripts/hostinger.py vps start <vm_id>\npython3 scripts/hostinger.py vps stop <vm_id>\npython3 scripts/hostinger.py vps restart <vm_id>\n\n# Create/restore snapshots\npython3 scripts/hostinger.py vps snapshot-create <vm_id>\npython3 scripts/hostinger.py vps snapshot-restore <vm_id>\n\n# View backups\npython3 scripts/hostinger.py vps backups <vm_id>\n\nDNS Management\n# Get DNS records for domain\npython3 scripts/hostinger.py dns get <domain>\n\n# Update DNS records (JSON file with records array)\npython3 scripts/hostinger.py dns update <domain> <records.json>\n\n# Reset DNS to defaults\npython3 scripts/hostinger.py dns reset <domain>\n\n# DNS snapshots\npython3 scripts/hostinger.py dns snapshots <domain>\npython3 scripts/hostinger.py dns snapshot-restore <domain> <snapshot_id>\n\nDomain Portfolio\n# List all domains\npython3 scripts/hostinger.py domains list\n\n# Get domain details\npython3 scripts/hostinger.py domains get <domain>\n\n# Update nameservers\npython3 scripts/hostinger.py domains nameservers <domain> ns1.example.com ns2.example.com\n\n# Check availability\npython3 scripts/hostinger.py domains check example.com example.org\n\nHosting/Websites\n# List websites\npython3 scripts/hostinger.py hosting websites\n\n# List datacenters\npython3 scripts/hostinger.py hosting datacenters\n\nBilling\n# View subscriptions\npython3 scripts/hostinger.py billing subscriptions\n\n# View payment methods\npython3 scripts/hostinger.py billing payment-methods\n\n# View catalog\npython3 scripts/hostinger.py billing catalog\n\nDNS Record Format\n\nWhen updating DNS records, provide a JSON file:\n\n{\n  \"records\": [\n    {\"type\": \"A\", \"name\": \"@\", \"value\": \"1.2.3.4\", \"ttl\": 300},\n    {\"type\": \"A\", \"name\": \"www\", \"value\": \"1.2.3.4\", \"ttl\": 300},\n    {\"type\": \"MX\", \"name\": \"@\", \"value\": \"mail.example.com\", \"priority\": 10, \"ttl\": 300},\n    {\"type\": \"TXT\", \"name\": \"@\", \"value\": \"v=spf1 include:_spf.google.com ~all\", \"ttl\": 300}\n  ]\n}\n\nVPS Docker Management\n\nFor VPS with Docker OS templates:\n\n# List Docker projects\npython3 scripts/hostinger.py docker list <vm_id>\n\n# Deploy from docker-compose.yml URL\npython3 scripts/hostinger.py docker deploy <vm_id> <project_name> --url <compose_url>\n\n# Or from local file\npython3 scripts/hostinger.py docker deploy <vm_id> <project_name> --file <compose.yml>\n\n# Start/stop/restart project\npython3 scripts/hostinger.py docker start <vm_id> <project_name>\npython3 scripts/hostinger.py docker stop <vm_id> <project_name>\npython3 scripts/hostinger.py docker restart <vm_id> <project_name>\n\n# View logs\npython3 scripts/hostinger.py docker logs <vm_id> <project_name>\n\n# Delete project\npython3 scripts/hostinger.py docker down <vm_id> <project_name>\n\nVPS Firewall\n# List firewalls\npython3 scripts/hostinger.py firewall list\n\n# Create firewall\npython3 scripts/hostinger.py firewall create <name>\n\n# Add rule\npython3 scripts/hostinger.py firewall add-rule <firewall_id> --protocol tcp --port 443 --source 0.0.0.0/0\n\n# Activate on VM\npython3 scripts/hostinger.py firewall activate <firewall_id> <vm_id>\n\nDirect API Access\n\nFor operations not covered by the script, use curl:\n\nTOKEN=$(cat ~/.config/hostinger/token)\ncurl -H \"Authorization: Bearer $TOKEN\" \\\n     -H \"Content-Type: application/json\" \\\n     https://developers.hostinger.com/api/vps/v1/virtual-machines\n\nAPI Documentation\nFull API reference: https://developers.hostinger.com\nOpenAPI spec: https://github.com/hostinger/api/blob/main/openapi.json\nPython SDK: https://github.com/hostinger/api-python-sdk\nCLI tool: https://github.com/hostinger/api-cli\nCommon Workflows\nDeploy a Website\nGet VPS ID: python3 scripts/hostinger.py vps list\nUpdate DNS to point to VPS: python3 scripts/hostinger.py dns update domain.com records.json\nSSH to VPS and deploy, OR use Docker: python3 scripts/hostinger.py docker deploy <vm_id> mysite --file docker-compose.yml\nSecure a VPS\nCreate firewall: python3 scripts/hostinger.py firewall create \"web-server\"\nAdd rules for SSH, HTTP, HTTPS\nActivate: python3 scripts/hostinger.py firewall activate <fw_id> <vm_id>\nBackup Before Changes\nCreate snapshot: python3 scripts/hostinger.py vps snapshot-create <vm_id>\nMake changes\nIf needed, restore: python3 scripts/hostinger.py vps snapshot-restore <vm_id>"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/rexlunae/hostinger",
    "publisherUrl": "https://clawhub.ai/rexlunae/hostinger",
    "owner": "rexlunae",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hostinger",
    "downloadUrl": "https://openagent3.xyz/downloads/hostinger",
    "agentUrl": "https://openagent3.xyz/skills/hostinger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hostinger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hostinger/agent.md"
  }
}