@jelou/cli 1.87.1 → 1.88.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.
Files changed (1) hide show
  1. package/package.json +29 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jelou/cli",
3
- "version": "1.87.1",
3
+ "version": "1.88.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.87.1",
27
- "@jelou/cli-darwin-x64": "1.87.1",
28
- "@jelou/cli-linux-x64": "1.87.1",
29
- "@jelou/cli-linux-arm64": "1.87.1",
30
- "@jelou/cli-win32-x64": "1.87.1"
26
+ "@jelou/cli-darwin-arm64": "1.88.0",
27
+ "@jelou/cli-darwin-x64": "1.88.0",
28
+ "@jelou/cli-linux-x64": "1.88.0",
29
+ "@jelou/cli-linux-arm64": "1.88.0",
30
+ "@jelou/cli-win32-x64": "1.88.0"
31
31
  },
32
32
  "keywords": [
33
33
  "jelou",
@@ -58,33 +58,45 @@
58
58
  "jelou": {
59
59
  "minVersion": "1.80.0",
60
60
  "release_notes": {
61
- "version": "1.87.1",
62
- "date": "2026-08-07",
63
- "headline": "Fixed the `jelou tool` workflow end to end — testing, publishing, and canvas layout all work against real tools now.",
61
+ "version": "1.88.0",
62
+ "date": "2026-08-09",
63
+ "headline": "New `jelou context`, retry-safe database provisioning, and a working `jelou tool` authoring loop.",
64
64
  "highlights": [
65
65
  {
66
- "type": "fixed",
67
- "text": "`jelou test tool` now actually runs your tool. Every run against a real tool came back \"returned no output\" because the request never identified an end user."
66
+ "type": "new",
67
+ "text": "`jelou context` identity, linked project and workflow drift, database inventory with collections, secret and api-key names, the model allowlist, and the node-type digest, all in one call. Replaces the seven-command discovery sequence agents used to run at the start of every build. Sections degrade independently: one that fails is named in `degraded[]` instead of failing the command, and secret values are never emitted."
68
+ },
69
+ {
70
+ "type": "new",
71
+ "text": "A validate-on-write hook runs `jelou workflow validate --partial` the moment an agent writes workflow JSON, so diagnostics arrive in the same turn instead of three turns later. Advisory only — it never blocks the write."
72
+ },
73
+ {
74
+ "type": "improved",
75
+ "text": "`jelou databases collections create` is now get-or-create. An existing collection whose shape matches is reused and reported with `reused: true`, so a retried build no longer fails on its own earlier progress. A collection that differs is never silently handed back — the command refuses with the exact delta."
76
+ },
77
+ {
78
+ "type": "improved",
79
+ "text": "`jelou databases api-keys regenerate` now confirms before invalidating a live token. Pass `--yes` in scripts."
68
80
  },
69
81
  {
70
82
  "type": "fixed",
71
- "text": "A run that produces no output now names the node that failed and its error, instead of blaming conversational nodes your tool does not have."
83
+ "text": "`jelou workflow validate` understands tool files. It no longer flags `$output.set()` inside a tool's CODE node that is how a tool returns a value — it validates `tools/*.json` alongside `workflows/*.json`, and it runs the real tool rules, so a tool that would fail `jelou tool push` can no longer pass validation first."
72
84
  },
73
85
  {
74
86
  "type": "fixed",
75
- "text": "`jelou tool publish` works on version labels you have not used before. Those previously failed with a server error."
87
+ "text": "`jelou test tool` is findable. It now leads `jelou test --help` instead of sorting last under a description that mentioned only chat testing."
76
88
  },
77
89
  {
78
90
  "type": "fixed",
79
- "text": "`jelou tool push` lays the canvas out left to right instead of shipping the coordinates in your file, so a pushed tool opens readable in the editor. Nodes you positioned yourself are still never moved."
91
+ "text": "`jelou databases collections create` rejects a malformed `--field` or `--name` with exit 2 before making any network call, as `--describe` always advertised."
80
92
  },
81
93
  {
82
- "type": "new",
83
- "text": "`jelou test tool --user-id <id>` runs consecutive tests as the same end user. Without it every run gets a fresh one, so runs no longer leak state into each other."
94
+ "type": "heads_up",
95
+ "text": "`jelou tool create` now creates SHARED tools by default instead of brain-scoped ones. This is the fix for a new tool vanishing from `jelou tool list` and `jelou tool pull --all` immediately after you created it — those only ever list app-shared tools, and `pull --all` went on to report the new tool as deleted. For the old behavior, pass `--scope BRAIN --brain <id>` explicitly."
84
96
  },
85
97
  {
86
98
  "type": "heads_up",
87
- "text": "The bundled tool-authoring guide was wrong about how data moves through a tool it said to read inputs from `$memory` instead of `$input` / `$context` / `$output`. Run `jelou agent install` after upgrading; skill content does not refresh on its own."
99
+ "text": "`jelou databases api-keys create` now refuses a duplicate name with exit 2 instead of minting another key. A key's token cannot be re-read after creation, so silently \"reusing\" one would hand you a key you cannot store. The error tells you whether the existing key was ever used, so you know if rotating is safe; rotate with `jelou databases api-keys regenerate --yes`."
88
100
  }
89
101
  ]
90
102
  }