{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hippius",
    "name": "Hippius Storage",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/maxquick/hippius",
    "canonicalUrl": "https://clawhub.ai/maxquick/hippius",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hippius",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hippius",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/cli_commands.md",
      "references/storage_guide.md",
      "scripts/query_storage.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-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/hippius"
    },
    "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/hippius",
    "agentPageUrl": "https://openagent3.xyz/skills/hippius/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hippius/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hippius/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": "Hippius Storage",
        "body": "Hippius is decentralized cloud storage on Bittensor SN75 with S3-compatible API.\n\nRecommended path: S3 endpoint (s3.hippius.com) — the public IPFS node is deprecated."
      },
      {
        "title": "Quick Reference",
        "body": "KeyValueS3 Endpointhttps://s3.hippius.comS3 RegiondecentralizedAccess Key Formathip_xxxxxxxxxxxxConsoleconsole.hippius.comPython CLIpip install hippius (requires self-hosted IPFS node)"
      },
      {
        "title": "Setup",
        "body": "Get S3 credentials from console.hippius.com → Settings → API Keys\nSet environment variables:\nexport HIPPIUS_S3_ACCESS_KEY=\"hip_your_access_key\"\nexport HIPPIUS_S3_SECRET_KEY=\"your_secret_key\"\n\n\nTest: aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls"
      },
      {
        "title": "Upload",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 cp <file> s3://<bucket>/<key>"
      },
      {
        "title": "Download",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 cp s3://<bucket>/<key> <local_path>"
      },
      {
        "title": "List buckets",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls"
      },
      {
        "title": "List objects",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls s3://<bucket>/ --recursive"
      },
      {
        "title": "Create bucket",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized s3 mb s3://<bucket>"
      },
      {
        "title": "Sync directory",
        "body": "aws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 sync ./local-dir/ s3://<bucket>/remote-dir/"
      },
      {
        "title": "Python (boto3)",
        "body": "import boto3\nimport os\n\ns3 = boto3.client(\n    's3',\n    endpoint_url='https://s3.hippius.com',\n    aws_access_key_id=os.environ['HIPPIUS_S3_ACCESS_KEY'],\n    aws_secret_access_key=os.environ['HIPPIUS_S3_SECRET_KEY'],\n    region_name='decentralized'\n)\n\n# Upload\ns3.upload_file('local.txt', 'my-bucket', 'remote.txt')\n\n# Download\ns3.download_file('my-bucket', 'remote.txt', 'downloaded.txt')\n\n# List\nfor obj in s3.list_objects_v2(Bucket='my-bucket').get('Contents', []):\n    print(f\"{obj['Key']} ({obj['Size']} bytes)\")"
      },
      {
        "title": "Scripts",
        "body": "scripts/query_storage.py — Query S3 buckets/objects and RPC account info\n\nUsage:\n\n# List S3 buckets\npython scripts/query_storage.py --s3-buckets\n\n# List objects in bucket\npython scripts/query_storage.py --s3-objects my-bucket\n\n# Query blockchain credits (requires account address)\npython scripts/query_storage.py --account 5Grwva... --credits"
      },
      {
        "title": "References",
        "body": "references/storage_guide.md — S3 vs IPFS comparison, code examples (Python, JS)\nreferences/cli_commands.md — hippius CLI reference (requires self-hosted IPFS node)"
      },
      {
        "title": "Troubleshooting",
        "body": "\"Public store.hippius.network has been deprecated\"\nUse S3 instead. The hippius CLI's IPFS commands require a self-hosted IPFS node.\n\nS3 auth errors\n\nAccess key must start with hip_\nRegion must be decentralized (not us-east-1)\nEndpoint must be https://s3.hippius.com"
      },
      {
        "title": "External Links",
        "body": "Hippius Docs\nHippius Console\nHippius Stats\nCLI GitHub"
      }
    ],
    "body": "Hippius Storage\n\nHippius is decentralized cloud storage on Bittensor SN75 with S3-compatible API.\n\nRecommended path: S3 endpoint (s3.hippius.com) — the public IPFS node is deprecated.\n\nQuick Reference\nKey\tValue\nS3 Endpoint\thttps://s3.hippius.com\nS3 Region\tdecentralized\nAccess Key Format\thip_xxxxxxxxxxxx\nConsole\tconsole.hippius.com\nPython CLI\tpip install hippius (requires self-hosted IPFS node)\nSetup\nGet S3 credentials from console.hippius.com → Settings → API Keys\nSet environment variables:\nexport HIPPIUS_S3_ACCESS_KEY=\"hip_your_access_key\"\nexport HIPPIUS_S3_SECRET_KEY=\"your_secret_key\"\n\nTest: aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls\nCommon Operations\nUpload\naws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 cp <file> s3://<bucket>/<key>\n\nDownload\naws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 cp s3://<bucket>/<key> <local_path>\n\nList buckets\naws --endpoint-url https://s3.hippius.com --region decentralized s3 ls\n\nList objects\naws --endpoint-url https://s3.hippius.com --region decentralized s3 ls s3://<bucket>/ --recursive\n\nCreate bucket\naws --endpoint-url https://s3.hippius.com --region decentralized s3 mb s3://<bucket>\n\nSync directory\naws --endpoint-url https://s3.hippius.com --region decentralized \\\n    s3 sync ./local-dir/ s3://<bucket>/remote-dir/\n\nPython (boto3)\nimport boto3\nimport os\n\ns3 = boto3.client(\n    's3',\n    endpoint_url='https://s3.hippius.com',\n    aws_access_key_id=os.environ['HIPPIUS_S3_ACCESS_KEY'],\n    aws_secret_access_key=os.environ['HIPPIUS_S3_SECRET_KEY'],\n    region_name='decentralized'\n)\n\n# Upload\ns3.upload_file('local.txt', 'my-bucket', 'remote.txt')\n\n# Download\ns3.download_file('my-bucket', 'remote.txt', 'downloaded.txt')\n\n# List\nfor obj in s3.list_objects_v2(Bucket='my-bucket').get('Contents', []):\n    print(f\"{obj['Key']} ({obj['Size']} bytes)\")\n\nScripts\nscripts/query_storage.py — Query S3 buckets/objects and RPC account info\n\nUsage:\n\n# List S3 buckets\npython scripts/query_storage.py --s3-buckets\n\n# List objects in bucket\npython scripts/query_storage.py --s3-objects my-bucket\n\n# Query blockchain credits (requires account address)\npython scripts/query_storage.py --account 5Grwva... --credits\n\nReferences\nreferences/storage_guide.md — S3 vs IPFS comparison, code examples (Python, JS)\nreferences/cli_commands.md — hippius CLI reference (requires self-hosted IPFS node)\nTroubleshooting\n\n\"Public store.hippius.network has been deprecated\" Use S3 instead. The hippius CLI's IPFS commands require a self-hosted IPFS node.\n\nS3 auth errors\n\nAccess key must start with hip_\nRegion must be decentralized (not us-east-1)\nEndpoint must be https://s3.hippius.com\nExternal Links\nHippius Docs\nHippius Console\nHippius Stats\nCLI GitHub"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/maxquick/hippius",
    "publisherUrl": "https://clawhub.ai/maxquick/hippius",
    "owner": "maxquick",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hippius",
    "downloadUrl": "https://openagent3.xyz/downloads/hippius",
    "agentUrl": "https://openagent3.xyz/skills/hippius/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hippius/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hippius/agent.md"
  }
}