@odla-ai/cli 0.48.4 → 0.49.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 +6 -1
- package/dist/bin.cjs +40 -4
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-BD5KIG63.js → chunk-7627AY5G.js} +41 -5
- package/dist/chunk-7627AY5G.js.map +1 -0
- package/dist/{cli-MXYYOFBR.js → cli-AT6M3FCR.js} +2 -2
- package/dist/index.cjs +40 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/skills/odla/SKILL.md +7 -3
- package/dist/chunk-BD5KIG63.js.map +0 -1
- /package/dist/{cli-MXYYOFBR.js.map → cli-AT6M3FCR.js.map} +0 -0
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.49.1",
|
|
4
4
|
"description": "Agent-operable CLI for odla provisioning, calendar consent and connection lifecycle, System AI administration, Worker secrets, security jobs, and smoke checks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://odla.ai/docs/packages/cli",
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"prepublishOnly": "npm run build"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@odla-ai/ai": "0.17.
|
|
61
|
+
"@odla-ai/ai": "0.17.2",
|
|
62
62
|
"@odla-ai/apps": "0.15.1",
|
|
63
|
-
"@odla-ai/brand": "0.8.
|
|
63
|
+
"@odla-ai/brand": "0.8.2",
|
|
64
64
|
"@odla-ai/db": "0.13.0",
|
|
65
65
|
"@odla-ai/security": "0.3.3"
|
|
66
66
|
},
|
package/skills/odla/SKILL.md
CHANGED
|
@@ -214,11 +214,15 @@ on the app. It is platform-side: there is nothing PM-specific to install or
|
|
|
214
214
|
provision. Start a session by reading it, and keep it current while you build:
|
|
215
215
|
|
|
216
216
|
```cmd
|
|
217
|
-
npx --yes @odla-ai/cli@latest pm
|
|
217
|
+
npx --yes @odla-ai/cli@latest pm brief --app <appId> # bounded counts + actionable windows
|
|
218
218
|
npx --yes @odla-ai/cli@latest pm start --app <appId> # claim the top Ready task
|
|
219
219
|
```
|
|
220
220
|
|
|
221
|
-
`pm
|
|
221
|
+
`pm brief` returns exact open-goal, Ready, Doing, current-principal, and bug
|
|
222
|
+
counts with only the top actionable rows. Every omitted window names its full,
|
|
223
|
+
scoped expansion command. `pm next --brief` and `pm handoff --brief` return the
|
|
224
|
+
same projection; their defaults remain the existing full intake contracts.
|
|
225
|
+
The briefing ends by naming the command to run next, and `pm start` claims Ready
|
|
222
226
|
work in one call — it reads the current revision and compare-and-swaps against
|
|
223
227
|
it server-side, so you never carry a revision between commands. It cannot mark
|
|
224
228
|
work Ready: that contract is reviewed separately.
|
|
@@ -229,7 +233,7 @@ For a durable supervisor loop, establish and persist an exact-project PM cursor:
|
|
|
229
233
|
npx --yes @odla-ai/cli@latest pm watch --app <appId> --entity task --jsonl
|
|
230
234
|
```
|
|
231
235
|
|
|
232
|
-
A Ready event is a wake-up signal, not permission: re-read `pm
|
|
236
|
+
A Ready event is a wake-up signal, not permission: re-read `pm brief` and win the
|
|
233
237
|
atomic claim before starting — `pm start` does both, against the revision that
|
|
234
238
|
is current when it runs rather than the one the event carried. PM-attached
|
|
235
239
|
comments use the same cursor (`--action comment.created`); general Discussion
|