@jelou/cli 1.86.0 → 1.87.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/package.json +13 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.87.0",
|
|
4
4
|
"description": "Build AI agents on the Jelou platform — from your terminal or your AI editor.",
|
|
5
5
|
"author": "Jelou Inc. (https://jelou.ai)",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"THIRD_PARTY_NOTICES.md"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@jelou/cli-darwin-arm64": "1.
|
|
27
|
-
"@jelou/cli-darwin-x64": "1.
|
|
28
|
-
"@jelou/cli-linux-x64": "1.
|
|
29
|
-
"@jelou/cli-linux-arm64": "1.
|
|
30
|
-
"@jelou/cli-win32-x64": "1.
|
|
26
|
+
"@jelou/cli-darwin-arm64": "1.87.0",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.87.0",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.87.0",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.87.0",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.87.0"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -58,37 +58,25 @@
|
|
|
58
58
|
"jelou": {
|
|
59
59
|
"minVersion": "1.80.0",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.
|
|
61
|
+
"version": "1.87.0",
|
|
62
62
|
"date": "2026-08-07",
|
|
63
|
-
"headline": "
|
|
63
|
+
"headline": "Asking your agent to \"build a tool\" now routes to `jelou tool` — with a full authoring guide — instead of a serverless function.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
|
-
"type": "
|
|
67
|
-
"text": "
|
|
66
|
+
"type": "fixed",
|
|
67
|
+
"text": "Agents asked to build a tool (\"build a tool\", \"crear una herramienta\") no longer reach for `jelou functions`: the installed skills now claim tool intent and route it to the `jelou tool` namespace."
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"type": "new",
|
|
71
|
-
"text": "
|
|
71
|
+
"text": "The workflow skills ship a complete tool-authoring guide: the `tools/<slug>.json` file shape, the input/output contract, which nodes a tool may use, the runtime limits, and the whole `create → push --dry-run → push → test → publish` loop."
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"type": "new",
|
|
75
|
-
"text": "
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"type": "new",
|
|
79
|
-
"text": "`jelou workflow validate` checks tool files: one START node, every END resolving to a declared output, no conversational step inside a tool graph (a tool run has no bot or conversation, so those park it forever), and no tool calling itself."
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"type": "heads_up",
|
|
83
|
-
"text": "Publishing a tool does not move its callers. Each `TOOL` step runs the version string pinned in its own configuration, so a new version reaches nobody until `jelou tool bump <slug> --to <version>` rewrites those pins and an ordinary `jelou push` ships the rewritten workflow files."
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"type": "heads_up",
|
|
87
|
-
"text": "`jelou.lock` is now version 3. An older CLI reads a v3 lockfile fine, but the moment it rewrites one — any `pull` or `push` — it silently drops the `tools` map. Everything else survives. Recover by running `jelou tool pull` again on the up-to-date CLI; nothing on the server is affected. If your team shares a repo, upgrade everyone before pulling tools into it."
|
|
75
|
+
"text": "The QA skill now covers `jelou test tool` — testing a tool is one deterministic call with a pass/fail exit code, not a chat conversation."
|
|
88
76
|
},
|
|
89
77
|
{
|
|
90
78
|
"type": "heads_up",
|
|
91
|
-
"text": "
|
|
79
|
+
"text": "Skill content does not refresh on `jelou login`. After updating, run `jelou agent install` in your project to get the new guidance into your AI editors."
|
|
92
80
|
}
|
|
93
81
|
]
|
|
94
82
|
}
|