openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Indigo Redemption

Manage redemptions and Redemption Order Book (ROB) positions on Indigo Protocol.

数据与表格

作者:Angelos Kappos @adacapo21

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 114 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:adacapo21/indigo-redemption

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's requirements and runtime instructions are consistent with an Indigo Protocol ROB management tool; it is instruction-only and does not request unrelated credentials or system access, but it relies on running an external npm package (npx) so you should verify that package before executing it.

目的

The name/description (manage redemptions and ROB positions) matches the provided tools and sub-skills (get_order_book, open_rob, redeem_rob, etc.). No unrelated env vars, binaries, or config paths are required.

说明范围

SKILL.md is instruction-only and limits actions to calling MCP tools and producing unsigned transactions. It instructs running `npx @indigoprotocol/indigo-mcp` to run a local MCP server — this is coherent for the described functionality. The allowed-tools list includes Read/Glob/Grep (filesystem reads) but the instructions do not direct reading arbitrary local secrets or files; still, if an agent is granted Read access, that capability could b…

安装机制

There is no install spec and no code included in the skill bundle. Runtime guidance tells the user to run `npx @indigoprotocol/indigo-mcp`, which will fetch and execute code from the npm registry. Fetching remote code at runtime is expected here but carries the usual supply-chain risk — confirm the npm package identity and trustworthiness before running.

证书

The skill requests no environment variables, no credentials, and no config paths. That matches the stated purposes: it produces unsigned CBOR transactions for client-side signing and does not ask for private keys or unrelated secrets.

持久

always is false and model invocation is allowed (default). The skill does not request permanent presence or attempt to modify other skills or system-wide settings. Write operations return unsigned txs for the client to sign, which is an appropriate separation of privilege.

综合结论

This skill is internally consistent for managing Indigo ROBs and does not ask for keys or unrelated credentials. Before using it: 1) Verify the npm package `@indigoprotocol/indigo-mcp` (check its publisher, repository, and recent release activity) because `npx` will execute code downloaded from the registry. 2) Run the MCP server and any testing in an isolated environment if you are unsure. 3) Never paste or store your private keys into the sk…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Indigo Redemption」。简介:Manage redemptions and Redemption Order Book (ROB) positions on Indigo Protocol.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/adacapo21/indigo-redemption/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: indigo-redemption
description: "Manage redemptions and Redemption Order Book (ROB) positions on Indigo Protocol."
allowed-tools: Read, Glob, Grep
license: MIT
metadata:
  author: indigoprotocol
  version: '0.1.0'
---

# Indigo Redemption & ROB

Skill for managing redemptions and Redemption Order Book (ROB) positions on Indigo Protocol.

## Prerequisites

- Node.js 20+
- `@indigoprotocol/indigo-mcp` server running

## MCP Server

```bash
npx @indigoprotocol/indigo-mcp
```

## Tools

| Tool | Description |
|------|-------------|
| `get_order_book` | Get open ROB positions from the order book, optionally filtered by asset or owners |
| `get_redemption_orders` | Get redemption orders, optionally filtered by timestamp or price range |
| `get_redemption_queue` | Get aggregated redemption queue for a specific iAsset, sorted by max price ascending |
| `open_rob` | Open a new ROB position with ADA and a max price limit |
| `cancel_rob` | Cancel an existing ROB position |
| `adjust_rob` | Adjust ADA amount in an ROB position; optionally update max price |
| `claim_rob` | Claim received iAssets from an ROB position |
| `redeem_rob` | Redeem iAssets against one or more ROB positions |

## Sub-skills

- [Order Book](sub-skills/order-book.md) — Query ROB order book and redemption orders
- [Redemption Queue](sub-skills/redemption-queue.md) — Aggregated redemption queue per iAsset
- [ROB Management](sub-skills/rob-manage.md) — Open, cancel, adjust, claim, and redeem ROB positions

## References

- [MCP Tools Reference](references/mcp-tools.md) — Detailed tool parameters and return types
- [Redemption Concepts](references/concepts.md) — ROB mechanics, order book, and redemption queue