clawpowers 2.2.5 → 2.2.7
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.
- package/CHANGELOG.md +186 -160
- package/COMPATIBILITY.md +48 -13
- package/KNOWN_LIMITATIONS.md +20 -19
- package/LICENSE +44 -44
- package/LICENSING.md +10 -10
- package/README.md +486 -462
- package/SECURITY.md +52 -52
- package/dist/index.d.ts +17 -5
- package/dist/index.js +187 -92
- package/dist/index.js.map +1 -1
- package/native/Cargo.lock +4927 -4927
- package/native/Cargo.toml +73 -73
- package/native/crates/canonical/Cargo.toml +24 -24
- package/native/crates/canonical/src/lib.rs +677 -673
- package/native/crates/compression/Cargo.toml +20 -20
- package/native/crates/compression/benches/compression_bench.rs +42 -42
- package/native/crates/compression/src/lib.rs +393 -393
- package/native/crates/evm-eth/Cargo.toml +13 -13
- package/native/crates/evm-eth/src/lib.rs +105 -105
- package/native/crates/fee/Cargo.toml +15 -15
- package/native/crates/fee/src/lib.rs +281 -281
- package/native/crates/index/Cargo.toml +16 -16
- package/native/crates/index/src/lib.rs +277 -277
- package/native/crates/policy/Cargo.toml +17 -17
- package/native/crates/policy/src/lib.rs +614 -614
- package/native/crates/security/Cargo.toml +22 -22
- package/native/crates/security/src/lib.rs +478 -478
- package/native/crates/tokens/Cargo.toml +13 -13
- package/native/crates/tokens/src/lib.rs +534 -534
- package/native/crates/verification/Cargo.toml +23 -23
- package/native/crates/verification/src/lib.rs +333 -333
- package/native/crates/wallet/Cargo.toml +20 -20
- package/native/crates/wallet/src/lib.rs +261 -261
- package/native/crates/x402/Cargo.toml +30 -30
- package/native/crates/x402/src/lib.rs +423 -423
- package/native/ffi/Cargo.toml +34 -34
- package/native/ffi/build.rs +4 -4
- package/native/ffi/src/lib.rs +352 -352
- package/native/ffi/tests/integration.rs +354 -354
- package/native/pyo3/Cargo.toml +26 -26
- package/native/pyo3/pyproject.toml +16 -16
- package/native/pyo3/src/lib.rs +407 -407
- package/native/pyo3/tests/test_smoke.py +180 -180
- package/native/wasm/Cargo.toml +47 -44
- package/native/wasm/pkg/.gitignore +6 -6
- package/native/wasm/pkg/clawpowers_wasm.d.ts +208 -208
- package/native/wasm/pkg/clawpowers_wasm.js +872 -872
- package/native/wasm/pkg/clawpowers_wasm_bg.wasm.d.ts +40 -40
- package/native/wasm/pkg/package.json +16 -16
- package/native/wasm/pkg-node/clawpowers_wasm.d.ts +143 -143
- package/native/wasm/pkg-node/clawpowers_wasm.js +798 -798
- package/native/wasm/pkg-node/clawpowers_wasm_bg.wasm.d.ts +40 -40
- package/native/wasm/pkg-node/package.json +12 -12
- package/native/wasm/src/lib.rs +433 -433
- package/package.json +13 -8
- package/scripts/build-wasm.mjs +59 -0
- package/scripts/generate_hermes_wrappers.py +211 -0
- package/scripts/hermes_wrapper_overrides.json +184 -0
- package/scripts/run-python-script.mjs +48 -0
- package/scripts/verify-consumer-install.mjs +109 -0
- package/scripts/verify-wasm-artifacts.mjs +26 -3
- package/scripts/verify_hermes_wrappers.py +154 -0
- package/skill.json +20 -0
- package/skills/1password/SKILL.md +34 -0
- package/skills/README.md +44 -0
- package/skills/agent-nexus-2/SKILL.md +34 -0
- package/skills/apple-notes/SKILL.md +34 -0
- package/skills/apple-reminders/SKILL.md +34 -0
- package/skills/autoresearch/SKILL.md +43 -0
- package/skills/bear-notes/SKILL.md +34 -0
- package/skills/blogwatcher/SKILL.md +34 -0
- package/skills/blucli/SKILL.md +34 -0
- package/skills/bluebubbles/SKILL.md +34 -0
- package/skills/business-strategy/SKILL.md +41 -0
- package/skills/camsnap/SKILL.md +34 -0
- package/skills/canvas/SKILL.md +34 -0
- package/skills/clawhub/SKILL.md +34 -0
- package/skills/coding-agent/SKILL.md +34 -0
- package/skills/coding-discipline.skill/SKILL.md +34 -0
- package/skills/content-writer/SKILL.md +41 -0
- package/skills/discord/SKILL.md +34 -0
- package/skills/eightctl/SKILL.md +34 -0
- package/skills/execution-validation.skill/SKILL.md +34 -0
- package/skills/gemini/SKILL.md +34 -0
- package/skills/gh-issues/SKILL.md +34 -0
- package/skills/gifgrep/SKILL.md +34 -0
- package/skills/github/SKILL.md +41 -0
- package/skills/gog/SKILL.md +34 -0
- package/skills/goplaces/SKILL.md +34 -0
- package/skills/healthcheck/SKILL.md +34 -0
- package/skills/himalaya/SKILL.md +34 -0
- package/skills/humanize/SKILL.md +41 -0
- package/skills/imsg/SKILL.md +34 -0
- package/skills/itp/SKILL.md +112 -0
- package/skills/mcporter/SKILL.md +34 -0
- package/skills/model-usage/SKILL.md +34 -0
- package/skills/nano-pdf/SKILL.md +34 -0
- package/skills/node-connect/SKILL.md +34 -0
- package/skills/notion/SKILL.md +34 -0
- package/skills/obsidian/SKILL.md +34 -0
- package/skills/openai-whisper/SKILL.md +34 -0
- package/skills/openai-whisper-api/SKILL.md +34 -0
- package/skills/openhue/SKILL.md +34 -0
- package/skills/oracle/SKILL.md +34 -0
- package/skills/ordercli/SKILL.md +34 -0
- package/skills/peekaboo/SKILL.md +34 -0
- package/skills/polyclaw/SKILL.md +34 -0
- package/skills/prospector/SKILL.md +41 -0
- package/skills/rsi.skill/SKILL.md +34 -0
- package/skills/sag/SKILL.md +34 -0
- package/skills/security/SKILL.md +41 -0
- package/skills/session-logs/SKILL.md +34 -0
- package/skills/sherpa-onnx-tts/SKILL.md +34 -0
- package/skills/skill-creator/SKILL.md +34 -0
- package/skills/slack/SKILL.md +34 -0
- package/skills/songsee/SKILL.md +34 -0
- package/skills/sonoscli/SKILL.md +34 -0
- package/skills/spotify-player/SKILL.md +34 -0
- package/skills/strykr-prism/SKILL.md +41 -0
- package/skills/summarize/SKILL.md +34 -0
- package/skills/taskbridge/SKILL.md +34 -0
- package/skills/things-mac/SKILL.md +34 -0
- package/skills/tmux/SKILL.md +34 -0
- package/skills/trello/SKILL.md +34 -0
- package/skills/validator-agent/SKILL.md +41 -0
- package/skills/video-frames/SKILL.md +34 -0
- package/skills/voice-call/SKILL.md +34 -0
- package/skills/wacli/SKILL.md +34 -0
- package/skills/weather/SKILL.md +34 -0
- package/skills/webmcp-payments/SKILL.md +41 -0
- package/skills/xurl/SKILL.md +34 -0
- package/src/skills/catalog.ts +435 -435
- package/src/skills/executor.ts +56 -56
- package/src/skills/index.ts +3 -3
- package/src/skills/itp/SKILL.md +112 -112
- package/src/skills/loader.ts +262 -193
- package/native/ffi/index.node +0 -0
- package/native/wasm/pkg-node/.gitignore +0 -6
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: itp
|
|
3
|
+
description: "Identical Twins Protocol — compressed agent-to-agent messaging for repeated operational language. Use when sending messages between agents."
|
|
4
|
+
metadata:
|
|
5
|
+
openclaw:
|
|
6
|
+
requires:
|
|
7
|
+
bins: [python3]
|
|
8
|
+
env: []
|
|
9
|
+
config: []
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# ITP — Identical Twins Protocol
|
|
13
|
+
|
|
14
|
+
Compressed agent-to-agent messaging protocol that uses a shared codebook of common patterns, operations, and agent shorthand.
|
|
15
|
+
|
|
16
|
+
Current measured performance is workload-dependent. The live v1 corpus benchmark shows **11.9% aggregate token reduction** across 25 messages, with delegation and status traffic compressing best. Separate swarm docs also include **modeled** prompt-cache economics layered on top of those live prompt sizes. Keep those two measurement types distinct.
|
|
17
|
+
|
|
18
|
+
## Quick Start
|
|
19
|
+
|
|
20
|
+
### 1. Start the ITP Server
|
|
21
|
+
|
|
22
|
+
The ITP server runs as a FastAPI service on port 8100:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Via LaunchAgent (recommended — auto-starts on boot)
|
|
26
|
+
launchctl load ~/Library/LaunchAgents/com.agenteconomy.itp-server.plist
|
|
27
|
+
|
|
28
|
+
# Or manually
|
|
29
|
+
cd /Users/billwilson/.openclaw/workspace/tools/itp
|
|
30
|
+
python3 -m uvicorn itp_server:app --host 127.0.0.1 --port 8100
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### 2. Verify Health
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
curl http://localhost:8100/health
|
|
37
|
+
# → {"status": "ok", "version": "1.0.0", ...}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## API Endpoints
|
|
41
|
+
|
|
42
|
+
### Encode Message
|
|
43
|
+
`POST /tools/encode`
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"message": "Please analyze the trading performance and provide a status update",
|
|
47
|
+
"source_agent": "max",
|
|
48
|
+
"target_agent": "trading-director"
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
Returns: `{ "encoded": "ITP:...", "was_compressed": true, "savings_pct": 45.2, ... }`
|
|
52
|
+
|
|
53
|
+
### Decode Message
|
|
54
|
+
`POST /tools/decode`
|
|
55
|
+
```json
|
|
56
|
+
{
|
|
57
|
+
"message": "ITP:ANL+TRD/PERF→STS/UPD"
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
Returns: `{ "decoded": "...", "was_itp": true, ... }`
|
|
61
|
+
|
|
62
|
+
### Health Check
|
|
63
|
+
`GET /health`
|
|
64
|
+
Returns: `{ "status": "ok", ... }`
|
|
65
|
+
|
|
66
|
+
### Statistics
|
|
67
|
+
`GET /tools/stats`
|
|
68
|
+
Returns compression analytics and savings metrics.
|
|
69
|
+
|
|
70
|
+
### Codebook
|
|
71
|
+
`GET /tools/codebook`
|
|
72
|
+
Returns current codebook contents and stats.
|
|
73
|
+
|
|
74
|
+
### History
|
|
75
|
+
`GET /tools/history?limit=20`
|
|
76
|
+
Returns recent ITP message history.
|
|
77
|
+
|
|
78
|
+
## TypeScript Client
|
|
79
|
+
|
|
80
|
+
```typescript
|
|
81
|
+
import { encode, decode, healthCheck } from 'clawpowers/itp';
|
|
82
|
+
|
|
83
|
+
// Encode a message (graceful fallback if server is down)
|
|
84
|
+
const result = await encode("Analyze trading performance");
|
|
85
|
+
// { encoded: "ITP:...", wasCompressed: true, savingsPct: 45.2 }
|
|
86
|
+
|
|
87
|
+
// Decode an ITP message
|
|
88
|
+
const decoded = await decode("ITP:ANL+TRD/PERF");
|
|
89
|
+
// { decoded: "Analyze trading performance", wasItp: true }
|
|
90
|
+
|
|
91
|
+
// Check server status
|
|
92
|
+
const alive = await healthCheck();
|
|
93
|
+
// true or false
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Swarm Integration
|
|
97
|
+
|
|
98
|
+
ITP integrates with the Parallel Swarm module to compress task descriptions before fan-out and decode results after collection:
|
|
99
|
+
|
|
100
|
+
```typescript
|
|
101
|
+
import { encodeTaskDescription, decodeSwarmResult } from 'clawpowers/itp/swarm-bridge';
|
|
102
|
+
|
|
103
|
+
// Compress task before sending to sub-agents
|
|
104
|
+
const compressedTask = await encodeTaskDescription(task);
|
|
105
|
+
|
|
106
|
+
// Decode result from sub-agent
|
|
107
|
+
const decodedResult = await decodeSwarmResult(result);
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
## Graceful Degradation
|
|
111
|
+
|
|
112
|
+
All ITP functions fail gracefully — if the ITP server is unreachable, messages pass through unchanged with no errors thrown. This ensures ITP never blocks agent operations.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mcporter
|
|
3
|
+
description: "Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# mcporter
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `mcporter`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `development`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: model-usage
|
|
3
|
+
description: "Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost details."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [utilities, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# model-usage
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `model-usage`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost details.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `utilities`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: nano-pdf
|
|
3
|
+
description: "Edit PDFs with natural-language instructions using the nano-pdf CLI."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# nano-pdf
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `nano-pdf`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Edit PDFs with natural-language instructions using the nano-pdf CLI.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `development`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: node-connect
|
|
3
|
+
description: "Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# node-connect
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `node-connect`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Diagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps. Use when QR/setup code/manual connect fails, local Wi-Fi works but VPS/tailnet does not, or errors mention pairing.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `development`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: notion
|
|
3
|
+
description: "Notion API for creating and managing pages, databases, and blocks."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [productivity, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# notion
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `notion`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Notion API for creating and managing pages, databases, and blocks.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `productivity`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: obsidian
|
|
3
|
+
description: "Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [productivity, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# obsidian
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `obsidian`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `productivity`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openai-whisper
|
|
3
|
+
description: "Local speech-to-text with the Whisper CLI (no API key)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [media, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# openai-whisper
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `openai-whisper`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Local speech-to-text with the Whisper CLI (no API key).
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `media`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openai-whisper-api
|
|
3
|
+
description: "Transcribe audio via OpenAI Audio Transcriptions API (Whisper)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [media, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# openai-whisper-api
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `openai-whisper-api`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Transcribe audio via OpenAI Audio Transcriptions API (Whisper).
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `media`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openhue
|
|
3
|
+
description: "Control Philips Hue lights and scenes via the OpenHue CLI."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [smart-home, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# openhue
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `openhue`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Control Philips Hue lights and scenes via the OpenHue CLI.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `smart-home`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: oracle
|
|
3
|
+
description: "Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# oracle
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `oracle`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `development`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ordercli
|
|
3
|
+
description: "Foodora-only CLI for checking past orders and active order status (Deliveroo WIP)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [utilities, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# ordercli
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `ordercli`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Foodora-only CLI for checking past orders and active order status (Deliveroo WIP).
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `utilities`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: peekaboo
|
|
3
|
+
description: "Capture and automate macOS UI with the Peekaboo CLI."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [media, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# peekaboo
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `peekaboo`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Capture and automate macOS UI with the Peekaboo CLI.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `media`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: polyclaw
|
|
3
|
+
description: "Trade on Polymarket via split + CLOB execution. Browse markets, track positions with P&L, discover hedges via LLM. Polygon/Web3."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [finance, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# polyclaw
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `polyclaw`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Trade on Polymarket via split + CLOB execution. Browse markets, track positions with P&L, discover hedges via LLM. Polygon/Web3.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `managed`
|
|
26
|
+
- Category: `finance`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: prospector
|
|
3
|
+
description: "Find leads, prospects, and contacts matching an Ideal Customer Profile. Searches companies via Exa and enriches contacts via Apollo, outputting to CSV and optionally syncing to Attio CRM."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [productivity, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# Prospector
|
|
12
|
+
|
|
13
|
+
Lead-generation workflow for finding companies and enriching contacts against an ICP.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Find leads, prospects, and contacts matching an Ideal Customer Profile. Searches companies via Exa and enriches contacts via Apollo, outputting to CSV and optionally syncing to Attio CRM.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- when the user asks to find leads or prospects
|
|
22
|
+
- when building a contact list that matches an ICP
|
|
23
|
+
- when exporting prospect results to CSV or syncing to CRM
|
|
24
|
+
## Quickstart
|
|
25
|
+
|
|
26
|
+
- configure Exa and Apollo API keys first
|
|
27
|
+
- collect ICP inputs such as industry, company size, geography, and contact count
|
|
28
|
+
- run the search and export results to CSV
|
|
29
|
+
## Source of truth
|
|
30
|
+
|
|
31
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
32
|
+
- Catalog entry source class: `managed`
|
|
33
|
+
- Category: `productivity`
|
|
34
|
+
|
|
35
|
+
## Notes
|
|
36
|
+
|
|
37
|
+
- The source skill expects Exa and Apollo, with optional Attio sync.
|
|
38
|
+
- This wrapper does not claim those third-party credentials or integrations are preconfigured in Hermes.
|
|
39
|
+
## Compatibility boundary
|
|
40
|
+
|
|
41
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: rsi.skill
|
|
3
|
+
description: "RSI self-improvement cycles implementing measure → hypothesize → mutate → test → apply/discard → repeat for agent capability enhancement."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# rsi.skill
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `rsi.skill`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
RSI self-improvement cycles implementing measure → hypothesize → mutate → test → apply/discard → repeat for agent capability enhancement.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `managed`
|
|
26
|
+
- Category: `development`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sag
|
|
3
|
+
description: "ElevenLabs text-to-speech with mac-style say UX."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [media, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# sag
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `sag`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
ElevenLabs text-to-speech with mac-style say UX.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- use this skill when the task matches the capability described above
|
|
22
|
+
## Source of truth
|
|
23
|
+
|
|
24
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
25
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
26
|
+
- Category: `media`
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This wrapper makes the skill discoverable and loadable by Hermes as a standard `SKILL.md` bundle.
|
|
31
|
+
- It does not, by itself, claim that every underlying runtime, CLI, API integration, or library dependency behind the broader ClawPowers ecosystem is fully configured in Hermes.
|
|
32
|
+
## Compatibility boundary
|
|
33
|
+
|
|
34
|
+
This file is part of the Hermes-compatible top-level `skills/` surface for this branch. It should be read as a discoverable skill bundle, not as a blanket claim that the wider `clawpowers` library/runtime surface is fully configured inside Hermes.
|