@indigoprotocol/openclaw-indigo 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,8 +3,25 @@
3
3
  "name": "openclaw-indigo",
4
4
  "displayName": "OpenClaw Indigo Plugin",
5
5
  "description": "Full Indigo Protocol integration for OpenClaw - manage CDPs, staking, and more from Telegram, Discord, and Slack",
6
- "version": "0.1.1",
6
+ "version": "0.1.4",
7
7
  "entry": "src/index.ts",
8
+ "configSchema": {
9
+ "type": "object",
10
+ "properties": {
11
+ "blockfrostApiKey": {
12
+ "type": "string",
13
+ "description": "Blockfrost API key for Cardano mainnet"
14
+ },
15
+ "walletAddress": {
16
+ "type": "string",
17
+ "description": "Cardano wallet address to monitor"
18
+ }
19
+ }
20
+ },
21
+ "uiHints": {
22
+ "blockfrostApiKey": { "label": "Blockfrost API Key", "sensitive": true },
23
+ "walletAddress": { "label": "Wallet Address", "placeholder": "addr1..." }
24
+ },
8
25
  "skills": [
9
26
  "@indigoprotocol/indigo-defi",
10
27
  "@indigoprotocol/indigo-data"
@@ -14,16 +31,5 @@
14
31
  "command": "npx",
15
32
  "args": ["@indigoprotocol/indigo-mcp"]
16
33
  }
17
- },
18
- "commands": {
19
- "cdp": "src/commands/cdp.ts",
20
- "price": "src/commands/price.ts",
21
- "staking": "src/commands/staking.ts",
22
- "portfolio": "src/commands/portfolio.ts"
23
- },
24
- "alerts": {
25
- "price": "src/alerts/price-alerts.ts",
26
- "cdp": "src/alerts/cdp-alerts.ts",
27
- "staking": "src/alerts/staking-alerts.ts"
28
34
  }
29
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigoprotocol/openclaw-indigo",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "OpenClaw plugin for Indigo Protocol",
5
5
  "keywords": ["indigo", "openclaw", "plugin", "cardano", "slack", "telegram", "discord"],
6
6
  "type": "module",