@jelou/cli 1.5.1 → 1.5.3
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 +20 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -102,26 +102,37 @@ channels"_ — the right `jelou` command gets invoked for you.
|
|
|
102
102
|
|
|
103
103
|
The CLI ships with these skills:
|
|
104
104
|
|
|
105
|
-
| Skill
|
|
106
|
-
|
|
|
107
|
-
| `jelou`
|
|
108
|
-
| `jelou-functions`
|
|
109
|
-
| `jelou-datum`
|
|
110
|
-
| `jelou-brain`
|
|
111
|
-
| `jelou-whatsapp`
|
|
112
|
-
| `jelou-marketplace`
|
|
113
|
-
| `jelou-secret`
|
|
105
|
+
| Skill | Covers |
|
|
106
|
+
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
107
|
+
| `jelou` | Install, login, profiles, JSON mode, `--describe`, troubleshooting |
|
|
108
|
+
| `jelou-functions` | `functions init / dev / deploy / logs / rollback / list / info / create / delete / secrets / tokens / cron / deployments` |
|
|
109
|
+
| `jelou-datum` | `datum databases / collections / api-keys / triggers / plans` |
|
|
110
|
+
| `jelou-brain` | `brain list / show / create / update / delete / knowledge`, plus `channel list / create / connect / disconnect` (channels are brain wiring) |
|
|
111
|
+
| `jelou-whatsapp` | `bot list`, `template list / show / create / update / delete / upload-media`, `campaign list / show / create / cancel / reschedule` |
|
|
112
|
+
| `jelou-marketplace` | `marketplace list / install / installed` |
|
|
113
|
+
| `jelou-secret` | `secret list / set / delete` (organization secrets) |
|
|
114
|
+
| `jelou-build-workflow` | BrainOps build flow: discover, pull, edit, mint ids, validate, and push one draft workflow |
|
|
115
|
+
| `jelou-qa-workflow` | BrainOps QA flow: run tester-chat turns, inspect traces, produce verdicts, reports, and fix hints |
|
|
114
116
|
|
|
115
117
|
Manage skills manually any time:
|
|
116
118
|
|
|
117
119
|
```bash
|
|
120
|
+
jelou agent install # interactive wizard for humans
|
|
118
121
|
jelou agent install --global # all skills, detected agents only
|
|
119
122
|
jelou agent install --global --all-targets # all skills, every supported agent (including those not yet installed locally)
|
|
123
|
+
jelou agent install --global --targets codex # install for one or more agents
|
|
120
124
|
jelou agent install --global --only datum # just one product
|
|
121
125
|
jelou agent install --global --only brain,whatsapp # multiple
|
|
126
|
+
jelou agent install --global --only build-workflow,qa-workflow # BrainOps only
|
|
122
127
|
jelou agent install --global --api # Functions API variant
|
|
128
|
+
jelou agent install --global --targets codex --yes --no-input # CI-friendly
|
|
123
129
|
```
|
|
124
130
|
|
|
131
|
+
In a human terminal, `agent install` opens a short wizard for target agents,
|
|
132
|
+
scope, install method, and final confirmation. In CI, JSON mode, agent mode, or
|
|
133
|
+
piped stdout it never prompts; pass `--targets`, `--all-targets`, `--global`,
|
|
134
|
+
`--method copy`, and `--yes` to make the intended install explicit.
|
|
135
|
+
|
|
125
136
|
`--all-targets` is useful when an agent is installed _after_ `jelou login` — or
|
|
126
137
|
when you're about to install one and want the skills already in place. Cursor
|
|
127
138
|
specifically gets a copy (not a symlink) because its skill loader doesn't accept
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Jelou CLI — manage functions, brains, channels, and more",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"LICENSE"
|
|
18
18
|
],
|
|
19
19
|
"optionalDependencies": {
|
|
20
|
-
"@jelou/cli-darwin-arm64": "1.5.
|
|
21
|
-
"@jelou/cli-darwin-x64": "1.5.
|
|
22
|
-
"@jelou/cli-linux-x64": "1.5.
|
|
23
|
-
"@jelou/cli-linux-arm64": "1.5.
|
|
24
|
-
"@jelou/cli-win32-x64": "1.5.
|
|
20
|
+
"@jelou/cli-darwin-arm64": "1.5.3",
|
|
21
|
+
"@jelou/cli-darwin-x64": "1.5.3",
|
|
22
|
+
"@jelou/cli-linux-x64": "1.5.3",
|
|
23
|
+
"@jelou/cli-linux-arm64": "1.5.3",
|
|
24
|
+
"@jelou/cli-win32-x64": "1.5.3"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
27
|
"jelou",
|