Skills indigo-ipfs

Store and retrieve data on IPFS and query collector UTXOs for the Indigo Protocol.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/adacapo21/indigo-ipfs" ~/.claude/skills/openclaw-skills-indigo-ipfs && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/adacapo21/indigo-ipfs" ~/.openclaw/skills/openclaw-skills-indigo-ipfs && rm -rf "$T"
manifest: skills/adacapo21/indigo-ipfs/SKILL.md
source content

Indigo IPFS & Collector

Store and retrieve data on IPFS and query collector UTXOs for the Indigo Protocol on Cardano.

MCP Tools

store_on_ipfs

Store text content on IPFS.

Parameters:

NameTypeRequiredDescription
text
stringYesText content to store on IPFS

Returns: The IPFS content identifier (CID) for the stored content.


retrieve_from_ipfs

Retrieve content from IPFS by CID.

Parameters:

NameTypeRequiredDescription
cid
stringYesIPFS content identifier (CID)

Returns: The text content stored at the given CID.


get_collector_utxos

Get collector UTXOs for fee distribution.

Parameters:

NameTypeRequiredDescription
length
numberNoMaximum number of UTXOs to return

Returns: A list of collector UTXOs with their values and assets.

Sub-Skills

  • IPFS Storage — Store and retrieve data on IPFS
  • Collector — Query collector UTXOs for fee distribution

References

  • MCP Tools Reference — Detailed tool parameters and return types
  • Concepts — IPFS content addressing and collector fee distribution