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,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: canvas
|
|
3
|
+
description: "Display HTML content on connected OpenClaw nodes (Mac app, iOS, Android). Great for displaying games, visualizations, and dashboards."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [ai, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# canvas
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `canvas`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Display HTML content on connected OpenClaw nodes (Mac app, iOS, Android). Great for displaying games, visualizations, and dashboards.
|
|
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: `ai`
|
|
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: clawhub
|
|
3
|
+
description: "Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish your own skills."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# clawhub
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `clawhub`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish your own skills.
|
|
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: coding-agent
|
|
3
|
+
description: "Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# coding-agent
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `coding-agent`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases.
|
|
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: coding-discipline.skill
|
|
3
|
+
description: "Enforces strict TypeScript coding standards, test-first development, and zero-stub policies for production-grade agent code."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# coding-discipline.skill
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `coding-discipline.skill`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Enforces strict TypeScript coding standards, test-first development, and zero-stub policies for production-grade agent code.
|
|
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,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: content-writer
|
|
3
|
+
description: "Use this skill everytime you are writing an article, social media post, email, etc."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# Content Writer
|
|
12
|
+
|
|
13
|
+
Platform-aware writing skill for articles, posts, emails, and other outward-facing copy.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Use this skill everytime you are writing an article, social media post, email, etc.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- when writing an article, social post, email, or announcement
|
|
22
|
+
- when adapting the same idea to multiple platforms
|
|
23
|
+
- when you need concise platform-specific formatting rules
|
|
24
|
+
## Quickstart
|
|
25
|
+
|
|
26
|
+
- Use plain punctuation, straight quotes, and simple bullets.
|
|
27
|
+
- Avoid AI-slop phrasing and repetitive listicle structure.
|
|
28
|
+
- Match the output to the target platform instead of writing one generic draft.
|
|
29
|
+
## Source of truth
|
|
30
|
+
|
|
31
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
32
|
+
- Catalog entry source class: `managed`
|
|
33
|
+
- Category: `communication`
|
|
34
|
+
|
|
35
|
+
## Notes
|
|
36
|
+
|
|
37
|
+
- The source skill is stricter than this wrapper and includes extensive formatting and tone rules.
|
|
38
|
+
- This branch exports a Hermes-loadable version of the skill surface, not the entire external content pipeline.
|
|
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: discord
|
|
3
|
+
description: "Discord ops via the message tool (channel=discord)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# discord
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `discord`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Discord ops via the message tool (channel=discord).
|
|
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: `communication`
|
|
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: eightctl
|
|
3
|
+
description: "Control Eight Sleep pods (status, temperature, alarms, schedules)."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [smart-home, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# eightctl
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `eightctl`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Control Eight Sleep pods (status, temperature, alarms, schedules).
|
|
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: execution-validation.skill
|
|
3
|
+
description: "Multi-round automated validation pipeline for TypeScript/Solidity projects before publish or deploy."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# execution-validation.skill
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `execution-validation.skill`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Multi-round automated validation pipeline for TypeScript/Solidity projects before publish or deploy.
|
|
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: gemini
|
|
3
|
+
description: "Gemini CLI for one-shot Q&A, summaries, and generation."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [ai, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# gemini
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `gemini`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Gemini CLI for one-shot Q&A, summaries, and 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: `ai`
|
|
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: gh-issues
|
|
3
|
+
description: "Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# gh-issues
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `gh-issues`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments.
|
|
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: gifgrep
|
|
3
|
+
description: "Search GIF providers with CLI/TUI, download results, and extract stills/sheets."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [media, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# gifgrep
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `gifgrep`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Search GIF providers with CLI/TUI, download results, and extract stills/sheets.
|
|
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,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: github
|
|
3
|
+
description: "GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing diffs."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [development, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# GitHub
|
|
12
|
+
|
|
13
|
+
GitHub workflow wrapper for PRs, issues, CI runs, diffs, and API queries through the usual gh-driven lane.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing diffs.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- when checking PR or CI status
|
|
22
|
+
- when creating or commenting on issues and pull requests
|
|
23
|
+
- when reviewing diffs or querying GitHub state quickly
|
|
24
|
+
## Quickstart
|
|
25
|
+
|
|
26
|
+
- confirm the repo and target issue or PR first
|
|
27
|
+
- use the gh-driven lane for status, comments, diffs, and workflow inspection
|
|
28
|
+
- treat auth and repo context as prerequisites before acting
|
|
29
|
+
## Source of truth
|
|
30
|
+
|
|
31
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
32
|
+
- Catalog entry source class: `openclaw-bundled`
|
|
33
|
+
- Category: `development`
|
|
34
|
+
|
|
35
|
+
## Notes
|
|
36
|
+
|
|
37
|
+
- The catalog explicitly scopes this skill to issues, PRs, CI, review, and API queries.
|
|
38
|
+
- This Hermes wrapper does not guarantee gh auth or GitHub credentials are already configured in the current environment.
|
|
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: gog
|
|
3
|
+
description: "Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# gog
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `gog`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
|
|
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: `communication`
|
|
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: goplaces
|
|
3
|
+
description: "Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [utilities, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# goplaces
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `goplaces`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
|
|
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: healthcheck
|
|
3
|
+
description: "Host security hardening and risk-tolerance configuration for OpenClaw deployments. Use when a user asks for security audits, firewall/SSH/update hardening, risk posture, exposure review, or OpenClaw cron health."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [utilities, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# healthcheck
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `healthcheck`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Host security hardening and risk-tolerance configuration for OpenClaw deployments. Use when a user asks for security audits, firewall/SSH/update hardening, risk posture, exposure review, or OpenClaw cron health.
|
|
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: himalaya
|
|
3
|
+
description: "CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# himalaya
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `himalaya`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML.
|
|
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: `communication`
|
|
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: humanize
|
|
3
|
+
description: "Transforms AI-generated writing into content that reads authentically human — passing AI detectors and resonating with real readers."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# Humanize
|
|
12
|
+
|
|
13
|
+
Rewrite protocol for making drafts sound like a specific human rather than generic AI copy.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
Transforms AI-generated writing into content that reads authentically human — passing AI detectors and resonating with real readers.
|
|
18
|
+
|
|
19
|
+
## When to use
|
|
20
|
+
|
|
21
|
+
- after a first draft exists
|
|
22
|
+
- before publishing external content
|
|
23
|
+
- when the copy sounds too polished, flat, or corporate
|
|
24
|
+
## Quickstart
|
|
25
|
+
|
|
26
|
+
- add specifics such as dates, versions, names, and concrete numbers
|
|
27
|
+
- vary sentence length on purpose
|
|
28
|
+
- state a real opinion instead of hedging every claim
|
|
29
|
+
## Source of truth
|
|
30
|
+
|
|
31
|
+
- Catalog source: `src/skills/catalog.ts`
|
|
32
|
+
- Catalog entry source class: `managed`
|
|
33
|
+
- Category: `communication`
|
|
34
|
+
|
|
35
|
+
## Notes
|
|
36
|
+
|
|
37
|
+
- The source skill includes a fuller rewrite framework, self-check protocol, and companion files.
|
|
38
|
+
- This wrapper exposes the discoverable Hermes skill surface only.
|
|
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: imsg
|
|
3
|
+
description: "iMessage/SMS CLI for listing chats, history, and sending messages via Messages.app."
|
|
4
|
+
metadata:
|
|
5
|
+
hermes:
|
|
6
|
+
tags: [communication, clawpowers-catalog, hermes-compatible]
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
<!-- generated-by: scripts/generate_hermes_wrappers.py -->
|
|
10
|
+
|
|
11
|
+
# imsg
|
|
12
|
+
|
|
13
|
+
This Hermes-compatible skill wrapper exports the ClawPowers catalog entry for `imsg`.
|
|
14
|
+
|
|
15
|
+
## Purpose
|
|
16
|
+
|
|
17
|
+
iMessage/SMS CLI for listing chats, history, and sending messages via Messages.app.
|
|
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: `communication`
|
|
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.
|