@jelou/cli 1.31.0 → 1.33.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/README.md +6 -0
- package/package.json +15 -27
package/README.md
CHANGED
|
@@ -41,6 +41,10 @@ Prefer the terminal? `jelou --help` browses the full command tree.
|
|
|
41
41
|
|
|
42
42
|
- **Build workflows** — design, test, and ship project workflows end-to-end
|
|
43
43
|
- **Build functions** — serverless functions integrated into the Jelou ecosystem
|
|
44
|
+
- **Test before shipping** — record runs, trace step-by-step, search messages,
|
|
45
|
+
and open a local test dashboard for your workflows
|
|
46
|
+
- **Debug live conversations** — list, grep, and walk one user's chat timeline;
|
|
47
|
+
reset a user's cached state with a bot to retest cleanly
|
|
44
48
|
- **Connect channels** — wire projects to Web, WhatsApp, Facebook, Instagram
|
|
45
49
|
- **Manage WhatsApp** — bots, outbound templates, and bulk campaigns
|
|
46
50
|
- **Manage databases** — provision and operate Jelou-managed databases
|
|
@@ -64,6 +68,8 @@ session in Claude Code, Cursor, Codex, or Windsurf and just ask:
|
|
|
64
68
|
> "Provision a database for analytics"
|
|
65
69
|
>
|
|
66
70
|
> "Install the Stripe integration"
|
|
71
|
+
>
|
|
72
|
+
> "Why did this conversation go wrong yesterday at 3pm?"
|
|
67
73
|
|
|
68
74
|
The matching `jelou` command runs for you — agents pick the right flags from
|
|
69
75
|
context.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.33.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.33.0",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.33.0",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.33.0",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.33.0",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.33.0"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -56,43 +56,31 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"jelou": {
|
|
59
|
-
"minVersion": "1.
|
|
59
|
+
"minVersion": "1.32.0",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.
|
|
62
|
-
"date": "2026-05-
|
|
63
|
-
"headline": "
|
|
61
|
+
"version": "1.33.0",
|
|
62
|
+
"date": "2026-05-23",
|
|
63
|
+
"headline": "Five command surfaces — `users`, `logs`, `models`, `changelog`, and `test whatsapp` — are now visible on the `jelou` landing instead of hidden behind `jelou --help`.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
66
|
"type": "new",
|
|
67
|
-
"text": "`jelou
|
|
67
|
+
"text": "`jelou logs conversations list` / `logs chat` / `logs node` — walk a user's production chat timeline and inspect any single node execution's initial + final state."
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"type": "new",
|
|
71
|
-
"text": "`jelou
|
|
71
|
+
"text": "`jelou users reset` — hard-clear a user's cached state with a bot (`state` + `skill` + `state_manual`) so the next message starts fresh."
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
"type": "new",
|
|
75
|
-
"text": "`jelou
|
|
75
|
+
"text": "`jelou models list` / `models validate` — discover and validate AI models available to `AI_TASK` / `AI Agent` nodes."
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"type": "new",
|
|
79
|
-
"text": "`jelou
|
|
79
|
+
"text": "`jelou changelog [version]` — show the typed release notes baked into your binary for any past CLI version."
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
"type": "new",
|
|
83
|
-
"text": "
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"type": "fixed",
|
|
87
|
-
"text": "`/jelou-databases` skill no longer talks about \"billable resources\" — wording was misleading users into thinking every operation cost money."
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"type": "heads_up",
|
|
91
|
-
"text": "The `jelou test whatsapp` surface is experimental. First run on each profile prompts for acknowledgement; pass `--accept-experimental` or set `JELOU_WA_ACCEPT_EXPERIMENTAL=1` to dismiss permanently. Always use a burner number — never pair your primary WhatsApp account."
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"type": "heads_up",
|
|
95
|
-
"text": "The `jelou.minVersion` floor moves to `1.31.0`. Every CLI below `1.31.0` will hard-stop on the next non-allow-listed command (within the ~1 hour floor-cache TTL) until you run `npm install -g @jelou/cli@latest`."
|
|
83
|
+
"text": "`jelou test whatsapp ...` (experimental) — new section listing seven verbs for driving a paired WhatsApp number against your bot end-to-end (`install`, `pair`, `listen`, `send-text`, `messages-list`, `status`, `doctor`)."
|
|
96
84
|
}
|
|
97
85
|
]
|
|
98
86
|
}
|