# Send Hippius Storage to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/hippius",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hippius",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/cli_commands.md",
      "references/storage_guide.md",
      "scripts/query_storage.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hippius",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T04:14:03.068Z",
      "expiresAt": "2026-05-11T04:14:03.068Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hippius",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hippius",
        "contentDisposition": "attachment; filename=\"hippius-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hippius"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Hippius Storage

Hippius is decentralized cloud storage on Bittensor SN75 with S3-compatible API.

Recommended path: S3 endpoint (s3.hippius.com) — the public IPFS node is deprecated.

### Quick Reference

KeyValueS3 Endpointhttps://s3.hippius.comS3 RegiondecentralizedAccess Key Formathip_xxxxxxxxxxxxConsoleconsole.hippius.comPython CLIpip install hippius (requires self-hosted IPFS node)

### Setup

Get S3 credentials from console.hippius.com → Settings → API Keys
Set environment variables:
export HIPPIUS_S3_ACCESS_KEY="hip_your_access_key"
export HIPPIUS_S3_SECRET_KEY="your_secret_key"


Test: aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls

### Upload

aws --endpoint-url https://s3.hippius.com --region decentralized \\
    s3 cp <file> s3://<bucket>/<key>

### Download

aws --endpoint-url https://s3.hippius.com --region decentralized \\
    s3 cp s3://<bucket>/<key> <local_path>

### List buckets

aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls

### List objects

aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls s3://<bucket>/ --recursive

### Create bucket

aws --endpoint-url https://s3.hippius.com --region decentralized s3 mb s3://<bucket>

### Sync directory

aws --endpoint-url https://s3.hippius.com --region decentralized \\
    s3 sync ./local-dir/ s3://<bucket>/remote-dir/

### Python (boto3)

import boto3
import os

s3 = boto3.client(
    's3',
    endpoint_url='https://s3.hippius.com',
    aws_access_key_id=os.environ['HIPPIUS_S3_ACCESS_KEY'],
    aws_secret_access_key=os.environ['HIPPIUS_S3_SECRET_KEY'],
    region_name='decentralized'
)

# Upload
s3.upload_file('local.txt', 'my-bucket', 'remote.txt')

# Download
s3.download_file('my-bucket', 'remote.txt', 'downloaded.txt')

# List
for obj in s3.list_objects_v2(Bucket='my-bucket').get('Contents', []):
    print(f"{obj['Key']} ({obj['Size']} bytes)")

### Scripts

scripts/query_storage.py — Query S3 buckets/objects and RPC account info

Usage:

# List S3 buckets
python scripts/query_storage.py --s3-buckets

# List objects in bucket
python scripts/query_storage.py --s3-objects my-bucket

# Query blockchain credits (requires account address)
python scripts/query_storage.py --account 5Grwva... --credits

### References

references/storage_guide.md — S3 vs IPFS comparison, code examples (Python, JS)
references/cli_commands.md — hippius CLI reference (requires self-hosted IPFS node)

### Troubleshooting

"Public store.hippius.network has been deprecated"
Use S3 instead. The hippius CLI's IPFS commands require a self-hosted IPFS node.

S3 auth errors

Access key must start with hip_
Region must be decentralized (not us-east-1)
Endpoint must be https://s3.hippius.com

### External Links

Hippius Docs
Hippius Console
Hippius Stats
CLI GitHub
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maxquick
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T04:14:03.068Z
- Expires at: 2026-05-11T04:14:03.068Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hippius)
- [Send to Agent page](https://openagent3.xyz/skills/hippius/agent)
- [JSON manifest](https://openagent3.xyz/skills/hippius/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hippius/agent.md)
- [Download page](https://openagent3.xyz/downloads/hippius)