@jelou/cli 1.108.0 → 1.108.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/package.json +40 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.108.
|
|
3
|
+
"version": "1.108.2",
|
|
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.108.
|
|
27
|
-
"@jelou/cli-darwin-x64": "1.108.
|
|
28
|
-
"@jelou/cli-linux-x64": "1.108.
|
|
29
|
-
"@jelou/cli-linux-arm64": "1.108.
|
|
30
|
-
"@jelou/cli-win32-x64": "1.108.
|
|
26
|
+
"@jelou/cli-darwin-arm64": "1.108.2",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.108.2",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.108.2",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.108.2",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.108.2"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -58,17 +58,45 @@
|
|
|
58
58
|
"jelou": {
|
|
59
59
|
"minVersion": "1.100.2",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.108.
|
|
62
|
-
"date": "2026-09-
|
|
63
|
-
"headline": "
|
|
61
|
+
"version": "1.108.2",
|
|
62
|
+
"date": "2026-09-02",
|
|
63
|
+
"headline": "Cold start drops 167ms → 49ms, and an optional update no longer interrupts an agent mid-task.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
|
-
"type": "
|
|
67
|
-
"text": "
|
|
66
|
+
"type": "fixed",
|
|
67
|
+
"text": "Agents no longer stop what they are doing to ask about an optional CLI update. The notice is dismissed on its own and mentioned in one line at the end of the answer, so a release landing mid-session stops derailing the task."
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "fixed",
|
|
71
|
+
"text": "Answering \"Exit\" at the update prompt now actually dismisses it. Nothing was being recorded, so the prompt came back on the very next command."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "fixed",
|
|
75
|
+
"text": "Every failure path now exits with the code it reports. Commands that returned `error.code` 4 (re-auth) or 3 (not found) still exited 1, so agents branching on the exit code took the wrong path."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "fixed",
|
|
79
|
+
"text": "`jelou push` now reports unresolved tool output-branch warnings in the `--json` envelope. They were printed for humans and dropped for everyone else."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "fixed",
|
|
83
|
+
"text": "`jelou changelog` reads the shipped changelog files again — section parsing looked for a heading no file actually uses."
|
|
68
84
|
},
|
|
69
85
|
{
|
|
70
86
|
"type": "improved",
|
|
71
|
-
"text": "
|
|
87
|
+
"text": "Cold start is down from 167ms to 49ms: command groups load on demand instead of all 37 up front, and the version check no longer blocks your command on a network round trip."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "improved",
|
|
91
|
+
"text": "The skill preamble every agent reads on each invocation shrank from ~11.5 KB to a stub, with the upgrade flow loaded only when something is actually out of date."
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"type": "improved",
|
|
95
|
+
"text": "Skills no longer show agents examples that pass `--yes` on destructive commands."
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "heads_up",
|
|
99
|
+
"text": "Destructive commands (`jelou project delete`, the `voice` surface, `logout`, and functions removals) now fail loudly under `--agent` / `--no-input` when `--yes` is missing. They used to exit 0 having done nothing. Add `--yes` to any script that relied on the old behavior."
|
|
72
100
|
}
|
|
73
101
|
]
|
|
74
102
|
}
|