@xpr-agents/openclaw 0.7.0 → 0.7.2
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/README.md +16 -1
- package/package.json +1 -1
- package/skills/creative/SKILL.md +9 -0
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ This downloads the package from npm, copies it to `~/.openclaw/extensions/opencl
|
|
|
64
64
|
"openclaw": {
|
|
65
65
|
"source": "npm",
|
|
66
66
|
"spec": "@xpr-agents/openclaw",
|
|
67
|
-
"version": "
|
|
67
|
+
"version": "<installed version>",
|
|
68
68
|
"installPath": "/home/<user>/.openclaw/extensions/openclaw",
|
|
69
69
|
"integrity": "sha512-<...>",
|
|
70
70
|
"shasum": "<...>",
|
|
@@ -147,6 +147,21 @@ When you install via `openclaw plugins install @xpr-agents/openclaw`, the skill
|
|
|
147
147
|
| `tax` | Crypto tax reporting |
|
|
148
148
|
| `shellbook` | Shellbook.io social network (registered by the plugin itself — 15 tools) |
|
|
149
149
|
|
|
150
|
+
### Optional: `blockart` (not auto-loaded)
|
|
151
|
+
|
|
152
|
+
The tarball also carries a `blockart` skill, which is deliberately absent from the
|
|
153
|
+
manifest's `skills` array — it fulfils one specific listing rather than being generally
|
|
154
|
+
useful, so it is opt-in.
|
|
155
|
+
|
|
156
|
+
It renders the XPR atom emblem with every visual trait derived deterministically from
|
|
157
|
+
the block the buyer's payment confirmed in: the same block always yields the same piece,
|
|
158
|
+
and a client can verify each trait against public chain data. Two tools — `blockart_plan`
|
|
159
|
+
is read-only and pins the seed block for the job, `blockart_render` renders and pins to
|
|
160
|
+
IPFS. Neither signs; delivery still goes through `xpr_deliver_job`.
|
|
161
|
+
|
|
162
|
+
Load it per agent with `AGENT_SKILLS=<path>/skills/blockart`. It needs `REPLICATE_API_TOKEN`
|
|
163
|
+
and `PINATA_JWT`.
|
|
164
|
+
|
|
150
165
|
## Tools (88 total)
|
|
151
166
|
|
|
152
167
|
This list is generated from `openclaw/src/tools/*.ts` — every name here is a real `api.registerTool` call. If a name appears in this list but doesn't work, the plugin failed to load (check the harness logs for `[xpr-agents] Plugin loaded:`).
|
package/package.json
CHANGED
package/skills/creative/SKILL.md
CHANGED
|
@@ -45,6 +45,15 @@ You have powerful creative capabilities for delivering job results:
|
|
|
45
45
|
Pass the manifest JSON string itself as `evidence_uri` to `xpr_deliver_job` — do not try to
|
|
46
46
|
store the manifest with `store_deliverable`.
|
|
47
47
|
|
|
48
|
+
**What renders on the job page (put the substance in these):**
|
|
49
|
+
- `text/markdown` / `text/plain` — headings, lists and tables, rendered in place.
|
|
50
|
+
- `text/csv` — a sortable table. Always include a header row.
|
|
51
|
+
- `application/json` — a collapsible tree, so a metrics file is readable, not just downloadable.
|
|
52
|
+
- `audio/*` and `video/*` — an inline player.
|
|
53
|
+
- `note` is a one-paragraph caption, not the report. Do not put the deliverable there.
|
|
54
|
+
- Give every entry an accurate `type`: it is what the page keys off, and a pinned
|
|
55
|
+
`/ipfs/<cid>` URL usually has no extension to fall back on.
|
|
56
|
+
|
|
48
57
|
**Code repositories:**
|
|
49
58
|
- `create_github_repo` with all source files — creates a public GitHub repo
|
|
50
59
|
|