Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Hippius decentralized storage on Bittensor Subnet 75 — upload files, query storage, manage buckets via S3-compatible API. Use when user asks to upload to Hippius, check storage status, set up Hippius credentials, list buckets/files, or asks about IPFS vs S3 options.
Hippius decentralized storage on Bittensor Subnet 75 — upload files, query storage, manage buckets via S3-compatible API. Use when user asks to upload to Hippius, check storage status, set up Hippius credentials, list buckets/files, or asks about IPFS vs S3 options.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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.
KeyValueS3 Endpointhttps://s3.hippius.comS3 RegiondecentralizedAccess Key Formathip_xxxxxxxxxxxxConsoleconsole.hippius.comPython CLIpip install hippius (requires self-hosted IPFS node)
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
aws --endpoint-url https://s3.hippius.com --region decentralized \ s3 cp <file> s3://<bucket>/<key>
aws --endpoint-url https://s3.hippius.com --region decentralized \ s3 cp s3://<bucket>/<key> <local_path>
aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls
aws --endpoint-url https://s3.hippius.com --region decentralized s3 ls s3://<bucket>/ --recursive
aws --endpoint-url https://s3.hippius.com --region decentralized s3 mb s3://<bucket>
aws --endpoint-url https://s3.hippius.com --region decentralized \ s3 sync ./local-dir/ s3://<bucket>/remote-dir/
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/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/storage_guide.md — S3 vs IPFS comparison, code examples (Python, JS) references/cli_commands.md — hippius CLI reference (requires self-hosted IPFS node)
"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
Hippius Docs Hippius Console Hippius Stats CLI GitHub
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.