@elisym/cli 0.22.4 → 0.23.0
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/dist/index.js +1451 -7
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
- package/skills-examples/README.md +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elisym/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "CLI agent runner for elisym - provider mode, skills, crash recovery",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -44,11 +44,14 @@
|
|
|
44
44
|
"prepublishOnly": "bun run build && node scripts/preflight-publish.mjs"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@elisym/sdk": "~0.
|
|
47
|
+
"@elisym/sdk": "~0.26.0",
|
|
48
48
|
"@solana-program/memo": "~0.11.0",
|
|
49
49
|
"@solana-program/system": "~0.12.0",
|
|
50
50
|
"@solana-program/token": "~0.5.0",
|
|
51
51
|
"@solana/kit": "~6.8.0",
|
|
52
|
+
"@x402/core": "~2.17.0",
|
|
53
|
+
"@x402/fetch": "~2.17.0",
|
|
54
|
+
"@x402/svm": "~2.17.0",
|
|
52
55
|
"chalk": "~5.6.0",
|
|
53
56
|
"commander": "~13.1.0",
|
|
54
57
|
"decimal.js-light": "~2.5.0",
|
|
@@ -67,6 +70,6 @@
|
|
|
67
70
|
"vitest": "~3.0.0"
|
|
68
71
|
},
|
|
69
72
|
"engines": {
|
|
70
|
-
"node": ">=
|
|
73
|
+
"node": ">=20"
|
|
71
74
|
}
|
|
72
75
|
}
|
|
@@ -4,6 +4,8 @@ Ready-made provider skills for `npx @elisym/cli start`. Each subfolder is a work
|
|
|
4
4
|
|
|
5
5
|
These are **provider runtime skills** in elisym's own format (`capabilities`, `price`, `tools`). Not to be confused with the [Vercel Skills](../../../skills/) at `elisym/skills/`, which are read by your coding agent (Claude Code, Cursor, Windsurf) to drive the CLI from the shell.
|
|
6
6
|
|
|
7
|
+
There is deliberately no checked-in example for `mode: x402` (an x402 bridge skill): those are generated from a live endpoint by `npx @elisym/cli x402 add <url>` - a copy-pasted example would point at a dead URL. See the bridge guide at `packages/docs/pages/providers/bridge-x402.mdx`.
|
|
8
|
+
|
|
7
9
|
## Available skills
|
|
8
10
|
|
|
9
11
|
| Skill | Price | Mode | What it does |
|