@jelou/cli 1.10.1 → 1.12.1
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 +11 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -26,19 +26,22 @@ Don't have a Jelou account yet?
|
|
|
26
26
|
## Quickstart
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
jelou login
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
jelou functions dev # local dev server with hot reload
|
|
33
|
-
jelou functions deploy # ship to production
|
|
29
|
+
jelou login # agent skills auto-install into Claude
|
|
30
|
+
# Code, Cursor, Codex, and Windsurf
|
|
31
|
+
mkdir my-project && cd my-project # project files live in this folder
|
|
34
32
|
```
|
|
35
33
|
|
|
34
|
+
Open a fresh session in any of those editors from that folder and ask for what
|
|
35
|
+
you want — "build a support workflow", "deploy a Stripe webhook", "send a
|
|
36
|
+
WhatsApp campaign". The agent picks the right `jelou` command and runs it.
|
|
37
|
+
|
|
38
|
+
Prefer the terminal? `jelou --help` browses the full command tree.
|
|
39
|
+
|
|
36
40
|
## What you can do
|
|
37
41
|
|
|
38
|
-
- **Build workflows** — design, test, and ship
|
|
42
|
+
- **Build workflows** — design, test, and ship project workflows end-to-end
|
|
39
43
|
- **Build functions** — serverless functions integrated into the Jelou ecosystem
|
|
40
|
-
- **Connect channels** — wire
|
|
41
|
-
Instagram
|
|
44
|
+
- **Connect channels** — wire projects to Web, WhatsApp, Facebook, Instagram
|
|
42
45
|
- **Manage WhatsApp** — bots, outbound templates, and bulk campaigns
|
|
43
46
|
- **Manage databases** — provision and operate Jelou-managed databases
|
|
44
47
|
- **Browse the marketplace** — connect 3,000+ integrations including payments
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.1",
|
|
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",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"THIRD_PARTY_NOTICES.md"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@jelou/cli-darwin-arm64": "1.
|
|
23
|
-
"@jelou/cli-darwin-x64": "1.
|
|
24
|
-
"@jelou/cli-linux-x64": "1.
|
|
25
|
-
"@jelou/cli-linux-arm64": "1.
|
|
26
|
-
"@jelou/cli-win32-x64": "1.
|
|
22
|
+
"@jelou/cli-darwin-arm64": "1.12.1",
|
|
23
|
+
"@jelou/cli-darwin-x64": "1.12.1",
|
|
24
|
+
"@jelou/cli-linux-x64": "1.12.1",
|
|
25
|
+
"@jelou/cli-linux-arm64": "1.12.1",
|
|
26
|
+
"@jelou/cli-win32-x64": "1.12.1"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"jelou",
|