@everfir/az8-cli 0.4.0 → 0.5.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/README.md +14 -16
- package/dist/main.js +264 -251
- package/package.json +2 -4
- package/skills/az8-cli/SKILL.md +18 -20
- package/CHANGELOG.md +0 -260
- package/RELEASE.md +0 -93
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ az8 guide
|
|
|
18
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.
|
|
21
|
+
npm install --global ./everfir-az8-cli-0.5.0.tgz
|
|
22
22
|
az8 --version
|
|
23
23
|
```
|
|
24
24
|
|
|
@@ -45,18 +45,18 @@ responses for the effective Operations, permissions, input schema, History, comp
|
|
|
45
45
|
semantics of the installed version and current account. Workflow Definition queries and
|
|
46
46
|
`planGeneration` remain authoritative for current generation inputs.
|
|
47
47
|
|
|
48
|
-
## Credentials
|
|
48
|
+
## Credentials
|
|
49
49
|
|
|
50
50
|
Use browser authorization for the default local account:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
az8 login
|
|
54
|
-
az8 whoami
|
|
55
|
-
az8 logout
|
|
53
|
+
az8 login
|
|
54
|
+
az8 whoami
|
|
55
|
+
az8 logout
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
`login` opens
|
|
59
|
-
|
|
58
|
+
`login` opens AZ8 Studio, waits for explicit approval, validates the issued account, and stores the
|
|
59
|
+
credential in the current operating-system user's private AZ8 CLI
|
|
60
60
|
state directory. `whoami` reports the active account and credential source without exposing the
|
|
61
61
|
token. `logout` closes daemon Sessions that depend on that local credential and removes it locally;
|
|
62
62
|
it does not revoke copies on other machines. Use `login --no-open` when the browser must be opened
|
|
@@ -67,13 +67,11 @@ an explicit env-file path, or an inherited process environment:
|
|
|
67
67
|
|
|
68
68
|
```dotenv
|
|
69
69
|
AZ8_TOKEN=<operator-provisioned-secret>
|
|
70
|
-
AZ8_ENVIRONMENT=test
|
|
71
70
|
```
|
|
72
71
|
|
|
73
|
-
|
|
74
|
-
value. Without `--env-file`, the CLI searches from the working directory upward for `.env.local`.
|
|
72
|
+
Without `--env-file`, the CLI searches from the working directory upward for `.env.local`.
|
|
75
73
|
An explicit file is selected by path, for example
|
|
76
|
-
`--
|
|
74
|
+
`--env-file /secure/path/.env.local`. Process-environment credentials take
|
|
77
75
|
precedence over env files, which take precedence over the locally saved login. The CLI never
|
|
78
76
|
rewrites an env file or inherited environment. Agents must not read, print, edit, or ask users to
|
|
79
77
|
paste credential contents. Tokens must not be passed through argv or stdio protocol payloads.
|
|
@@ -121,9 +119,9 @@ A new agent needs only the installed package, an authorized account, and this do
|
|
|
121
119
|
active identity, then create its own Project and open one daemon-backed Agent Collaboration Session:
|
|
122
120
|
|
|
123
121
|
```bash
|
|
124
|
-
az8 whoami
|
|
122
|
+
az8 whoami
|
|
125
123
|
az8 projects create --name "Agent preview workspace"
|
|
126
|
-
az8 session open <project-id>
|
|
124
|
+
az8 session open <project-id>
|
|
127
125
|
az8 session query capabilities.summary
|
|
128
126
|
az8 session operation createNote --request-id preview-note-1 \
|
|
129
127
|
--input-json '{"text":"Release smoke note","position":{"x":160,"y":160}}'
|
|
@@ -488,7 +486,7 @@ from TypeScript source:
|
|
|
488
486
|
Project, Session, persistent Canvas, one-shot, upload, and download entry points; and `az8 guide`
|
|
489
487
|
plus its JSON form work without credentials or network access.
|
|
490
488
|
2. With no credential, an authenticated command fails without connecting and without printing a
|
|
491
|
-
token. With the
|
|
489
|
+
token. With the acceptance credential, `projects create` returns a new Project owned by the authenticated
|
|
492
490
|
account.
|
|
493
491
|
3. A daemon-backed Session opens, becomes current, accepts a summary query and one semantic write,
|
|
494
492
|
reports healthy status, delivers an interested external change through `watch`, returns `idle`
|
|
@@ -501,7 +499,7 @@ from TypeScript source:
|
|
|
501
499
|
6. Upload one small local media file, confirm immediate detail resolution to its Core Node, replay
|
|
502
500
|
the same idempotency key without another transfer, and download the resolved media to a fresh
|
|
503
501
|
destination whose SHA-256 is reported.
|
|
504
|
-
7. Run repository `pnpm verify`, retain the tarball SHA-512, and record the
|
|
505
|
-
|
|
502
|
+
7. Run repository `pnpm verify`, retain the tarball SHA-512, and record the internal acceptance
|
|
503
|
+
target. Follow the repository-only release instructions for that target.
|
|
506
504
|
|
|
507
505
|
Release and rollback commands are in `RELEASE.md`; package changes are in `CHANGELOG.md`.
|