@jelou/cli 1.81.1 → 1.83.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 +35 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jelou/cli",
3
- "version": "1.81.1",
3
+ "version": "1.83.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.81.1",
27
- "@jelou/cli-darwin-x64": "1.81.1",
28
- "@jelou/cli-linux-x64": "1.81.1",
29
- "@jelou/cli-linux-arm64": "1.81.1",
30
- "@jelou/cli-win32-x64": "1.81.1"
26
+ "@jelou/cli-darwin-arm64": "1.83.0",
27
+ "@jelou/cli-darwin-x64": "1.83.0",
28
+ "@jelou/cli-linux-x64": "1.83.0",
29
+ "@jelou/cli-linux-arm64": "1.83.0",
30
+ "@jelou/cli-win32-x64": "1.83.0"
31
31
  },
32
32
  "keywords": [
33
33
  "jelou",
@@ -58,21 +58,41 @@
58
58
  "jelou": {
59
59
  "minVersion": "1.80.0",
60
60
  "release_notes": {
61
- "version": "1.81.1",
62
- "date": "2026-08-03",
63
- "headline": "`jelou functions logs` now shows the newest lines and says when the log endpoint fails, instead of reporting that a function has no logs.",
61
+ "version": "1.83.0",
62
+ "date": "2026-08-05",
63
+ "headline": "The workflow audit now recognizes every kind of step a project can contain, so it stops reporting handoffs, markers and sticky notes as problems.",
64
64
  "highlights": [
65
65
  {
66
- "type": "fixed",
67
- "text": "`functions logs --history` reported \"No logs found\" when the log endpoint had actually failed. The endpoint answers with HTTP 200 and an `error` field, which the CLI ignored so an upstream failure was indistinguishable from a function that had never logged. The failure is now reported with the upstream message and a non-zero exit."
66
+ "type": "improved",
67
+ "text": "`jelou` audits no longer report \"there is no way to reach a person\" on bots that have one. The audit now recognizes human-handoff steps and looks for them across every workflow the project routes to, not just the one it is reading."
68
68
  },
69
69
  {
70
- "type": "fixed",
71
- "text": "`--order desc` returns the NEWEST entries. The endpoint ignores ordering and always serves the oldest page first, so `--order desc --limit 6` used to hand back the six OLDEST lines; the newest only appeared if you inflated `--limit` until a page happened to reach the end of the log. `desc` now pages to the end and keeps the last N. It costs one request per page, so narrow with `--since` when you only need recent lines."
70
+ "type": "improved",
71
+ "text": "Payment, billing and ecommerce steps are recognized as money steps. Previously the audit's money checks could walk straight past them, including the ones only older projects use."
72
72
  },
73
73
  {
74
- "type": "fixed",
75
- "text": "`--limit` above 1000 returned nothing at all: the endpoint's ceiling is 1000 and anything higher tripped the error path above. The value is clamped to 1000 per page, and the CLI says so rather than silently changing what you asked for."
74
+ "type": "improved",
75
+ "text": "Sticky notes and placeholders on the canvas are no longer reported as broken, unreachable steps."
76
+ },
77
+ {
78
+ "type": "improved",
79
+ "text": "Steps that hand off to another workflow are no longer flagged as dead ends — the conversation continues in the other file, and the audit now follows it."
80
+ },
81
+ {
82
+ "type": "improved",
83
+ "text": "A milestone marker is no longer read as a reply to the customer. A conversation that ends on one is correctly reported as ending in silence."
84
+ },
85
+ {
86
+ "type": "improved",
87
+ "text": "Audits of older projects are more accurate: the audit now knows which step types the platform still stores but the CLI can no longer author, and reads them accordingly instead of guessing."
88
+ },
89
+ {
90
+ "type": "improved",
91
+ "text": "Audits spend less time re-checking what `jelou workflow validate` already covers, and now say plainly which parts of a workflow nothing validates at all."
92
+ },
93
+ {
94
+ "type": "heads_up",
95
+ "text": "Skill content does not refresh on `jelou login`. Run `jelou agent install` to pick this up in Claude Code, Cursor, Codex and the other detected editors."
76
96
  }
77
97
  ]
78
98
  }