技能详情(站内镜像,无评论)
作者:Angelos Kappos @adacapo21
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 100 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:adacapo21/indigo-ipfs
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's declared purpose (IPFS storage + querying collector UTXOs) matches its instructions and it requests no credentials or installs; it is internally coherent but relies on external platform-provided tools and unspecified network endpoints.
目的
Name, description, and included sub-skills (IPFS storage and collector UTXO queries) align. The skill does not request unrelated credentials, binaries, or config paths.
说明范围
SKILL.md defines three clear tool-level operations (store_on_ipfs, retrieve_from_ipfs, get_collector_utxos) and example workflows. It does not instruct reading arbitrary local files or exfiltrating secrets. However the implementation of those tools and which IPFS/Cardano endpoints or nodes will be used is unspecified—so network activity is implied but not described.
安装机制
No install spec and no bundled code files that would be written to disk. Instruction-only skills are lower risk from installation perspective.
证书
The skill declares no required environment variables or credentials. Some example workflows reference other tools (e.g., get_cdps_by_owner) which might require credentials outside this skill, but those are not requested here.
持久
always:false and user-invocable:true (normal). The skill does not request to persist configuration or modify other skills.
综合结论
This skill appears coherent and minimal, but before installing check how your agent/platform implements the MCP tools (store_on_ipfs, retrieve_from_ipfs, get_collector_utxos): verify which IPFS gateway or node will be used (public gateway vs pinned storage), which Cardano node/API provides UTXO data, and whether those underlying services will require or transmit credentials. Confirm that the platform won't implicitly read or upload local files…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Indigo IPFS」。简介:Store and retrieve data on IPFS and query collector UTXOs for the Indigo Protoc…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/adacapo21/indigo-ipfs/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: indigo-ipfs
description: "Store and retrieve data on IPFS and query collector UTXOs for the Indigo Protocol."
allowed-tools: Read, Glob, Grep
license: MIT
metadata:
author: indigoprotocol
version: '0.1.0'
---
# 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:**
| Name | Type | Required | Description |
|------|------|----------|-------------|
| `text` | string | Yes | Text 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:**
| Name | Type | Required | Description |
|------|------|----------|-------------|
| `cid` | string | Yes | IPFS content identifier (CID) |
**Returns:** The text content stored at the given CID.
---
### get_collector_utxos
Get collector UTXOs for fee distribution.
**Parameters:**
| Name | Type | Required | Description |
|------|------|----------|-------------|
| `length` | number | No | Maximum number of UTXOs to return |
**Returns:** A list of collector UTXOs with their values and assets.
## Sub-Skills
- [IPFS Storage](sub-skills/ipfs-storage.md) — Store and retrieve data on IPFS
- [Collector](sub-skills/collector.md) — Query collector UTXOs for fee distribution
## References
- [MCP Tools Reference](references/mcp-tools.md) — Detailed tool parameters and return types
- [Concepts](references/concepts.md) — IPFS content addressing and collector fee distribution