@jelou/cli 1.85.0 → 1.86.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 +34 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.86.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.86.0",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.86.0",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.86.0",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.86.0",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.86.0"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -58,13 +58,37 @@
|
|
|
58
58
|
"jelou": {
|
|
59
59
|
"minVersion": "1.80.0",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.
|
|
61
|
+
"version": "1.86.0",
|
|
62
62
|
"date": "2026-08-07",
|
|
63
|
-
"headline": "
|
|
63
|
+
"headline": "Tools — the reusable subgraphs your workflows call — can now be pulled into the repo, edited as files, pushed, tested, published and versioned from the CLI.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
|
-
"type": "
|
|
67
|
-
"text": "`jelou
|
|
66
|
+
"type": "new",
|
|
67
|
+
"text": "`jelou tool` manages a tool end to end: `list` / `show` to find one, `pull` to write it to `tools/<slug>.json` as one self-contained file (envelope, inputs, outputs and graph together), `push` to ship your edits back, `publish` to freeze an immutable version, `versions` to see who pins what, and `bump` to repoint the workflows that call it. Envelope and contract editing (`create`, `update`, `clone`, `delete`, `input`, `output`) moved under the same namespace. Tools belong to the **app**, so every project under that app shares them — which is why `jelou pull` and `jelou push` still never touch them and each tool command acts on one named tool at a time."
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "new",
|
|
71
|
+
"text": "`jelou test tool <slug>` runs a tool server-side and reports which output fired. Without `--version` it runs the live draft, so you can check an unpublished edit before any caller sees it; a run that ends on a failure branch exits non-zero so CI can gate on it."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "new",
|
|
75
|
+
"text": "`jelou status` grows a tools section once the lockfile tracks tools — graph drift, contract drift, read-only markers and callers whose pinned version no longer exists. `jelou push` warns, and never fails, when `tools/*.json` has edits you have not shipped."
|
|
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."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "heads_up",
|
|
91
|
+
"text": "`jelou workflow tool ...` is now a hidden alias for `jelou tool ...` and will be removed in a future release. Existing scripts keep working today; move them to the short form."
|
|
68
92
|
}
|
|
69
93
|
]
|
|
70
94
|
}
|