octwin-cli 0.8.0 → 0.8.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/CHANGELOG.md CHANGED
@@ -1,660 +1,720 @@
1
- # Changelog — octwin-cli
2
-
3
- All notable changes to the `octwin` CLI (npm package [`octwin-cli`](https://www.npmjs.com/package/octwin-cli)).
4
- Format: [Keep a Changelog](https://keepachangelog.com/) — newest first, bucketed into
5
- **Added · Changed · Deprecated · Removed · Fixed · Security**. The platform-wide view lives in the
6
- repo root [`CHANGELOG.md`](../../CHANGELOG.md); this file is the CLI-only cut that ships with the package.
7
-
8
- ## [0.8.0] - 2026-08-27
9
-
10
- ### Added
11
- - **Five new command families, closing the gap between what a token reaches and what the CLI can
12
- ask.** A **Full CLI access** token spans the whole scope registry, and four of those domains had
13
- no command at all so the reach existed and there was nothing to type.
14
- - `octwin automation [campaigns]`every job the pack's declaration produced, with status,
15
- interval and last result (matched / acted / errors), under a health line whose counts come from
16
- SQL rather than from filtering the page (the job list is capped server-side, so a client-side
17
- count would depend on the cap). Writes: `run` · `pause` · `resume` · `send <campaignId>`.
18
- - `octwin integrations` what the pack **declares** beside what is actually **configured**, in
19
- one view, because a connection declared and never configured is the commonest reason an
20
- integration silently never fires and neither list alone can show it. Plus
21
- `preflight <key>` (diagnosis, no outbound call, `integrations:read`), `test <key>` (a live call,
22
- `integrations:write`, exits 1 on failure), `deliveries [id]`, `retry|cancel|send-now <id>`,
23
- and `events` for what arrived inbound.
24
- - `octwin journeys [id] [--funnel|--overview|--goals|--trends|--cost|--definition] [--stage <id>]`
25
- — the declared journeys, measured. Same flag grammar as `octwin analytics` on purpose: a journey
26
- funnel and an entity funnel are the same question about different subjects. `--definition` is
27
- the one view that works with no traffic.
28
- - `octwin performance [--detail]` the project's business indicators, each with its delta against
29
- the previous window and the `why` naming the declaration it came from. Needs `records:read`, not
30
- a `performance:*` scope (there is none), so a read-only token already reaches it.
31
- - `octwin usage` — model calls, tokens and cost, by model / kind / agent / channel; project when
32
- one is pinned, workspace otherwise. Needs no particular scope. **Model spend only**
33
- WhatsApp/Meta message billing is operator-only and outside the token scope registry, which the
34
- output says rather than leaving as an absence.
35
- - **`octwin automation run|pause|resume|send` accept the declaration KEY.** The routes take a UUID
36
- and answer a bare *"Malformed identifier in the URL"* 400 for anything else — but the key
37
- (`cart_recovery_nudge`) is what the list prints and what the author wrote in their own YAML. The
38
- key is now resolved against the list route, and an unknown one fails naming the keys that exist.
39
-
40
- ### Fixed
41
- - **A body-less write sent `content-type: application/json` and no body, so Fastify answered a bare
42
- `400 Bad Request`.** `apiSend` set the header unconditionally; every caller until now passed an
43
- object, so the branch was dead and the bug latent. The first body-less POST (`automation run`) hit
44
- it immediately. The header is now omitted when there is no body rather than each caller learning
45
- to pass `{}`, which is the per-site divergence that helper exists to prevent.
46
- - **Four URLs were exempt from the route guard.** `cli-routes.test.ts` reads a template literal in
47
- the first argument position, so `apiGet(base, t)` — a bare identifier — was never checked. That
48
- covered the `scheduling` engine-state and `agents` roster calls, and would have covered the new
49
- `journeys`, `performance` and `usage` ones. All now spelled as literals: the guard checks **62**
50
- URLs, up from 45.
51
-
52
- ## [0.7.3] - 2026-08-26
53
-
54
- ### Changed
55
- - **A marketplace listing request is now OPT-IN: `octwin deploy --request-listing`.** A plain
56
- `octwin deploy` says nothing about the public marketplace — it neither asks for a listing nor
57
- gives one up. `--withdraw-listing` retracts, including an approved listing.
58
- **Why:** the request was read from the manifest's `listing.public` on every deploy, and deploying
59
- is how you *test*. 17 of the 23 published packs carry that key, so an edit-deploy-chat loop filed
60
- a review request every time round. Worse, the *absence* of the key meant **retract** so an
61
- ordinary deploy of a pack whose manifest you had not yet annotated could wipe a listing you
62
- already had. `--request-listing` still requires `listing.public: true` in the manifest (the
63
- manifest states that the pack is a product; the flag is you choosing to ask), and the flag
64
- without the key is a clean error rather than a silent no-op.
65
- - **The listing verdict distinguishes "you submitted this" from "your approval expired".** They are
66
- both `pending` and they mean opposite things to an author. A deploy that changes the content of an
67
- approved pack now says so in those words — an approval covers only the content it was made
68
- against, so it cannot survive an edit.
69
-
70
- ### Added
71
- - **A one-line nudge when your manifest asks and your deploy did not.** A pack carrying
72
- `listing.public: true` that has never been submitted now prints the flag to use, so an opt-in
73
- default cannot turn into waiting for a review nobody requested.
74
-
75
- ### Fixed
76
- - **The "newer CLI" and "KB drifted" notices now print when a command FAILS.** All three nudges
77
- (CLI upgrade · KB drift · unread memos) were awaited at the very end of `main()`, which silently
78
- meant *only on success* `die()` is a hard exit, so a failed deploy, an auth error or a bad
79
- manifest printed none of them. That is backwards: a stale capability reference is a leading cause
80
- of the failure an author is staring at, so the run that most needed the nudge was the only one
81
- that never got it. They are now computed before the command and printed however it ends.
82
- - **The CLI-upgrade notice is no longer hidden from piped output.** It began with
83
- `if (!process.stdout.isTTY) return`, so every agent-driven and CI run the readers that cannot
84
- notice an outdated CLI on their own — was the one audience never told. Its two siblings had
85
- already dropped that gate for exactly this reason; now all three agree. Still skipped under
86
- `npx`, where there is nothing to upgrade.
87
- - **`octwin login` now reports KB drift too.** It is networked and usually the first command of a
88
- session, i.e. the best possible moment to say the reference moved, and it was excluded.
89
- - **A memo poll can no longer fail the command it was annotating.** It went through `apiGet`
90
- `fetchOrDie`, whose job is to `die` on a network failure so an unreachable platform turned an
91
- observer into a command failure. It now uses a plain, timed, fail-silent fetch.
92
- - **A failing command reports its real exit code again on Windows.** Moving the polls before the
93
- command made `process.exit()` abort with `Assertion failed: !(handle->flags & UV_HANDLE_CLOSING)`
94
- and return **127** instead of 1 so CI saw neither success nor the documented failure code. The
95
- CLI now unwinds through a `CliExit` and lets the event loop drain, which is the only teardown
96
- that is clean once the polls have opened sockets. `--check`'s exit 2 and the streaming commands
97
- were re-verified.
98
-
99
- ## [0.7.2] - 2026-08-20
100
-
101
- ### Fixed
102
- - **`octwin feedback` now tells you what is already waiting, on stdout.** It discarded the submit
103
- response entirely destructuring `{ status, json }`, checking the status and never reading the
104
- body then printed *"a reply arrives as a memo, this CLI will tell you when one is waiting"*. The
105
- platform started returning the unread counts on that response (2026-08-20), so the answer was
106
- there to print and was being thrown away.
107
- **Why it matters more than it sounds:** `notifyIfMemosWaiting` already covers this command and was
108
- firing correctly but it writes to **stderr**, and the authors driving this CLI are agents reading
109
- stdout. The one signal that mattered was addressed to a channel nobody was listening on. On
110
- 2026-08-19 an author submitted two reports two hours after three replies were published and
111
- re-reported five findings those replies had already closed. Now the count prints in the same block
112
- as the acknowledgement, naming the command, and says outright when a reply may already answer what
113
- you just sent. Against an older platform the field is absent and the previous line stands.
114
-
115
- ## [0.7.1] - 2026-08-19
116
-
117
- ### Fixed
118
- - **`work decide` now says when an action moves nothing.** `to_stage` is optional an action may
119
- record a decision without a transition but both outputs communicated that by omission: `--dry-run`
120
- left `to_stage: null` sitting among twenty other keys, and a real apply printed a bare
121
- `✓ Applied '<action>'`. An author read both, shipped `request_more_info` with no `to_stage`, and
122
- lost the `awaiting_customer` their whole customer-reply capture branched on their words: *"Nothing
123
- about this failed loudly; it just quietly never did the one thing the whole feature depends on."*
124
- The preview now states `→ does NOT change the status (this action only records a decision)` and the
125
- apply says `status unchanged (the action declares no to_stage)`. The console's decision panel got the
126
- same sentence in the same change.
127
-
128
- ## [0.7.0] - 2026-08-18
129
-
130
- ### Added
131
- - **`octwin memos` the channel answers now.** `octwin feedback` was one-way: an author reported and
132
- heard nothing, ever. Two kinds arrive here, both printed in full a **reply** to a report you sent,
133
- and a **notice** published to every author (a new capability, a deprecation, a breaking change) —
134
- each carrying `info` / `action_required` / `breaking`. Reading marks them read; `--all` re-reads
135
- history and acks nothing (also the escape hatch if a piped `--json` consumer died halfway).
136
- - **Every networked command now says when a memo is waiting**, one line to stderr, always naming the
137
- command to run. It rides work that was already networked, never throws, and is **deliberately not
138
- TTY-gated**the same reasoning as the KB drift nudge, whose docblock says it plainly: the primary
139
- reader of this CLI is an authoring agent whose output is piped, and gating on `isTTY` means the one
140
- reader that cannot notice on its own is the only one never told. Unlike that check there is no local
141
- marker file: read state is per-workspace on the platform, so an agent in a fresh container still
142
- learns about an unread reply.
143
-
144
- Why it matters, measured: in August 2026 four reports sat unread for nine days, and one author
145
- replaced every `$t()` call with hardcoded English across all 16 flows of a production pack to work
146
- around a bug that had been fixed two days earlier. Nothing could tell them.
147
-
148
- ## [0.6.1] - 2026-08-18
149
-
150
- ### Fixed
151
- - **`octwin status` worked for no pack at all, and had not since 2026-08-01.** It sent the manifest's
152
- **bare** id (`clinic`) to a route that requires the qualified `<owner>.<name>` and a manifest
153
- cannot legally declare the qualified form, because the owner segment is attached at publish time
154
- from the authenticated publisher (both the platform and this CLI reject a `.` in it). So the route
155
- answered 404 for every pack, every time. It now resolves the owner from `whoami`'s `tenant_slug`,
156
- and takes an explicit `octwin status <packId>` when you already know it (from `octwin agents` or
157
- `octwin projects`, both of which print qualified ids). Reported by two pack authors, who lost time
158
- to a command that said their pack was missing seconds after a deploy the platform had accepted.
159
- - **A 404 from `octwin status` no longer always reads "not installed".** That one branch covered four
160
- different failures — a malformed pack id, an unknown tenant, an unknown/pinned-elsewhere project,
161
- and the genuine no-active-install — so the message named the *least* likely cause and sent an author
162
- chasing a deploy that had already succeeded. The route says which; the CLI now relays it, and adds
163
- the "run `octwin deploy` first" hint only to the case it fits.
164
- - **`octwin logs` always reported "No conversations"**, including immediately after an `octwin chat`
165
- that had plainly worked. It read `conversations` off the response; the platform moved that endpoint
166
- to the shared page envelope on 2026-08-09 and answers `rows`, which every other list command here
167
- already reads. Both authors filed this as replica lag or a cache gap — nothing lagged, the payload
168
- was simply never read. `octwin logs <conversationId>` was unaffected.
169
-
170
- ## [0.6.0] - 2026-08-09
171
-
172
- ### Changed
173
- - **`octwin cases` is now `octwin work`, and it works again.** The platform's work-inbox
174
- consolidation (2026-08-08) replaced the case-only surface with `/work` over every entity a pack
175
- declares worked, and renamed the scopes to `work:read`/`work:write` — which left every `octwin
176
- cases` call a silent 404 in a published CLI. The command family is renamed to match the platform:
177
- `octwin work [recordId] [--queues]`, with writes `assign` / `note` / `decide` (the declared
178
- operator actions, `--dry-run` previews) and `stage <id> --to <s>` riding the one platform-wide
179
- stage verb (`POST …/xrm/records/:id/stage`, needs `records:write`). `transition` is gone with the
180
- route it called.
181
- - **`octwin orders transition` rides the same stage verb.** `POST …/orders/:ref/transition` was
182
- retired server-side in the same consolidation; the CLI now resolves the order's record id from the
183
- detail read and moves the stage through `…/xrm/records/:id/stage` (scope: `records:write`).
184
-
185
- ### Added
186
- - **A route guard so this cannot rot silently again**: `src/lib/cli-routes.test.ts` extracts every
187
- `/api/self/**` URL the CLI builds and asserts it (method included) against the platform's dumped
188
- route table the gap that let both breakages above ship.
189
-
190
- ## [0.5.1] - 2026-08-01
191
-
192
- ### Fixed
193
- - **`validate --remote` blamed the platform's version for a bad `--project`.** Every 404 from
194
- `POST /api/self/p/packs/validate` printed *"this platform has no /packs/validate endpoint yet
195
- (older version)"*. That was accurate when the route resolved nothing, but it now resolves the
196
- tenant and project **before** validating and an unknown project, or one outside a token's pin,
197
- answers 404 by design. So a typo in `--project` sent you looking for a version mismatch instead of
198
- at the flag. The two cases are now told apart by the response **body**, not the status: a missing
199
- route is Fastify's `error: 'Not Found'` and keeps the old wording, while the platform's own
200
- `project '<slug>' not found under tenant` is printed as-is, with the flags to check.
201
-
202
- ## [0.5.0] - 2026-08-01
203
-
204
- ### Added
205
- - **`octwin seed [--pack <packId>]`** apply the pack's demo/reference data to the project it is
206
- installed on, without redeploying: `xrm.yaml` `demo:` records + scheduling availability, the
207
- commerce catalog, and the demo operator topology. Reports what **each kind** produced.
208
- Previously seeding was reachable only as `deploy --seed`, because the platform's seed endpoint was
209
- keyed on an install id, guarded platform-admin, and carried no tenant/project segments — so the
210
- `/api/self/**` surface could not reach it and a `pack:deploy` token never could. Re-seeding meant
211
- a full redeploy or asking an operator. Idempotent and cheap to re-run: records upsert, and
212
- existing media is REUSED rather than regenerated, so a second pass reports zero images.
213
-
214
- ## [0.4.0] - 2026-08-01
215
-
216
- ### Added
217
- - **`octwin projects create` / `octwin projects rm`** a **disposable end-to-end environment** from
218
- the CLI, which is what marketplace developers have been missing. `octwin deploy` has always needed
219
- a project that already existed and the CLI could only *list* them, so standing up a throwaway
220
- full deployment meant opening the console or asking an operator. Now:
221
- ```bash
222
- octwin projects create "Scratch" # slug `scratch`
223
- octwin deploy --project scratch --seed # publish + install + demo data
224
- octwin chat "hi" --project scratch # talk to it (--script for a whole conversation)
225
- octwin projects rm scratch --yes # throw it away
226
- ```
227
- A throwaway environment is deliberately **not a special kind of thing**it is an ordinary
228
- project in your own workspace, so it inherits your plan, entitlements, RBAC and teardown with no
229
- separate lifecycle. `create` derives the URL slug from the name (`--slug` pins one, `--pack`
230
- installs an already-published pack). `rm` is a HARD delete — the project and everything cascading
231
- from it, no undo, not the same as archiving — so **without `--yes` it only prints what would be
232
- destroyed**, making the dry run the default; the impact list is derived from `pg_constraint`, the
233
- same payload the console's confirm dialog renders. Both need `projects:write`, which a
234
- `pack:deploy` token does **not** confer the CLI names that scope in the 403 hint.
235
-
236
- ## [0.3.0] - 2026-07-31
237
-
238
- ### Added
239
- - **`octwin projects`** the `--project <slug>` values your token can actually name, with the plan's
240
- project cap. Every project-scoped command takes that flag and nothing printed the list, so an
241
- author whose token was not pinned had to guess, and a wrong guess 404s identically to a project
242
- that exists but has no install. `--archived` includes archived projects; `--json` for raw.
243
- A `pack:deploy` token reaches it: the platform route was widened to accept `pack:deploy` alongside
244
- `projects:read`, because `pack:deploy` is `access: 'special'` and confers nothing else — the
245
- command would have 403ed for exactly the person it exists for.
246
- - **`octwin validate --require-kb`** turn a skipped KB-driven check into a failure, for CI.
247
-
248
- ### Fixed
249
- - **`octwin validate` printed ✓ with two of its three checks switched off.** The render-intent and
250
- primitive-argument checks read `<packDir>/.octwin/platform-kb/`, joined onto the pack directory
251
- EXACTLY — so an author who pulled once at a repo root and then worked in `packs/<name>/` had both
252
- checks silently disabled, and the ✓ printed above them unconditionally while the per-check ✓s lived
253
- inside the `if`s. An entire batch of platform-backlog entries reached production through that hole.
254
- Three fixes: the KB is now found by **walking up** (one pull at a repo root covers every pack under
255
- it, `src/lib/kb-path.ts`); the readers report **three states** absent, malformed, ok so a
256
- half-written pull no longer reads as "you haven't pulled yet"; and a skip is **announced on the
257
- last line printed**, because a caveat above a does not reach a reader who stopped at the ✓.
258
- Warn-and-exit-0 stays the default (the KB is a gitignored cache and `platform-kb pull` needs
259
- `pack:deploy`, so a hard failure would break a fresh clone) — the defect was the silence, not the skip.
260
- - **`octwin status` said "live and current" for a pack that could not receive a message.** Every field
261
- it printed was process-global: `registered` is true for a pack ANY project on that instance loaded.
262
- Dispatch is per-project and takes the oldest ACTIVE install, ignoring the rest. The route now
263
- filters `status = 'active'` (an archived install used to report live) and compares against the real
264
- dispatch target, so status can say plainly that another pack owns this project's messages.
265
- - **`octwin validate --remote --project does-not-exist` answered `{ ok: true }`** while `deploy` with
266
- the same flag 404ed. The platform route resolves tenant and project before validating now.
267
-
268
- ### Changed
269
- - **`octwin validate --remote` also runs the platform's flow LINT.** It used to run only at pack load,
270
- so a finding of severity `error` an `assign:` whose value is a quoted literal, a `$t()` key with
271
- no namespace passed validate and failed the deploy. Offline `validate` cannot do this: the lint
272
- needs a template-expanded `FlowDef`, which only the server builds.
273
- - **`record_aggregate` / `record_group` now REQUIRE a scope** (`contact_id` or `all: true`) — a
274
- platform contract change the offline arg check replays from the KB. Re-pull after upgrading.
275
-
276
- ## [0.2.0] - 2026-07-30
277
-
278
- ### Fixed
279
- - **`records`, `cases`, `orders` and `catalog` printed a correct total and ZERO rows.** The platform
280
- collapsed its eight per-domain list envelopes into one `Page<T>` whose collection key is `rows`;
281
- the CLI still read `json.records` / `.cases` / `.orders` / `.products` behind a `?? []`, so the
282
- fallback turned a key rename into an empty list instead of an error. `octwin records doctor`
283
- reported *"5 record(s)"* and then *"(none mint a `records:read` token …)"*, blaming the user's
284
- credentials. All five readers now go through one `readPage` helper
285
- (`src/lib/page.ts`) with a test pinned to the real envelope — a hand-copied key name in an
286
- untested CLI is what shipped this, so the fix is the single reader, not five edits.
287
- - **`--flag=value` silently did nothing.** `--limit=5` became the key `limit=5` and the command ran
288
- with its default. Now parsed; `--set`/`--param` also accept repetition.
289
- - **`octwin catalog` always printed `Products: 0`** it counted the page, and the route's `total`
290
- had never been read.
291
-
292
- ### Added
293
- - **Write commands a pack author can now exercise the state their pack creates, not just read it.**
294
- Every one needs the matching `:write` scope; a leading verb (`create`/`note`/`transition`/…) is
295
- what distinguishes a write from the read that shares its command.
296
- - `records create|patch|stage|note`, `records tasks`, `records task complete`
297
- - `cases assign|note|transition|decide` — `decide --dry-run` previews the customer-facing copy and
298
- resulting status **without committing** (that route needs only `cases:read`)
299
- - `orders transition|refund` · `catalog availability|stock` · `agents set`
300
- - `scheduling rules|rule add|rule rm|exception add|exception rm`
301
- - **`octwin feedback`** submits the pack's `FEEDBACK.md` to the platform team, attaching the pack
302
- version, this CLI's version and the `content_hash` of the capability reference you pulled — the two
303
- facts that separate a real platform gap from something already fixed or a stale KB. Replaces
304
- "hand the file to the platform team".
305
- - **`--offset` on every list**, and a line saying when a list was truncated and what to run next.
306
- `has_more` was on every response and no command surfaced it, so a partial list looked complete.
307
-
308
- ### Changed
309
- - `orders refund` **exits non-zero when the payment gateway refuses.** The route answers `200` with
310
- the verdict in `gateway`, so reporting the HTTP status would tell an operator money moved when it
311
- did not.
312
- - A 403 on a record or case write now says it may be an **RBAC grant gap** rather than a missing
313
- scope: the scope is checked on the token, then the verb is re-checked against that specific row.
314
-
315
- ## [0.1.21] - 2026-07-30
316
-
317
- > **Never published to npm.** Bumped in-repo, then superseded hours later by 0.2.0 everything
318
- > below ships as part of that release. Kept as its own section because the changes are distinct.
319
-
320
- ### Added
321
- - **`deploy` and `status` report the marketplace-listing verdict.** A manifest carrying
322
- `listing.public: true` put the pack into an operator review queue, and the state existed only in
323
- the console so an author working from the CLI got no acknowledgement that the request had
324
- registered, and never saw a rejection note (which the platform *requires* precisely because it is
325
- their only feedback). Both commands now print it via `printPublicListing`, and stay silent for a
326
- pack that never asked. `status` also distinguishes *approved* from *actually public*: an approval
327
- pins the content sha it reviewed, so any edit returns the pack to the queue on its own.
328
- - **`octwin pull` is discoverable.** It was implemented and answered `--help`, but appeared in
329
- neither `octwin help` nor the README the one command that recovers a deployed pack's only source
330
- copy was invisible unless you already knew its name. Also added to the scope-requirement table, so
331
- a 403 names `pack:deploy` instead of printing the generic hint.
332
-
333
- ### Fixed
334
- - **The capability-reference drift check no longer fails silently on a narrow token.** The `?meta=1`
335
- poll needs `pack:deploy`, but it rides on every networked command — so an author inspecting data
336
- with a `records:read`-only token got no drift signal at all, and a stale reference is exactly what
337
- leads to inventing a primitive from memory. A 401/403 there now says so once.
338
- - **README: casework is declared in `worklist.yaml`, not a `cases.yaml`.** That grammar was retired;
339
- following the README produced a pack whose casework silently never loaded. `octwin media generate`
340
- was also missing from the command table.
341
- - **`records` no longer blames the plan for a route the plan does not gate.** `GET /xrm/entities`
342
- carries only the scope guard, so a 403 on the entity list wrongly cited the `records` plan feature.
343
-
344
- ### Removed
345
- - **Unreachable rename branches in `init`.** The agent-id and `main`-flow renames sat behind
346
- `--agent` / `--flow` options the CLI never parsed, against a template that ships no `main` flow —
347
- both branches could never fire, and their patterns would have matched nothing if they had.
348
-
349
- ## [0.1.20] - 2026-07-29
350
-
351
- ### Added
352
- - **`octwin validate` catches primitive arguments the platform would drop — offline, no token.** A
353
- primitive takes the arguments it declares and silently ignored the rest, so an invented or
354
- misspelled `args:` key deployed clean, ran clean, and simply did nothing: `record_list args: {
355
- order: }` (the argument is `sort`) never ordered, and `booking_cancel args: { booking_record_id:
356
- }` meant the REQUIRED `record_id` never arrived, so cancelling just failed. Validate now replays
357
- the platform's contract from the pulled KB (`primitives/*.json` `inputSchema`) and names the bad
358
- argument, what the primitive takes, and any required argument that is missing. Scanning the 21
359
- shipped marketplace packs found **ten** such errors across five packs. Keys are checked, values are
360
- not — an `args:` value is normally an expression string resolved at runtime.
361
- [`args-check.ts`](src/lib/args-check.ts).
362
- - Silently skipped when the KB has not been pulled yet, like the render-intent check beside it.
363
- - It cannot see inside a `use:` template body (expanding one is the platform's job) — `octwin
364
- validate --remote` covers that case, and now also reports unreachable `$bind.<path>` reads and
365
- `outputs:` port typos, which have no offline equivalent.
366
-
367
- ## [0.1.19] - 2026-07-29
368
-
369
- ### Added
370
- - **`octwin validate` catches render-intent fields the platform would drop offline, no token.** Each
371
- render intent takes a fixed field set; a key outside it used to be swallowed at load and dropped at
372
- render, with no error anywhere just a card missing what the author wrote. Validate now replays the
373
- platform's own contract from the pulled KB (`render-intents/*.json` `allowed_keys`) and names the
374
- bad field, the intent, and what is allowed. Scanning the 21 shipped marketplace packs found two real
375
- instances in 223 intents: a `text_card` carrying `buttons` (the fallback's only escape button never
376
- rendered) and a `list_picker` carrying a non-existent `group_by` (a whole mapper step feeding a
377
- fabricated parameter). Silently skipped when the KB has not been pulled yet.
378
-
379
- ### Changed
380
- - **`octwin platform-kb pull` now explodes the reference and writes an `INDEX.md`.** A pull used to
381
- write ~787 KB across 34 flat files — about 225k tokens, more than the pack being authored so
382
- finding one primitive meant reading a 122 KB catalog. Catalogs the platform describes as
383
- enumerable are now written **one file per entry** (`primitives/record_list.json`,
384
- `render-intents/carousel.json`, `declarations/xrm.json`, …), with `INDEX.md` mapping every doc and
385
- all 171 entries to its file with a one-line summary. Reading one primitive went from ~38k tokens to
386
- ~700. The layout comes from the platform (an `entries` descriptor on the bundle index) rather than
387
- being hardcoded here, so this CLI keeps working against any platform version and a platform that
388
- adds a catalog needs no CLI release. The pulled directory is cleared each pull, so a withdrawn
389
- capability cannot linger as a file the authoring agent reads as current its *contents* are
390
- cleared rather than the directory itself, since on Windows a directory that is any shell's working
391
- directory cannot be removed.
392
-
393
- ## [0.1.18] - 2026-07-29
394
-
395
- ### Fixed
396
- - **The bundle collector and the platform's repo import disagreed about what a pack directory
397
- contains.** `collectBundleFiles` had its own rule and kept three things the operator's GitHub
398
- import drops: `*.ts`/`*.tsx`, `__snapshots__/` and `*.example`. Because the server rejects a
399
- `.ts` outright, the same directory imported cleanly from GitHub and failed to deploy from
400
- disk with `'…': executable code is not allowed` — an error blaming a file that was never
401
- meant to ship (a snapshot test beside a flow, or the documented `xrm.yaml.example` template).
402
- The rule now lives in a vendored `lib/pack-source.ts` beside the vendored validator, and a
403
- parity test in the platform drives both copies over one table.
404
-
405
- ### Removed
406
- - **`pack.json` is gone the saved login IS the deploy target.** The file had eroded to a single
407
- field, `platform_url`, which `octwin login --url --token …` already states; `tenant`/`project`
408
- became optional overrides once deploy tokens started carrying their own tenant and project pin.
409
- So it was a second home for a fact `login` knew, and it cost real things: a machine-specific file
410
- committed into every pack repo, a four-link config-precedence chain to document, and an
411
- exclusion rule duplicated in the bundler and the server (which had already drifted apart).
412
- `octwin init` and `octwin pull` no longer write one, and nothing reads one. **A pack directory is
413
- now pack content and nothing else** the same repo deploys from any machine, and a pulled pack
414
- redeploys with no flags.
415
-
416
- ### Changed
417
- - **`octwin login` now sets the default deploy target**, not just the token: it writes a
418
- `default_url` key alongside the token in `~/.octwin/credentials.json`. Every command resolves
419
- **flags env (`PACK_PLATFORM_URL`/`PACK_TENANT`/`PACK_PROJECT`/`PACK_TOKEN`) saved login**.
420
- An existing credentials file simply has no `default_url` until the next `octwin login` — which is
421
- exactly what the "no platform url" error now tells you to run. CI is unaffected (it passes
422
- `PACK_PLATFORM_URL` + `PACK_TOKEN` as env and never had a `pack.json` that file is retired).
423
-
424
- ## [0.1.17] - 2026-07-27
425
-
426
- ### Added
427
- - **`octwin pull <packId>` — write a DEPLOYED pack's source back to disk.** The inverse of
428
- `deploy`. A pack pushed with the CLI lived on the platform as an artifact the runtime served
429
- but nothing could hand back, so its only source copy was the machine that pushed it. Pull it,
430
- fix it, redeploy it. Writes a `pack.json` (retired in 0.1.18the saved login is now the
431
- target) so the pulled directory redeploys where it came from; `--version` picks a version,
432
- `--force` overwrites a non-empty dir. You may pull a pack
433
- your tenant OWNS (an operator token pulls any) a pack you merely installed is not yours to
434
- read.
435
- - **`octwin chat --script <file>` drive a whole conversation from one invocation.** One turn per
436
- line, in order, in a single process over a single SSE connection, waiting for each turn to settle
437
- before sending the next. Blank lines and `#` comments are skipped; `tap:<id>` presses a rendered
438
- row/button (the rest of the line is kept verbatim, since a tap id is itself colon-delimited),
439
- `media:<path>` uploads a file, and `media:<path> | caption` attaches one.
440
-
441
- This exists because **chaining invocations races the agent loop.** A turn ends on a quiet gap
442
- (`TURN_SETTLE_MS`), which can arrive while the server-side loop is still running so
443
- `chat A && chat B` lets B's inbound land mid-turn, and the agent fills required fields with
444
- placeholder text (`service_id: "service-id"`) or starts a second workflow run. Those look exactly
445
- like flow bugs and cost a field author three separate investigations. The one-turn-per-invocation
446
- rule is now stated in `chat --help` and the header usage as well.
447
-
448
- ### Changed
449
- - **`octwin deploy` reports the suspended runs it invalidated.** A redeploy rebuilds the pack's
450
- tools, and in-flight flow runs live in those tools so every suspended conversation is dropped.
451
- The deploy prints `ⓘ N suspended run(s) invalidated` when N > 0, instead of leaving the author to
452
- discover it as a `workflow_resume_stale` on the next tap.
453
-
454
- ## [0.1.16] - 2026-07-26
455
-
456
- ### Added
457
- - **A pack can ship committed images.** `jpg`/`jpeg`/`png`/`webp`/`gif`/`pdf` files in your pack
458
- directory now travel as a separate `blobs` half of the bundle (base64 on the wire, `bytea` in
459
- storage) instead of being rejected as "not an allowed pack file type". Declare each one under the
460
- manifest's `static_assets: [{ file, key }]` and reference it from `config:` with the
461
- `$pack_asset:<key>` sentinel the platform uploads it to the media system at install and the
462
- sentinel resolves to the served URL. `octwin validate` reports the image count alongside the file
463
- count.
464
- - **The size ceilings fail locally, before upload** — 2 MB per file, 32 MB of binary per pack,
465
- mirroring the server. `svg` stays rejected: it is script-capable and these assets are served to
466
- browsers.
467
-
468
- ### Fixed
469
- - **Committed images were silently corrupted.** `collectBundleFiles` read *every* file with
470
- `readFileSync(full, 'utf8')`, so a JPEG went through a lossy UTF-8 decode and arrived mangled
471
- server-side a deploy that "succeeded" and rendered a broken image. Binary files now split off
472
- into `blobs` and keep their bytes.
473
- - **`octwin status` reported `loaded=(none)` for every pack, always.** It printed a `loaded_version`
474
- field that stopped existing when reload moved to content-sha keying, which also meant the
475
- version-drift warning underneath it could never fire. It now prints the **content sha** the
476
- instance has loaded and the one the catalog holds (with the artifact's `origin`), and warns off the
477
- platform's own `up_to_date` flag. The sha is the more useful fact anyway: re-publishing the *same*
478
- version changes it, which is exactly the author's inner loop. A pack that is live and current but
479
- **withdrawn** from the catalog now says so, rather than reporting a clean bill of health.
480
-
481
- ## [0.1.15] - 2026-07-25
482
-
483
- ### Added
484
- - **`octwin agents [packId::agentId] [--prompt]` — see what your agent actually runs as.** The platform
485
- gained *governed* agent settings: an operator platform default can override the `default_model`
486
- (and history window / working-memory toggle) your manifest declares, and that override is invisible
487
- from the pack source. The command prints each governed setting's **effective** value, **which layer
488
- won** (project override platform default pack manifest), and warns explicitly when your pack's
489
- declared value is *not* in force. `--prompt` prints the exact system prompt the LLM sees for this
490
- project (pack instructions + platform protocol + any project overlay).
491
- - **`octwin orders [reference_id]` the commerce a conversation produced.** The list (number,
492
- status/payment, total, contact) or one order with its line items, the
493
- subtotal/tax/shipping/discount/total breakdown, `payment_ref`, and the allowed transitions. On a
494
- `pending`/`none` payment it explains *why that's expected*: the forward payment lifecycle is
495
- **webhook-owned** (not patchable), and the default gateway-less `manual` driver makes
496
- `payment_request` take its `empty` port so the flow should confirm pay-on-delivery, not error.
497
- - **`octwin analytics [entity]` stage conversion for any pipelined entity.** The funnel engine that
498
- powered journeys is now generic, so any entity declared with a `pipeline:` charts conversion +
499
- drop-off (`--overview` / `--milestones` / `--trends` / `--cost`, and `--stage <id>` for the records
500
- currently at a stage). An empty result names **both** causes the platform folds into one response —
501
- no `pipeline:`, or no `view` grant on `record.<entity>`.
502
- - **`octwin catalog [--readiness]`** commerce products with price, availability and stock
503
- (`untracked` when the SKU isn't inventory-tracked), plus the WhatsApp catalog binding.
504
- `--readiness` runs the Meta Graph checklist with each failing item's suggested fix.
505
- - **`octwin scheduling [--slots <resourceRecordId>]`** the engine state (bookable resource types,
506
- upcoming slots, booked seats) or the computed slots for one resource. This is how you verify the
507
- availability rules a `deploy --seed` created, which 0.1.14 could create but not read back.
508
-
509
- ### Changed
510
- - **Auth failures now name the scope the command needs.** Every 401/403 appends the required scope
511
- (and the plan feature, where the route is entitlement-gated) from one client-side mirror of the
512
- platform's scope registry replacing the per-command hardcoded strings, several of which named no
513
- scope at all. It also spells out that `pack:deploy` / `media:generate` are direct-grant only, so a
514
- `tenant:admin` preset token does **not** confer them (the most common "but my token is admin" dead end).
515
-
516
- ## [0.1.14] - 2026-07-23
517
-
518
- ### Fixed
519
- - **A failed demo seed no longer reports a clean `✓`.** `deploy` softens non-fatal
520
- install steps (e.g. a demo-seed row) to warning frames, but the summary still printed
521
- `✓ Deployed` and exited 0 so a deploy that seeded ZERO records read as success (the
522
- false-✓ trap). `deploy` now collects those step errors, prints `⚠ Deployed with N
523
- warning(s) — data may be incomplete` with each message, and exits non-zero so CI /
524
- a `deploy && chat` chain catches it.
525
-
526
- ### Added
527
- - **`login` echoes what the token reaches.** After saving, `octwin login` calls
528
- `/api/self/t/whoami` and prints the workspace, project pin, and scopes — so a fresh
529
- token self-identifies without a second `octwin whoami` (best-effort; a network failure
530
- never fails the save).
531
- - **`validate --remote` surfaces warnings + the data-store trap.** The remote validate now
532
- renders advisory `⚠` warnings (which don't block deploy) and, for a pack declaring
533
- `required_adapters: [data-store]`, reports the missing-data-store error the deploy would
534
- have 409'd on plus a warning that an `xrm.yaml` pack usually shouldn't declare that
535
- adapter at all. It also now catches (offline) a list-form `entities:` block and a
536
- `localized: true` field seeded with a bare string traps that previously surfaced only
537
- mid-seed at deploy.
538
-
539
- ## [0.1.13] - 2026-07-22
540
-
541
- ### Added
542
- - **A headless media loop — produce + send.** Two paired additions close the coverage hole where any
543
- media-collect flow (e.g. `activate-app`'s registration / ID uploads) stalled at the upload prompt
544
- because the CLI could neither *make* nor *send* an image:
545
- - `octwin media generate "<prompt>" [--out <file.png>] [--size 1024x1024] [--json]` AI-generates an
546
- image on the platform (needs a `media:generate`-scoped token), stores it as a public asset, and prints
547
- its `MEDIA-` handle + serve URL. `--out` downloads the bytes to a file (WhatsApp renders only
548
- `.png`/`.jpg`); `--json` emits `{ media_id, url, mime, width, height, bytes }`.
549
- - `octwin chat --media <file|media-id>` uploads a local file (or a media id from
550
- `media generate --json`) as an image/document/audio inbound; any accompanying `"message"` rides as
551
- its caption. The platform's media pipeline folds the upload into a running collect, so media flows
552
- are now fully drivable headlessly.
553
-
554
- ### Changed
555
- - **The KB-drift nudge now names what changed.** With the platform serving per-entry content hashes, the
556
- post-command nudge appends a `(N changed · M added · K removed)` summary instead of a bare hash pair.
557
- - **`octwin platform-kb` prints a changelog on pull.** Instead of only a doc/catalog count, the pull now
558
- diffs the fresh index against your last pull and lists exactly which docs/catalogs were added (`+`),
559
- changed (`~`), or removed (`-`) so a replaced schema shape is visible, not silent.
560
-
561
- ## [0.1.12] - 2026-07-22
562
-
563
- ### Fixed
564
- - **The KB-drift nudge now fires after `chat` too.** `chat` the command a debugging session runs most
565
- was missing from the networked-command list, so a chat-heavy session never noticed the platform's
566
- capability reference had moved. The nudge also now shows the concrete drift
567
- (`old-hash new-hash`) so you can see it's real, not a heuristic.
568
-
569
- ### Changed
570
- - **Every networked command announces what it's doing before it does it.** `chat` prints
571
- `→ Connecting to <tenant>/<project> as '<handle>' …` before opening the stream and
572
- `… deliveredwaiting for the reply (up to Ns)` after the send; `status` / `whoami` /
573
- `platform-kb` / `records` / `logs` / `cases` each print a one-line `→ …` header naming the
574
- action and target before the first network call no more silent seconds followed by a result
575
- (or a hang with no clue what was being attempted). JSON modes (`--json`) stay clean for piping.
576
-
577
- ## [0.1.11] - 2026-07-21
578
-
579
- ### Fixed
580
- - **Auth-failure hint on every command, not just the inspect family** (author-feedback A7). `validate`,
581
- `deploy`, `status`, and the single-record read now print the scope/transient explanation on a 401/403
582
- (the shared `authFailureHint`), instead of a bare `HTTP 401` that left it ambiguous whether the token
583
- lacked a scope or the platform hiccupped.
584
-
585
- ## [0.1.10] - 2026-07-21
586
-
587
- The capability reference is now **pulled, never bundled** the authoring skill dropped its committed KB
588
- snapshot, so `octwin platform-kb pull` is the single source of truth, and the CLI watches it for drift.
589
-
590
- ### Added
591
- - **KB-drift nudge** after any command that already talks to the platform (`deploy` / `status` /
592
- `test` / `validate --remote` / `records` / `cases` / `logs` / `whoami`), the CLI does one tiny
593
- `octwin-platform-kb?meta=1` GET and prints a one-line "the platform capability reference changed —
594
- `octwin platform-kb pull`" when the platform's `content_hash` no longer matches your last pull.
595
- Fail-silent + TTY-only + no-op until you've pulled once the sibling of the existing CLI-upgrade notice.
596
-
597
- ### Changed
598
- - **`octwin platform-kb pull`** now records the reference's `content_hash` in `.octwin/platform-kb/index.json`
599
- (the fingerprint the drift check compares against).
600
-
601
- The conversation-debugging release — driven by the second author-feedback round (xpeng-egypt),
602
- which found the author→validate→deploy loop solid but multi-turn debugging impossible from the CLI.
603
-
604
- ### Added
605
- - **`octwin chat --tap "<tap-id>"`** press a rendered button / list row (sends the web channel's
606
- `type:'interactive'` inbound). Paired with full render printing, any tap-driven flow is now drivable headlessly.
607
- - **Full render printing** every reply prints its complete interactive content: list sections/rows,
608
- buttons, and carousel cards, each with its **tap id**; header/footer/list-button text included.
609
- - **`--json` on `chat` / `logs` / `cases`** raw SSE envelopes (chat) or raw event/case payloads.
610
- - **`octwin cases [caseId] [--queues]`** inspect casework (support tickets): the inbox, one case +
611
- timeline + applicable decisions, or queue keys with open counts. Casework packs previously had zero
612
- data-inspection path (`records case` was a dead end).
613
- - **Per-subcommand `--help`/`-h`** — intercepted before any network or auth work (previously
614
- `octwin logs --help` made a network call and could die with a 401).
615
- - Multi-message turns: `chat` now collects **all** of a turn's renders (quiet-gap detection) instead
616
- of cutting at the first one.
617
-
618
- ### Changed
619
- - **`octwin logs`**: the conversation list shows contact handle + last activity and filters with
620
- `--as <handle>`; the timeline prints **full** event text (no more 240-char truncation) plus the
621
- renders each turn actually sent; footer points at `--json` / `mastra-messages` for verbatim payloads.
622
- - **Network failures name the target URL** (`platform unreachable at <url>`), and 401s explain
623
- invalid-token vs one-off transient instead of a bare status code.
624
- - `octwin records` on an unknown entity now surfaces the server's error body, and for `case`/`cases`
625
- points at `octwin cases`.
626
-
627
- ### Fixed
628
- - **Multi-turn chat actually works.** Two bugs made consecutive `octwin chat` calls look like "every
629
- call starts fresh": (1) the idempotency `local_id` was a **constant** per handle, so the platform's
630
- 5-minute inbound dedup silently dropped the second message a fresh id is now minted per call;
631
- (2) a fresh SSE connect **replays** recent history and the CLI printed the first render frame — i.e.
632
- the *previous* turn's greeting as the reply; the CLI now drains the replay and only accepts frames
633
- newer than the connect boundary. The platform always kept one open conversation per `--as` handle —
634
- the same handle genuinely continues the same conversation now.
635
-
636
- ## [0.1.8] - 2026-07-21
637
- - Global-first install guidance (`npm i -g octwin-cli`); upgrade notice suppressed under `npx`.
638
-
639
- ## [0.1.7] - 2026-07-21
640
- - `--version`/`-v` flag; daily fail-silent, TTY-only "newer version available" notice.
641
-
642
- ## [0.1.6] - 2026-07-21
643
- - `octwin init` scaffolds a home-hub menu (`home` list_picker + example `browse` tool) instead of a bare greeting.
644
-
645
- ## [0.1.5] - 2026-07-20
646
- - `octwin validate --remote` (the platform's FULL manifest + flow-DSL check, all errors at once);
647
- headless debugging commands `octwin records` / `octwin logs` / `octwin chat`; `octwin test` became
648
- an alias for `validate --remote`. First author-feedback round.
649
-
650
- ## [0.1.4] - 2026-07-20
651
- - Authoring reliability + DX fixes from the first end-to-end external-pack test.
652
-
653
- ## [0.1.3] - 2026-07-20
654
- - `octwin platform-kb pull` pull the platform capability reference for the authoring skill.
655
-
656
- ## [0.1.2] - 2026-07-20
657
- - Proper npm README.
658
-
659
- ## [0.1.1] - 2026-07-20
660
- - Initial npm publish: `init` / `validate` / `login` / `whoami` / `deploy` / `status`, `oct_` deploy tokens.
1
+ # Changelog — octwin-cli
2
+
3
+ All notable changes to the `octwin` CLI (npm package [`octwin-cli`](https://www.npmjs.com/package/octwin-cli)).
4
+ Format: [Keep a Changelog](https://keepachangelog.com/) — newest first, bucketed into
5
+ **Added · Changed · Deprecated · Removed · Fixed · Security**. The platform-wide view lives in the
6
+ repo root [`CHANGELOG.md`](../../CHANGELOG.md); this file is the CLI-only cut that ships with the package.
7
+
8
+ ## [0.8.3] - 2026-09-02
9
+
10
+ ### Fixed
11
+ - **`validate` printed all-green over a pack the platform could not import.** Every YAML file was
12
+ parsed inside a `try { } catch { return [] }`, so a file that failed to parse was silently
13
+ DROPPED from the list and every later check skipped it. The `catch` was justified in a comment —
14
+ "a syntax error is the structural gate's to report" and that was not true: the structural gate
15
+ (`validatePackBundle`) checks paths, extensions and traversal, and never parses YAML.
16
+
17
+ Measured 2026-09-02: a duplicate `s_header:` key in a locale file passed `octwin validate` twice
18
+ and was then refused by the platform importer with `Map keys must be unique at line 24,
19
+ column 3` the same message, from the same `yaml` version the CLI already had. The author's only
20
+ clue was a red box in the console naming no file.
21
+
22
+ YAML syntax is now its own announced gate that FAILS: it names each unparseable file with the
23
+ parser's own message and exits non-zero, before any check reads a document. An unparseable file is
24
+ not "no findings", it is "no idea", and the two must never print the same.
25
+
26
+ - **Three more readers that turned "I could not read this" into a normal answer.** Swept every
27
+ discarding `catch` in the CLI after the above; three collapsed a real fault into an ordinary state:
28
+ - `readCreds` returned `{}` for a CORRUPT `credentials.json` as well as an absent one, so a token
29
+ the author knows they saved simply stopped being found and the advice was "log in" with no
30
+ mention of why. Now names the file and the parse error, once per process (it has three call
31
+ sites and one broken file is one problem).
32
+ - `readLocalKb` returned null for a half-written `.octwin/platform-kb/index.json` as well as a
33
+ never-pulled one so an interrupted pull read as "you have not pulled yet" and the author
34
+ re-ran the command that left it that way. [`kb-path.ts`](src/lib/kb-path.ts) states this rule
35
+ for the DIRECTORY lookup; the index read beside it kept collapsing anyway. It now says which.
36
+ - The deploy progress stream discarded unparseable SSE frames silently. Skipping one is right;
37
+ skipping ALL of them left `terminal: null`, reported as "the stream ended without a terminal
38
+ event" true, and indistinguishable from a dropped connection. The count is now named when
39
+ (and only when) no terminal frame arrived, pointing at a CLI older than its platform.
40
+
41
+ The other five discarding catches were read and LEFT: each returns a documented fallback for a
42
+ state that is genuinely ordinary (no update-check network, a heartbeat SSE frame with no `data:`).
43
+ `scripts/` was swept too and is clean by design — `kb-dataflow.mjs` skips a fence it cannot parse,
44
+ and `check-kb-examples.mjs` holds a non-vacuity FLOOR of 130 parsed fences so the skip cannot go
45
+ quiet. That is the better pattern where a skip is legitimate.
46
+
47
+ ## [0.8.1] - 2026-08-27
48
+
49
+ ### Fixed
50
+ - **Logging in made `platform-kb pull` WORSE.** The command preferred the tenant-scoped route
51
+ whenever a token was saved, and that route is guarded by `pack:deploy` — so a developer holding a
52
+ token without that scope got a **403 on a pull that succeeds with no token at all**. It is the
53
+ likeliest token a new developer holds: no console preset could even reach `pack:deploy` before
54
+ 2026-08-26. `platform-kb` now always uses the anonymous route and never sends a credential.
55
+ `--token` is accepted and ignored so existing scripts keep working.
56
+
57
+ The platform serves the *same* bundle from all three of its views — its route file states the
58
+ payload is identical and tenant-independent so the authed route returned nothing extra and the
59
+ credential could only ever subtract. The two reasons the old code gave did not survive checking:
60
+ "keeps the author's own instance the source of truth" is vacuous (both routes are the same
61
+ instance), and "works against platforms that predate the public rung" is a backward-compatibility
62
+ shim this codebase does not carry.
63
+ - **The drift nudge now works without a token.** It polled through the same authed route, so an
64
+ author inspecting data with a narrow token was told, every time, that it *could not* check —
65
+ advice in place of the signal. Both the poll and the apology are gone: the poll is anonymous, so
66
+ it simply works.
67
+
68
+ ## [0.8.0] - 2026-08-27
69
+
70
+ ### Added
71
+ - **Five new command families, closing the gap between what a token reaches and what the CLI can
72
+ ask.** A **Full CLI access** token spans the whole scope registry, and four of those domains had
73
+ no command at all so the reach existed and there was nothing to type.
74
+ - `octwin automation [campaigns]` — every job the pack's declaration produced, with status,
75
+ interval and last result (matched / acted / errors), under a health line whose counts come from
76
+ SQL rather than from filtering the page (the job list is capped server-side, so a client-side
77
+ count would depend on the cap). Writes: `run` · `pause` · `resume` · `send <campaignId>`.
78
+ - `octwin integrations`what the pack **declares** beside what is actually **configured**, in
79
+ one view, because a connection declared and never configured is the commonest reason an
80
+ integration silently never fires and neither list alone can show it. Plus
81
+ `preflight <key>` (diagnosis, no outbound call, `integrations:read`), `test <key>` (a live call,
82
+ `integrations:write`, exits 1 on failure), `deliveries [id]`, `retry|cancel|send-now <id>`,
83
+ and `events` for what arrived inbound.
84
+ - `octwin journeys [id] [--funnel|--overview|--goals|--trends|--cost|--definition] [--stage <id>]`
85
+ the declared journeys, measured. Same flag grammar as `octwin analytics` on purpose: a journey
86
+ funnel and an entity funnel are the same question about different subjects. `--definition` is
87
+ the one view that works with no traffic.
88
+ - `octwin performance [--detail]` the project's business indicators, each with its delta against
89
+ the previous window and the `why` naming the declaration it came from. Needs `records:read`, not
90
+ a `performance:*` scope (there is none), so a read-only token already reaches it.
91
+ - `octwin usage` model calls, tokens and cost, by model / kind / agent / channel; project when
92
+ one is pinned, workspace otherwise. Needs no particular scope. **Model spend only**
93
+ WhatsApp/Meta message billing is operator-only and outside the token scope registry, which the
94
+ output says rather than leaving as an absence.
95
+ - **`octwin automation run|pause|resume|send` accept the declaration KEY.** The routes take a UUID
96
+ and answer a bare *"Malformed identifier in the URL"* 400 for anything else but the key
97
+ (`cart_recovery_nudge`) is what the list prints and what the author wrote in their own YAML. The
98
+ key is now resolved against the list route, and an unknown one fails naming the keys that exist.
99
+
100
+ ### Fixed
101
+ - **A body-less write sent `content-type: application/json` and no body, so Fastify answered a bare
102
+ `400 Bad Request`.** `apiSend` set the header unconditionally; every caller until now passed an
103
+ object, so the branch was dead and the bug latent. The first body-less POST (`automation run`) hit
104
+ it immediately. The header is now omitted when there is no body rather than each caller learning
105
+ to pass `{}`, which is the per-site divergence that helper exists to prevent.
106
+ - **Four URLs were exempt from the route guard.** `cli-routes.test.ts` reads a template literal in
107
+ the first argument position, so `apiGet(base, t)` a bare identifier was never checked. That
108
+ covered the `scheduling` engine-state and `agents` roster calls, and would have covered the new
109
+ `journeys`, `performance` and `usage` ones. All now spelled as literals: the guard checks **62**
110
+ URLs, up from 45.
111
+
112
+ ## [0.7.3] - 2026-08-26
113
+
114
+ ### Changed
115
+ - **A marketplace listing request is now OPT-IN: `octwin deploy --request-listing`.** A plain
116
+ `octwin deploy` says nothing about the public marketplace — it neither asks for a listing nor
117
+ gives one up. `--withdraw-listing` retracts, including an approved listing.
118
+ **Why:** the request was read from the manifest's `listing.public` on every deploy, and deploying
119
+ is how you *test*. 17 of the 23 published packs carry that key, so an edit-deploy-chat loop filed
120
+ a review request every time round. Worse, the *absence* of the key meant **retract** — so an
121
+ ordinary deploy of a pack whose manifest you had not yet annotated could wipe a listing you
122
+ already had. `--request-listing` still requires `listing.public: true` in the manifest (the
123
+ manifest states that the pack is a product; the flag is you choosing to ask), and the flag
124
+ without the key is a clean error rather than a silent no-op.
125
+ - **The listing verdict distinguishes "you submitted this" from "your approval expired".** They are
126
+ both `pending` and they mean opposite things to an author. A deploy that changes the content of an
127
+ approved pack now says so in those words — an approval covers only the content it was made
128
+ against, so it cannot survive an edit.
129
+
130
+ ### Added
131
+ - **A one-line nudge when your manifest asks and your deploy did not.** A pack carrying
132
+ `listing.public: true` that has never been submitted now prints the flag to use, so an opt-in
133
+ default cannot turn into waiting for a review nobody requested.
134
+
135
+ ### Fixed
136
+ - **The "newer CLI" and "KB drifted" notices now print when a command FAILS.** All three nudges
137
+ (CLI upgrade · KB drift · unread memos) were awaited at the very end of `main()`, which silently
138
+ meant *only on success* `die()` is a hard exit, so a failed deploy, an auth error or a bad
139
+ manifest printed none of them. That is backwards: a stale capability reference is a leading cause
140
+ of the failure an author is staring at, so the run that most needed the nudge was the only one
141
+ that never got it. They are now computed before the command and printed however it ends.
142
+ - **The CLI-upgrade notice is no longer hidden from piped output.** It began with
143
+ `if (!process.stdout.isTTY) return`, so every agent-driven and CI run — the readers that cannot
144
+ notice an outdated CLI on their own was the one audience never told. Its two siblings had
145
+ already dropped that gate for exactly this reason; now all three agree. Still skipped under
146
+ `npx`, where there is nothing to upgrade.
147
+ - **`octwin login` now reports KB drift too.** It is networked and usually the first command of a
148
+ session, i.e. the best possible moment to say the reference moved, and it was excluded.
149
+ - **A memo poll can no longer fail the command it was annotating.** It went through `apiGet` →
150
+ `fetchOrDie`, whose job is to `die` on a network failure — so an unreachable platform turned an
151
+ observer into a command failure. It now uses a plain, timed, fail-silent fetch.
152
+ - **A failing command reports its real exit code again on Windows.** Moving the polls before the
153
+ command made `process.exit()` abort with `Assertion failed: !(handle->flags & UV_HANDLE_CLOSING)`
154
+ and return **127** instead of 1 so CI saw neither success nor the documented failure code. The
155
+ CLI now unwinds through a `CliExit` and lets the event loop drain, which is the only teardown
156
+ that is clean once the polls have opened sockets. `--check`'s exit 2 and the streaming commands
157
+ were re-verified.
158
+
159
+ ## [0.7.2] - 2026-08-20
160
+
161
+ ### Fixed
162
+ - **`octwin feedback` now tells you what is already waiting, on stdout.** It discarded the submit
163
+ response entirely destructuring `{ status, json }`, checking the status and never reading the
164
+ body then printed *"a reply arrives as a memo, this CLI will tell you when one is waiting"*. The
165
+ platform started returning the unread counts on that response (2026-08-20), so the answer was
166
+ there to print and was being thrown away.
167
+ **Why it matters more than it sounds:** `notifyIfMemosWaiting` already covers this command and was
168
+ firing correctly but it writes to **stderr**, and the authors driving this CLI are agents reading
169
+ stdout. The one signal that mattered was addressed to a channel nobody was listening on. On
170
+ 2026-08-19 an author submitted two reports two hours after three replies were published and
171
+ re-reported five findings those replies had already closed. Now the count prints in the same block
172
+ as the acknowledgement, naming the command, and says outright when a reply may already answer what
173
+ you just sent. Against an older platform the field is absent and the previous line stands.
174
+
175
+ ## [0.7.1] - 2026-08-19
176
+
177
+ ### Fixed
178
+ - **`work decide` now says when an action moves nothing.** `to_stage` is optional an action may
179
+ record a decision without a transition but both outputs communicated that by omission: `--dry-run`
180
+ left `to_stage: null` sitting among twenty other keys, and a real apply printed a bare
181
+ `✓ Applied '<action>'`. An author read both, shipped `request_more_info` with no `to_stage`, and
182
+ lost the `awaiting_customer` their whole customer-reply capture branched on their words: *"Nothing
183
+ about this failed loudly; it just quietly never did the one thing the whole feature depends on."*
184
+ The preview now states `→ does NOT change the status (this action only records a decision)` and the
185
+ apply says `status unchanged (the action declares no to_stage)`. The console's decision panel got the
186
+ same sentence in the same change.
187
+
188
+ ## [0.7.0] - 2026-08-18
189
+
190
+ ### Added
191
+ - **`octwin memos` — the channel answers now.** `octwin feedback` was one-way: an author reported and
192
+ heard nothing, ever. Two kinds arrive here, both printed in full — a **reply** to a report you sent,
193
+ and a **notice** published to every author (a new capability, a deprecation, a breaking change)
194
+ each carrying `info` / `action_required` / `breaking`. Reading marks them read; `--all` re-reads
195
+ history and acks nothing (also the escape hatch if a piped `--json` consumer died halfway).
196
+ - **Every networked command now says when a memo is waiting**, one line to stderr, always naming the
197
+ command to run. It rides work that was already networked, never throws, and is **deliberately not
198
+ TTY-gated** the same reasoning as the KB drift nudge, whose docblock says it plainly: the primary
199
+ reader of this CLI is an authoring agent whose output is piped, and gating on `isTTY` means the one
200
+ reader that cannot notice on its own is the only one never told. Unlike that check there is no local
201
+ marker file: read state is per-workspace on the platform, so an agent in a fresh container still
202
+ learns about an unread reply.
203
+
204
+ Why it matters, measured: in August 2026 four reports sat unread for nine days, and one author
205
+ replaced every `$t()` call with hardcoded English across all 16 flows of a production pack to work
206
+ around a bug that had been fixed two days earlier. Nothing could tell them.
207
+
208
+ ## [0.6.1] - 2026-08-18
209
+
210
+ ### Fixed
211
+ - **`octwin status` worked for no pack at all, and had not since 2026-08-01.** It sent the manifest's
212
+ **bare** id (`clinic`) to a route that requires the qualified `<owner>.<name>` and a manifest
213
+ cannot legally declare the qualified form, because the owner segment is attached at publish time
214
+ from the authenticated publisher (both the platform and this CLI reject a `.` in it). So the route
215
+ answered 404 for every pack, every time. It now resolves the owner from `whoami`'s `tenant_slug`,
216
+ and takes an explicit `octwin status <packId>` when you already know it (from `octwin agents` or
217
+ `octwin projects`, both of which print qualified ids). Reported by two pack authors, who lost time
218
+ to a command that said their pack was missing seconds after a deploy the platform had accepted.
219
+ - **A 404 from `octwin status` no longer always reads "not installed".** That one branch covered four
220
+ different failures a malformed pack id, an unknown tenant, an unknown/pinned-elsewhere project,
221
+ and the genuine no-active-install — so the message named the *least* likely cause and sent an author
222
+ chasing a deploy that had already succeeded. The route says which; the CLI now relays it, and adds
223
+ the "run `octwin deploy` first" hint only to the case it fits.
224
+ - **`octwin logs` always reported "No conversations"**, including immediately after an `octwin chat`
225
+ that had plainly worked. It read `conversations` off the response; the platform moved that endpoint
226
+ to the shared page envelope on 2026-08-09 and answers `rows`, which every other list command here
227
+ already reads. Both authors filed this as replica lag or a cache gap nothing lagged, the payload
228
+ was simply never read. `octwin logs <conversationId>` was unaffected.
229
+
230
+ ## [0.6.0] - 2026-08-09
231
+
232
+ ### Changed
233
+ - **`octwin cases` is now `octwin work`, and it works again.** The platform's work-inbox
234
+ consolidation (2026-08-08) replaced the case-only surface with `/work` over every entity a pack
235
+ declares worked, and renamed the scopes to `work:read`/`work:write` — which left every `octwin
236
+ cases` call a silent 404 in a published CLI. The command family is renamed to match the platform:
237
+ `octwin work [recordId] [--queues]`, with writes `assign` / `note` / `decide` (the declared
238
+ operator actions, `--dry-run` previews) and `stage <id> --to <s>` riding the one platform-wide
239
+ stage verb (`POST …/xrm/records/:id/stage`, needs `records:write`). `transition` is gone with the
240
+ route it called.
241
+ - **`octwin orders transition` rides the same stage verb.** `POST …/orders/:ref/transition` was
242
+ retired server-side in the same consolidation; the CLI now resolves the order's record id from the
243
+ detail read and moves the stage through `…/xrm/records/:id/stage` (scope: `records:write`).
244
+
245
+ ### Added
246
+ - **A route guard so this cannot rot silently again**: `src/lib/cli-routes.test.ts` extracts every
247
+ `/api/self/**` URL the CLI builds and asserts it (method included) against the platform's dumped
248
+ route table — the gap that let both breakages above ship.
249
+
250
+ ## [0.5.1] - 2026-08-01
251
+
252
+ ### Fixed
253
+ - **`validate --remote` blamed the platform's version for a bad `--project`.** Every 404 from
254
+ `POST /api/self/p/packs/validate` printed *"this platform has no /packs/validate endpoint yet
255
+ (older version)"*. That was accurate when the route resolved nothing, but it now resolves the
256
+ tenant and project **before** validating and an unknown project, or one outside a token's pin,
257
+ answers 404 by design. So a typo in `--project` sent you looking for a version mismatch instead of
258
+ at the flag. The two cases are now told apart by the response **body**, not the status: a missing
259
+ route is Fastify's `error: 'Not Found'` and keeps the old wording, while the platform's own
260
+ `project '<slug>' not found under tenant` is printed as-is, with the flags to check.
261
+
262
+ ## [0.5.0] - 2026-08-01
263
+
264
+ ### Added
265
+ - **`octwin seed [--pack <packId>]`** apply the pack's demo/reference data to the project it is
266
+ installed on, without redeploying: `xrm.yaml` `demo:` records + scheduling availability, the
267
+ commerce catalog, and the demo operator topology. Reports what **each kind** produced.
268
+ Previously seeding was reachable only as `deploy --seed`, because the platform's seed endpoint was
269
+ keyed on an install id, guarded platform-admin, and carried no tenant/project segments so the
270
+ `/api/self/**` surface could not reach it and a `pack:deploy` token never could. Re-seeding meant
271
+ a full redeploy or asking an operator. Idempotent and cheap to re-run: records upsert, and
272
+ existing media is REUSED rather than regenerated, so a second pass reports zero images.
273
+
274
+ ## [0.4.0] - 2026-08-01
275
+
276
+ ### Added
277
+ - **`octwin projects create` / `octwin projects rm`** — a **disposable end-to-end environment** from
278
+ the CLI, which is what marketplace developers have been missing. `octwin deploy` has always needed
279
+ a project that already existed and the CLI could only *list* them, so standing up a throwaway
280
+ full deployment meant opening the console or asking an operator. Now:
281
+ ```bash
282
+ octwin projects create "Scratch" # slug `scratch`
283
+ octwin deploy --project scratch --seed # publish + install + demo data
284
+ octwin chat "hi" --project scratch # talk to it (--script for a whole conversation)
285
+ octwin projects rm scratch --yes # throw it away
286
+ ```
287
+ A throwaway environment is deliberately **not a special kind of thing** it is an ordinary
288
+ project in your own workspace, so it inherits your plan, entitlements, RBAC and teardown with no
289
+ separate lifecycle. `create` derives the URL slug from the name (`--slug` pins one, `--pack`
290
+ installs an already-published pack). `rm` is a HARD delete — the project and everything cascading
291
+ from it, no undo, not the same as archiving — so **without `--yes` it only prints what would be
292
+ destroyed**, making the dry run the default; the impact list is derived from `pg_constraint`, the
293
+ same payload the console's confirm dialog renders. Both need `projects:write`, which a
294
+ `pack:deploy` token does **not** confer — the CLI names that scope in the 403 hint.
295
+
296
+ ## [0.3.0] - 2026-07-31
297
+
298
+ ### Added
299
+ - **`octwin projects`** the `--project <slug>` values your token can actually name, with the plan's
300
+ project cap. Every project-scoped command takes that flag and nothing printed the list, so an
301
+ author whose token was not pinned had to guess, and a wrong guess 404s identically to a project
302
+ that exists but has no install. `--archived` includes archived projects; `--json` for raw.
303
+ A `pack:deploy` token reaches it: the platform route was widened to accept `pack:deploy` alongside
304
+ `projects:read`, because `pack:deploy` is `access: 'special'` and confers nothing else — the
305
+ command would have 403ed for exactly the person it exists for.
306
+ - **`octwin validate --require-kb`** turn a skipped KB-driven check into a failure, for CI.
307
+
308
+ ### Fixed
309
+ - **`octwin validate` printed with two of its three checks switched off.** The render-intent and
310
+ primitive-argument checks read `<packDir>/.octwin/platform-kb/`, joined onto the pack directory
311
+ EXACTLY — so an author who pulled once at a repo root and then worked in `packs/<name>/` had both
312
+ checks silently disabled, and the printed above them unconditionally while the per-check ✓s lived
313
+ inside the `if`s. An entire batch of platform-backlog entries reached production through that hole.
314
+ Three fixes: the KB is now found by **walking up** (one pull at a repo root covers every pack under
315
+ it, `src/lib/kb-path.ts`); the readers report **three states** — absent, malformed, ok — so a
316
+ half-written pull no longer reads as "you haven't pulled yet"; and a skip is **announced on the
317
+ last line printed**, because a caveat above a does not reach a reader who stopped at the ✓.
318
+ Warn-and-exit-0 stays the default (the KB is a gitignored cache and `platform-kb pull` needs
319
+ `pack:deploy`, so a hard failure would break a fresh clone) — the defect was the silence, not the skip.
320
+ - **`octwin status` said "live and current" for a pack that could not receive a message.** Every field
321
+ it printed was process-global: `registered` is true for a pack ANY project on that instance loaded.
322
+ Dispatch is per-project and takes the oldest ACTIVE install, ignoring the rest. The route now
323
+ filters `status = 'active'` (an archived install used to report live) and compares against the real
324
+ dispatch target, so status can say plainly that another pack owns this project's messages.
325
+ - **`octwin validate --remote --project does-not-exist` answered `{ ok: true }`** while `deploy` with
326
+ the same flag 404ed. The platform route resolves tenant and project before validating now.
327
+
328
+ ### Changed
329
+ - **`octwin validate --remote` also runs the platform's flow LINT.** It used to run only at pack load,
330
+ so a finding of severity `error` an `assign:` whose value is a quoted literal, a `$t()` key with
331
+ no namespace passed validate and failed the deploy. Offline `validate` cannot do this: the lint
332
+ needs a template-expanded `FlowDef`, which only the server builds.
333
+ - **`record_aggregate` / `record_group` now REQUIRE a scope** (`contact_id` or `all: true`) — a
334
+ platform contract change the offline arg check replays from the KB. Re-pull after upgrading.
335
+
336
+ ## [0.2.0] - 2026-07-30
337
+
338
+ ### Fixed
339
+ - **`records`, `cases`, `orders` and `catalog` printed a correct total and ZERO rows.** The platform
340
+ collapsed its eight per-domain list envelopes into one `Page<T>` whose collection key is `rows`;
341
+ the CLI still read `json.records` / `.cases` / `.orders` / `.products` behind a `?? []`, so the
342
+ fallback turned a key rename into an empty list instead of an error. `octwin records doctor`
343
+ reported *"5 record(s)"* and then *"(none — mint a `records:read` token …)"*, blaming the user's
344
+ credentials. All five readers now go through one `readPage` helper
345
+ (`src/lib/page.ts`) with a test pinned to the real envelope — a hand-copied key name in an
346
+ untested CLI is what shipped this, so the fix is the single reader, not five edits.
347
+ - **`--flag=value` silently did nothing.** `--limit=5` became the key `limit=5` and the command ran
348
+ with its default. Now parsed; `--set`/`--param` also accept repetition.
349
+ - **`octwin catalog` always printed `Products: 0`** it counted the page, and the route's `total`
350
+ had never been read.
351
+
352
+ ### Added
353
+ - **Write commands a pack author can now exercise the state their pack creates, not just read it.**
354
+ Every one needs the matching `:write` scope; a leading verb (`create`/`note`/`transition`/…) is
355
+ what distinguishes a write from the read that shares its command.
356
+ - `records create|patch|stage|note`, `records tasks`, `records task complete`
357
+ - `cases assign|note|transition|decide` `decide --dry-run` previews the customer-facing copy and
358
+ resulting status **without committing** (that route needs only `cases:read`)
359
+ - `orders transition|refund` · `catalog availability|stock` · `agents set`
360
+ - `scheduling rules|rule add|rule rm|exception add|exception rm`
361
+ - **`octwin feedback`** submits the pack's `FEEDBACK.md` to the platform team, attaching the pack
362
+ version, this CLI's version and the `content_hash` of the capability reference you pulled the two
363
+ facts that separate a real platform gap from something already fixed or a stale KB. Replaces
364
+ "hand the file to the platform team".
365
+ - **`--offset` on every list**, and a line saying when a list was truncated and what to run next.
366
+ `has_more` was on every response and no command surfaced it, so a partial list looked complete.
367
+
368
+ ### Changed
369
+ - `orders refund` **exits non-zero when the payment gateway refuses.** The route answers `200` with
370
+ the verdict in `gateway`, so reporting the HTTP status would tell an operator money moved when it
371
+ did not.
372
+ - A 403 on a record or case write now says it may be an **RBAC grant gap** rather than a missing
373
+ scope: the scope is checked on the token, then the verb is re-checked against that specific row.
374
+
375
+ ## [0.1.21] - 2026-07-30
376
+
377
+ > **Never published to npm.** Bumped in-repo, then superseded hours later by 0.2.0 — everything
378
+ > below ships as part of that release. Kept as its own section because the changes are distinct.
379
+
380
+ ### Added
381
+ - **`deploy` and `status` report the marketplace-listing verdict.** A manifest carrying
382
+ `listing.public: true` put the pack into an operator review queue, and the state existed only in
383
+ the console so an author working from the CLI got no acknowledgement that the request had
384
+ registered, and never saw a rejection note (which the platform *requires* precisely because it is
385
+ their only feedback). Both commands now print it via `printPublicListing`, and stay silent for a
386
+ pack that never asked. `status` also distinguishes *approved* from *actually public*: an approval
387
+ pins the content sha it reviewed, so any edit returns the pack to the queue on its own.
388
+ - **`octwin pull` is discoverable.** It was implemented and answered `--help`, but appeared in
389
+ neither `octwin help` nor the README the one command that recovers a deployed pack's only source
390
+ copy was invisible unless you already knew its name. Also added to the scope-requirement table, so
391
+ a 403 names `pack:deploy` instead of printing the generic hint.
392
+
393
+ ### Fixed
394
+ - **The capability-reference drift check no longer fails silently on a narrow token.** The `?meta=1`
395
+ poll needs `pack:deploy`, but it rides on every networked command — so an author inspecting data
396
+ with a `records:read`-only token got no drift signal at all, and a stale reference is exactly what
397
+ leads to inventing a primitive from memory. A 401/403 there now says so once.
398
+ - **README: casework is declared in `worklist.yaml`, not a `cases.yaml`.** That grammar was retired;
399
+ following the README produced a pack whose casework silently never loaded. `octwin media generate`
400
+ was also missing from the command table.
401
+ - **`records` no longer blames the plan for a route the plan does not gate.** `GET /xrm/entities`
402
+ carries only the scope guard, so a 403 on the entity list wrongly cited the `records` plan feature.
403
+
404
+ ### Removed
405
+ - **Unreachable rename branches in `init`.** The agent-id and `main`-flow renames sat behind
406
+ `--agent` / `--flow` options the CLI never parsed, against a template that ships no `main` flow
407
+ both branches could never fire, and their patterns would have matched nothing if they had.
408
+
409
+ ## [0.1.20] - 2026-07-29
410
+
411
+ ### Added
412
+ - **`octwin validate` catches primitive arguments the platform would drop offline, no token.** A
413
+ primitive takes the arguments it declares and silently ignored the rest, so an invented or
414
+ misspelled `args:` key deployed clean, ran clean, and simply did nothing: `record_list args: {
415
+ order: … }` (the argument is `sort`) never ordered, and `booking_cancel args: { booking_record_id:
416
+ }` meant the REQUIRED `record_id` never arrived, so cancelling just failed. Validate now replays
417
+ the platform's contract from the pulled KB (`primitives/*.json` `inputSchema`) and names the bad
418
+ argument, what the primitive takes, and any required argument that is missing. Scanning the 21
419
+ shipped marketplace packs found **ten** such errors across five packs. Keys are checked, values are
420
+ not an `args:` value is normally an expression string resolved at runtime.
421
+ [`args-check.ts`](src/lib/args-check.ts).
422
+ - Silently skipped when the KB has not been pulled yet, like the render-intent check beside it.
423
+ - It cannot see inside a `use:` template body (expanding one is the platform's job) — `octwin
424
+ validate --remote` covers that case, and now also reports unreachable `$bind.<path>` reads and
425
+ `outputs:` port typos, which have no offline equivalent.
426
+
427
+ ## [0.1.19] - 2026-07-29
428
+
429
+ ### Added
430
+ - **`octwin validate` catches render-intent fields the platform would dropoffline, no token.** Each
431
+ render intent takes a fixed field set; a key outside it used to be swallowed at load and dropped at
432
+ render, with no error anywhere — just a card missing what the author wrote. Validate now replays the
433
+ platform's own contract from the pulled KB (`render-intents/*.json` `allowed_keys`) and names the
434
+ bad field, the intent, and what is allowed. Scanning the 21 shipped marketplace packs found two real
435
+ instances in 223 intents: a `text_card` carrying `buttons` (the fallback's only escape button never
436
+ rendered) and a `list_picker` carrying a non-existent `group_by` (a whole mapper step feeding a
437
+ fabricated parameter). Silently skipped when the KB has not been pulled yet.
438
+
439
+ ### Changed
440
+ - **`octwin platform-kb pull` now explodes the reference and writes an `INDEX.md`.** A pull used to
441
+ write ~787 KB across 34 flat files about 225k tokens, more than the pack being authored — so
442
+ finding one primitive meant reading a 122 KB catalog. Catalogs the platform describes as
443
+ enumerable are now written **one file per entry** (`primitives/record_list.json`,
444
+ `render-intents/carousel.json`, `declarations/xrm.json`, ), with `INDEX.md` mapping every doc and
445
+ all 171 entries to its file with a one-line summary. Reading one primitive went from ~38k tokens to
446
+ ~700. The layout comes from the platform (an `entries` descriptor on the bundle index) rather than
447
+ being hardcoded here, so this CLI keeps working against any platform version and a platform that
448
+ adds a catalog needs no CLI release. The pulled directory is cleared each pull, so a withdrawn
449
+ capability cannot linger as a file the authoring agent reads as current its *contents* are
450
+ cleared rather than the directory itself, since on Windows a directory that is any shell's working
451
+ directory cannot be removed.
452
+
453
+ ## [0.1.18] - 2026-07-29
454
+
455
+ ### Fixed
456
+ - **The bundle collector and the platform's repo import disagreed about what a pack directory
457
+ contains.** `collectBundleFiles` had its own rule and kept three things the operator's GitHub
458
+ import drops: `*.ts`/`*.tsx`, `__snapshots__/` and `*.example`. Because the server rejects a
459
+ `.ts` outright, the same directory imported cleanly from GitHub and failed to deploy from
460
+ disk with `'…': executable code is not allowed` an error blaming a file that was never
461
+ meant to ship (a snapshot test beside a flow, or the documented `xrm.yaml.example` template).
462
+ The rule now lives in a vendored `lib/pack-source.ts` beside the vendored validator, and a
463
+ parity test in the platform drives both copies over one table.
464
+
465
+ ### Removed
466
+ - **`pack.json` is gone — the saved login IS the deploy target.** The file had eroded to a single
467
+ field, `platform_url`, which `octwin login --url … --token …` already states; `tenant`/`project`
468
+ became optional overrides once deploy tokens started carrying their own tenant and project pin.
469
+ So it was a second home for a fact `login` knew, and it cost real things: a machine-specific file
470
+ committed into every pack repo, a four-link config-precedence chain to document, and an
471
+ exclusion rule duplicated in the bundler and the server (which had already drifted apart).
472
+ `octwin init` and `octwin pull` no longer write one, and nothing reads one. **A pack directory is
473
+ now pack content and nothing else** the same repo deploys from any machine, and a pulled pack
474
+ redeploys with no flags.
475
+
476
+ ### Changed
477
+ - **`octwin login` now sets the default deploy target**, not just the token: it writes a
478
+ `default_url` key alongside the token in `~/.octwin/credentials.json`. Every command resolves
479
+ **flags env (`PACK_PLATFORM_URL`/`PACK_TENANT`/`PACK_PROJECT`/`PACK_TOKEN`) saved login**.
480
+ An existing credentials file simply has no `default_url` until the next `octwin login` — which is
481
+ exactly what the "no platform url" error now tells you to run. CI is unaffected (it passes
482
+ `PACK_PLATFORM_URL` + `PACK_TOKEN` as env and never had a `pack.json` — that file is retired).
483
+
484
+ ## [0.1.17] - 2026-07-27
485
+
486
+ ### Added
487
+ - **`octwin pull <packId>` write a DEPLOYED pack's source back to disk.** The inverse of
488
+ `deploy`. A pack pushed with the CLI lived on the platform as an artifact the runtime served
489
+ but nothing could hand back, so its only source copy was the machine that pushed it. Pull it,
490
+ fix it, redeploy it. Writes a `pack.json` (retired in 0.1.18 the saved login is now the
491
+ target) so the pulled directory redeploys where it came from; `--version` picks a version,
492
+ `--force` overwrites a non-empty dir. You may pull a pack
493
+ your tenant OWNS (an operator token pulls any) a pack you merely installed is not yours to
494
+ read.
495
+ - **`octwin chat --script <file>` drive a whole conversation from one invocation.** One turn per
496
+ line, in order, in a single process over a single SSE connection, waiting for each turn to settle
497
+ before sending the next. Blank lines and `#` comments are skipped; `tap:<id>` presses a rendered
498
+ row/button (the rest of the line is kept verbatim, since a tap id is itself colon-delimited),
499
+ `media:<path>` uploads a file, and `media:<path> | caption` attaches one.
500
+
501
+ This exists because **chaining invocations races the agent loop.** A turn ends on a quiet gap
502
+ (`TURN_SETTLE_MS`), which can arrive while the server-side loop is still running — so
503
+ `chat A && chat B` lets B's inbound land mid-turn, and the agent fills required fields with
504
+ placeholder text (`service_id: "service-id"`) or starts a second workflow run. Those look exactly
505
+ like flow bugs and cost a field author three separate investigations. The one-turn-per-invocation
506
+ rule is now stated in `chat --help` and the header usage as well.
507
+
508
+ ### Changed
509
+ - **`octwin deploy` reports the suspended runs it invalidated.** A redeploy rebuilds the pack's
510
+ tools, and in-flight flow runs live in those tools so every suspended conversation is dropped.
511
+ The deploy prints `ⓘ N suspended run(s) invalidated` when N > 0, instead of leaving the author to
512
+ discover it as a `workflow_resume_stale` on the next tap.
513
+
514
+ ## [0.1.16] - 2026-07-26
515
+
516
+ ### Added
517
+ - **A pack can ship committed images.** `jpg`/`jpeg`/`png`/`webp`/`gif`/`pdf` files in your pack
518
+ directory now travel as a separate `blobs` half of the bundle (base64 on the wire, `bytea` in
519
+ storage) instead of being rejected as "not an allowed pack file type". Declare each one under the
520
+ manifest's `static_assets: [{ file, key }]` and reference it from `config:` with the
521
+ `$pack_asset:<key>` sentinel the platform uploads it to the media system at install and the
522
+ sentinel resolves to the served URL. `octwin validate` reports the image count alongside the file
523
+ count.
524
+ - **The size ceilings fail locally, before upload** — 2 MB per file, 32 MB of binary per pack,
525
+ mirroring the server. `svg` stays rejected: it is script-capable and these assets are served to
526
+ browsers.
527
+
528
+ ### Fixed
529
+ - **Committed images were silently corrupted.** `collectBundleFiles` read *every* file with
530
+ `readFileSync(full, 'utf8')`, so a JPEG went through a lossy UTF-8 decode and arrived mangled
531
+ server-side a deploy that "succeeded" and rendered a broken image. Binary files now split off
532
+ into `blobs` and keep their bytes.
533
+ - **`octwin status` reported `loaded=(none)` for every pack, always.** It printed a `loaded_version`
534
+ field that stopped existing when reload moved to content-sha keying, which also meant the
535
+ version-drift warning underneath it could never fire. It now prints the **content sha** the
536
+ instance has loaded and the one the catalog holds (with the artifact's `origin`), and warns off the
537
+ platform's own `up_to_date` flag. The sha is the more useful fact anyway: re-publishing the *same*
538
+ version changes it, which is exactly the author's inner loop. A pack that is live and current but
539
+ **withdrawn** from the catalog now says so, rather than reporting a clean bill of health.
540
+
541
+ ## [0.1.15] - 2026-07-25
542
+
543
+ ### Added
544
+ - **`octwin agents [packId::agentId] [--prompt]` see what your agent actually runs as.** The platform
545
+ gained *governed* agent settings: an operator platform default can override the `default_model`
546
+ (and history window / working-memory toggle) your manifest declares, and that override is invisible
547
+ from the pack source. The command prints each governed setting's **effective** value, **which layer
548
+ won** (project override platform default pack manifest), and warns explicitly when your pack's
549
+ declared value is *not* in force. `--prompt` prints the exact system prompt the LLM sees for this
550
+ project (pack instructions + platform protocol + any project overlay).
551
+ - **`octwin orders [reference_id]` the commerce a conversation produced.** The list (number,
552
+ status/payment, total, contact) or one order with its line items, the
553
+ subtotal/tax/shipping/discount/total breakdown, `payment_ref`, and the allowed transitions. On a
554
+ `pending`/`none` payment it explains *why that's expected*: the forward payment lifecycle is
555
+ **webhook-owned** (not patchable), and the default gateway-less `manual` driver makes
556
+ `payment_request` take its `empty` port so the flow should confirm pay-on-delivery, not error.
557
+ - **`octwin analytics [entity]` stage conversion for any pipelined entity.** The funnel engine that
558
+ powered journeys is now generic, so any entity declared with a `pipeline:` charts conversion +
559
+ drop-off (`--overview` / `--milestones` / `--trends` / `--cost`, and `--stage <id>` for the records
560
+ currently at a stage). An empty result names **both** causes the platform folds into one response —
561
+ no `pipeline:`, or no `view` grant on `record.<entity>`.
562
+ - **`octwin catalog [--readiness]`** — commerce products with price, availability and stock
563
+ (`untracked` when the SKU isn't inventory-tracked), plus the WhatsApp catalog binding.
564
+ `--readiness` runs the Meta Graph checklist with each failing item's suggested fix.
565
+ - **`octwin scheduling [--slots <resourceRecordId>]`** the engine state (bookable resource types,
566
+ upcoming slots, booked seats) or the computed slots for one resource. This is how you verify the
567
+ availability rules a `deploy --seed` created, which 0.1.14 could create but not read back.
568
+
569
+ ### Changed
570
+ - **Auth failures now name the scope the command needs.** Every 401/403 appends the required scope
571
+ (and the plan feature, where the route is entitlement-gated) from one client-side mirror of the
572
+ platform's scope registry replacing the per-command hardcoded strings, several of which named no
573
+ scope at all. It also spells out that `pack:deploy` / `media:generate` are direct-grant only, so a
574
+ `tenant:admin` preset token does **not** confer them (the most common "but my token is admin" dead end).
575
+
576
+ ## [0.1.14] - 2026-07-23
577
+
578
+ ### Fixed
579
+ - **A failed demo seed no longer reports a clean `✓`.** `deploy` softens non-fatal
580
+ install steps (e.g. a demo-seed row) to warning frames, but the summary still printed
581
+ `✓ Deployed` and exited 0 so a deploy that seeded ZERO records read as success (the
582
+ false-✓ trap). `deploy` now collects those step errors, prints `⚠ Deployed with N
583
+ warning(s) data may be incomplete` with each message, and exits non-zero so CI /
584
+ a `deploy && chat` chain catches it.
585
+
586
+ ### Added
587
+ - **`login` echoes what the token reaches.** After saving, `octwin login` calls
588
+ `/api/self/t/whoami` and prints the workspace, project pin, and scopes so a fresh
589
+ token self-identifies without a second `octwin whoami` (best-effort; a network failure
590
+ never fails the save).
591
+ - **`validate --remote` surfaces warnings + the data-store trap.** The remote validate now
592
+ renders advisory `⚠` warnings (which don't block deploy) and, for a pack declaring
593
+ `required_adapters: [data-store]`, reports the missing-data-store error the deploy would
594
+ have 409'd on plus a warning that an `xrm.yaml` pack usually shouldn't declare that
595
+ adapter at all. It also now catches (offline) a list-form `entities:` block and a
596
+ `localized: true` field seeded with a bare string — traps that previously surfaced only
597
+ mid-seed at deploy.
598
+
599
+ ## [0.1.13] - 2026-07-22
600
+
601
+ ### Added
602
+ - **A headless media loop produce + send.** Two paired additions close the coverage hole where any
603
+ media-collect flow (e.g. `activate-app`'s registration / ID uploads) stalled at the upload prompt
604
+ because the CLI could neither *make* nor *send* an image:
605
+ - `octwin media generate "<prompt>" [--out <file.png>] [--size 1024x1024] [--json]` AI-generates an
606
+ image on the platform (needs a `media:generate`-scoped token), stores it as a public asset, and prints
607
+ its `MEDIA-` handle + serve URL. `--out` downloads the bytes to a file (WhatsApp renders only
608
+ `.png`/`.jpg`); `--json` emits `{ media_id, url, mime, width, height, bytes }`.
609
+ - `octwin chat --media <file|media-id>` uploads a local file (or a media id from
610
+ `media generate --json`) as an image/document/audio inbound; any accompanying `"message"` rides as
611
+ its caption. The platform's media pipeline folds the upload into a running collect, so media flows
612
+ are now fully drivable headlessly.
613
+
614
+ ### Changed
615
+ - **The KB-drift nudge now names what changed.** With the platform serving per-entry content hashes, the
616
+ post-command nudge appends a `(N changed · M added · K removed)` summary instead of a bare hash pair.
617
+ - **`octwin platform-kb` prints a changelog on pull.** Instead of only a doc/catalog count, the pull now
618
+ diffs the fresh index against your last pull and lists exactly which docs/catalogs were added (`+`),
619
+ changed (`~`), or removed (`-`) so a replaced schema shape is visible, not silent.
620
+
621
+ ## [0.1.12] - 2026-07-22
622
+
623
+ ### Fixed
624
+ - **The KB-drift nudge now fires after `chat` too.** `chat` — the command a debugging session runs most —
625
+ was missing from the networked-command list, so a chat-heavy session never noticed the platform's
626
+ capability reference had moved. The nudge also now shows the concrete drift
627
+ (`old-hash → new-hash`) so you can see it's real, not a heuristic.
628
+
629
+ ### Changed
630
+ - **Every networked command announces what it's doing before it does it.** `chat` prints
631
+ `→ Connecting to <tenant>/<project> as '<handle>' …` before opening the stream and
632
+ `… delivered waiting for the reply (up to Ns)` after the send; `status` / `whoami` /
633
+ `platform-kb` / `records` / `logs` / `cases` each print a one-line `→ …` header naming the
634
+ action and target before the first network call no more silent seconds followed by a result
635
+ (or a hang with no clue what was being attempted). JSON modes (`--json`) stay clean for piping.
636
+
637
+ ## [0.1.11] - 2026-07-21
638
+
639
+ ### Fixed
640
+ - **Auth-failure hint on every command, not just the inspect family** (author-feedback A7). `validate`,
641
+ `deploy`, `status`, and the single-record read now print the scope/transient explanation on a 401/403
642
+ (the shared `authFailureHint`), instead of a bare `HTTP 401` that left it ambiguous whether the token
643
+ lacked a scope or the platform hiccupped.
644
+
645
+ ## [0.1.10] - 2026-07-21
646
+
647
+ The capability reference is now **pulled, never bundled** the authoring skill dropped its committed KB
648
+ snapshot, so `octwin platform-kb pull` is the single source of truth, and the CLI watches it for drift.
649
+
650
+ ### Added
651
+ - **KB-drift nudge** after any command that already talks to the platform (`deploy` / `status` /
652
+ `test` / `validate --remote` / `records` / `cases` / `logs` / `whoami`), the CLI does one tiny
653
+ `octwin-platform-kb?meta=1` GET and prints a one-line "the platform capability reference changed —
654
+ `octwin platform-kb pull`" when the platform's `content_hash` no longer matches your last pull.
655
+ Fail-silent + TTY-only + no-op until you've pulled once — the sibling of the existing CLI-upgrade notice.
656
+
657
+ ### Changed
658
+ - **`octwin platform-kb pull`** now records the reference's `content_hash` in `.octwin/platform-kb/index.json`
659
+ (the fingerprint the drift check compares against).
660
+
661
+ The conversation-debugging release — driven by the second author-feedback round (xpeng-egypt),
662
+ which found the author→validate→deploy loop solid but multi-turn debugging impossible from the CLI.
663
+
664
+ ### Added
665
+ - **`octwin chat --tap "<tap-id>"`** — press a rendered button / list row (sends the web channel's
666
+ `type:'interactive'` inbound). Paired with full render printing, any tap-driven flow is now drivable headlessly.
667
+ - **Full render printing** — every reply prints its complete interactive content: list sections/rows,
668
+ buttons, and carousel cards, each with its **tap id**; header/footer/list-button text included.
669
+ - **`--json` on `chat` / `logs` / `cases`** — raw SSE envelopes (chat) or raw event/case payloads.
670
+ - **`octwin cases [caseId] [--queues]`** — inspect casework (support tickets): the inbox, one case +
671
+ timeline + applicable decisions, or queue keys with open counts. Casework packs previously had zero
672
+ data-inspection path (`records case` was a dead end).
673
+ - **Per-subcommand `--help`/`-h`** — intercepted before any network or auth work (previously
674
+ `octwin logs --help` made a network call and could die with a 401).
675
+ - Multi-message turns: `chat` now collects **all** of a turn's renders (quiet-gap detection) instead
676
+ of cutting at the first one.
677
+
678
+ ### Changed
679
+ - **`octwin logs`**: the conversation list shows contact handle + last activity and filters with
680
+ `--as <handle>`; the timeline prints **full** event text (no more 240-char truncation) plus the
681
+ renders each turn actually sent; footer points at `--json` / `mastra-messages` for verbatim payloads.
682
+ - **Network failures name the target URL** (`platform unreachable at <url>`), and 401s explain
683
+ invalid-token vs one-off transient instead of a bare status code.
684
+ - `octwin records` on an unknown entity now surfaces the server's error body, and for `case`/`cases`
685
+ points at `octwin cases`.
686
+
687
+ ### Fixed
688
+ - **Multi-turn chat actually works.** Two bugs made consecutive `octwin chat` calls look like "every
689
+ call starts fresh": (1) the idempotency `local_id` was a **constant** per handle, so the platform's
690
+ 5-minute inbound dedup silently dropped the second message — a fresh id is now minted per call;
691
+ (2) a fresh SSE connect **replays** recent history and the CLI printed the first render frame — i.e.
692
+ the *previous* turn's greeting — as the reply; the CLI now drains the replay and only accepts frames
693
+ newer than the connect boundary. The platform always kept one open conversation per `--as` handle —
694
+ the same handle genuinely continues the same conversation now.
695
+
696
+ ## [0.1.8] - 2026-07-21
697
+ - Global-first install guidance (`npm i -g octwin-cli`); upgrade notice suppressed under `npx`.
698
+
699
+ ## [0.1.7] - 2026-07-21
700
+ - `--version`/`-v` flag; daily fail-silent, TTY-only "newer version available" notice.
701
+
702
+ ## [0.1.6] - 2026-07-21
703
+ - `octwin init` scaffolds a home-hub menu (`home` list_picker + example `browse` tool) instead of a bare greeting.
704
+
705
+ ## [0.1.5] - 2026-07-20
706
+ - `octwin validate --remote` (the platform's FULL manifest + flow-DSL check, all errors at once);
707
+ headless debugging commands `octwin records` / `octwin logs` / `octwin chat`; `octwin test` became
708
+ an alias for `validate --remote`. First author-feedback round.
709
+
710
+ ## [0.1.4] - 2026-07-20
711
+ - Authoring reliability + DX fixes from the first end-to-end external-pack test.
712
+
713
+ ## [0.1.3] - 2026-07-20
714
+ - `octwin platform-kb pull` — pull the platform capability reference for the authoring skill.
715
+
716
+ ## [0.1.2] - 2026-07-20
717
+ - Proper npm README.
718
+
719
+ ## [0.1.1] - 2026-07-20
720
+ - Initial npm publish: `init` / `validate` / `login` / `whoami` / `deploy` / `status`, `oct_` deploy tokens.