@everfir/az8-cli 0.3.0-preview.3 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/README.md +16 -7
- package/RELEASE.md +6 -6
- package/dist/main.js +685 -322
- package/package.json +2 -2
- package/skills/az8-cli/SKILL.md +17 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,40 @@ it does not inherit the Web application or monorepo root version.
|
|
|
5
5
|
|
|
6
6
|
## Unreleased
|
|
7
7
|
|
|
8
|
+
## 0.3.0 - 2026-07-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Account-aware Workflow discovery and selection, using the same free-account eligibility rule as
|
|
13
|
+
Web while keeping unavailable historical Definitions inspectable in detail.
|
|
14
|
+
- Web-equivalent default generation Drafts and private local Workflow preferences scoped by
|
|
15
|
+
environment, authenticated account, and output content type.
|
|
16
|
+
- Truthful terminal Workflow target identity derived from retained launch facts or unique Canvas
|
|
17
|
+
History, with explicit unresolved and ambiguous states when evidence is insufficient.
|
|
18
|
+
- Daemon-backed collaboration Sessions, manual and generated Text Resources, semantic Prompt
|
|
19
|
+
reference insertion, structured transfer progress, and bounded download recovery.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- `createGenerationTarget` initializes an eligible default Draft in the same undoable interaction;
|
|
24
|
+
prompt-only `editGenerationDraft` uses the same resolver when a historical target has no Draft.
|
|
25
|
+
- Generation plans preserve their effective prompt and configuration when input modality switches
|
|
26
|
+
to another Workflow Definition and rebuilds the target Draft.
|
|
27
|
+
- Workflow summary, defaults, planning, reference edits, and generation start reject Definitions
|
|
28
|
+
unavailable to the authenticated account. `available:free` is treated only as free-tier access,
|
|
29
|
+
never as pricing evidence.
|
|
30
|
+
- Agent guidance prioritizes one foreground `session watch`, early visible targets, authoritative
|
|
31
|
+
planning, and explicit reconciliation instead of polling, guessed At syntax, or write retries.
|
|
32
|
+
|
|
33
|
+
### Safety and compatibility
|
|
34
|
+
|
|
35
|
+
- Public writes remain semantic Operations backed by internal Commands. No Workflow preference,
|
|
36
|
+
access rule, or Watch enrichment grants a raw Canvas mutation path.
|
|
37
|
+
- Local preferences contain only a Definition id and sanitized scalar config values; they never
|
|
38
|
+
contain credentials, prompts, media URLs, or Project data.
|
|
39
|
+
- Stable protocol `1.0`, sequential write blocking, no automatic write retry, and explicit
|
|
40
|
+
generation acceptance/completion boundaries remain unchanged from `0.2.0`.
|
|
41
|
+
|
|
8
42
|
## 0.3.0-preview.3 - 2026-07-23
|
|
9
43
|
|
|
10
44
|
### Added
|
package/README.md
CHANGED
|
@@ -15,10 +15,10 @@ az8 help
|
|
|
15
15
|
az8 guide
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
For a supplied
|
|
18
|
+
For a supplied release artifact, install the exact immutable tarball instead:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install --global ./everfir-az8-cli-0.3.0
|
|
21
|
+
npm install --global ./everfir-az8-cli-0.3.0.tgz
|
|
22
22
|
az8 --version
|
|
23
23
|
```
|
|
24
24
|
|
|
@@ -148,14 +148,16 @@ the CLI's local observation-to-delivery delay; neither includes speech recogniti
|
|
|
148
148
|
host's scheduling time. Repeat only a small bounded sample, keep the Session open between trials,
|
|
149
149
|
and remove the temporary Interest or close the Session afterward.
|
|
150
150
|
|
|
151
|
-
For generation, create a target with `createGenerationTarget` (including `contentType: "text"`)
|
|
152
|
-
|
|
151
|
+
For generation, create a target with `createGenerationTarget` (including `contentType: "text"`).
|
|
152
|
+
Creation initializes an account-eligible default Draft when available and reports
|
|
153
|
+
`draftInitialized`, `definitionId`, and `selectionSource`; it never starts generation. Call
|
|
154
|
+
`planGeneration` with the returned View Node and a prompt. Execute its returned
|
|
153
155
|
`plan.operations` in order, stopping after the first failure. A
|
|
154
156
|
successful `startGeneration` Receipt contains the Workflow Run identity; call `waitWorkflowRun`
|
|
155
157
|
separately when a terminal output is required. Planning and starting are intentionally not one
|
|
156
158
|
transaction. In an active Session, prefer one foreground `session watch`: the system terminal event
|
|
157
|
-
includes
|
|
158
|
-
|
|
159
|
+
includes the target View Node only when it can be mapped uniquely from authoritative launch or
|
|
160
|
+
Canvas History facts; unresolved or ambiguous mappings are reported rather than guessed.
|
|
159
161
|
|
|
160
162
|
For media transfer, `canvas upload` places a verified local image/video/audio file through the
|
|
161
163
|
server-owned Core Node path. After detail query resolves the target's `resolvedCoreNodeId`, `canvas
|
|
@@ -315,7 +317,14 @@ Node hierarchy operations, and the Stage 3 Core Node creative loop. Note operati
|
|
|
315
317
|
`addVisualReference`, `removeVisualReference`, `startGeneration`, `getWorkflowRun`, and
|
|
316
318
|
`waitWorkflowRun`. Capability detail is discoverable through `capabilities.detail`; callers should
|
|
317
319
|
use it instead of hard-coding input schemas. Workflow Definitions are available through
|
|
318
|
-
`workflowDefinitions.summary` and `workflowDefinition.detail` queries.
|
|
320
|
+
`workflowDefinitions.summary` and `workflowDefinition.detail` queries. Summary discovery, default
|
|
321
|
+
Drafts, planning, and generation start use only Definitions available to the authenticated account.
|
|
322
|
+
Detail may retain an unavailable historical Definition for diagnosis with
|
|
323
|
+
`availableForAccount: false` and an `accessReason`.
|
|
324
|
+
|
|
325
|
+
Workflow tags describe classification, compatibility, access, and rollout rather than price.
|
|
326
|
+
`available:free` means a free-tier account may select the Workflow; it does not mean zero-credit
|
|
327
|
+
generation. Credit claims must come from planning/start estimates or terminal usage records.
|
|
319
328
|
|
|
320
329
|
Before editing a Draft, an agent can call the read-only `planGeneration` Operation for an existing
|
|
321
330
|
generation target. It recommends a Definition from the target and resolved generation-reference modalities,
|
package/RELEASE.md
CHANGED
|
@@ -57,18 +57,18 @@ Before publishing, also run the test-environment acceptance checklist in the pac
|
|
|
57
57
|
repository-wide `pnpm verify`. Publishing is an external action and requires explicit operator
|
|
58
58
|
authorization:
|
|
59
59
|
|
|
60
|
-
For
|
|
60
|
+
For the `0.3.0` stable candidate, publish the exact retained artifact to the stable channel only
|
|
61
|
+
after its test-environment acceptance succeeds:
|
|
61
62
|
|
|
62
63
|
```bash
|
|
63
|
-
npm publish ./tmp/az8-cli-release/everfir-az8-cli-0.3.0
|
|
64
|
+
npm publish ./tmp/az8-cli-release/everfir-az8-cli-0.3.0.tgz --tag latest
|
|
64
65
|
npm view @everfir/az8-cli dist-tags versions --json
|
|
65
66
|
```
|
|
66
67
|
|
|
67
68
|
Publish only the exact retained tarball whose SHA-512 appears in its release verification record.
|
|
68
|
-
Do not publish from an unverified source directory
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
version:
|
|
69
|
+
Do not publish from an unverified source directory, retag a preview artifact as stable, or rebuild
|
|
70
|
+
after acceptance. If the obsolete misspelled `prewview` tag still exists, remove that tag without
|
|
71
|
+
unpublishing its immutable version:
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
74
|
npm dist-tag rm @everfir/az8-cli prewview
|