avorelo 0.2.0 → 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/README.md +12 -13
- package/dist/avorelo.mjs +6200 -796
- package/package.json +33 -4
package/README.md
CHANGED
|
@@ -4,25 +4,25 @@
|
|
|
4
4
|
work focused, keeps secrets out of the model and out of cloud, and saves proof of what actually happened,
|
|
5
5
|
locally.
|
|
6
6
|
|
|
7
|
-
> Status: **
|
|
7
|
+
> Status: **private alpha** (`0.2.0`). Local-first and deterministic. See the limitations below.
|
|
8
8
|
|
|
9
9
|
## Quickstart
|
|
10
10
|
|
|
11
|
-
No signup, no cloud account, no credentials, no network required.
|
|
11
|
+
No signup, no cloud account, no credentials, no network required.
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
node src/avorelo/surfaces/cli/avorelo.ts status --target . # 2. is the workspace ready? what's next?
|
|
19
|
-
node src/avorelo/surfaces/cli/avorelo.ts run "run tests" --target . # 3. run your first focused task
|
|
20
|
-
node src/avorelo/surfaces/cli/avorelo.ts control-center --target . # 4. read-only local operator view
|
|
14
|
+
npx avorelo@latest activate # detect your project, set up local state, start getting value
|
|
15
|
+
npx avorelo@latest status # what's the workspace state? what's next?
|
|
16
|
+
npx avorelo@latest run "run tests" # run your first focused task
|
|
17
|
+
npx avorelo@latest control-center # read-only local operator view
|
|
21
18
|
```
|
|
22
19
|
|
|
23
|
-
`
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
Run `npx avorelo@latest activate` to start with the latest validated Avorelo CLI.
|
|
21
|
+
Global install: `npm install -g avorelo` — then run `avorelo doctor` to check for updates.
|
|
22
|
+
|
|
23
|
+
`activate` writes only local metadata under `.avorelo/` (gitignored) — no source, env, or secrets.
|
|
24
|
+
`status` always tells you the next command. `readiness` is the *canonical phase gate* (most meaningful
|
|
25
|
+
against the Avorelo repo itself); `status` is the per-workspace readiness signal for your own repo.
|
|
26
26
|
|
|
27
27
|
## What it does
|
|
28
28
|
|
|
@@ -85,7 +85,6 @@ Node.js >= 24.
|
|
|
85
85
|
## Current Limitations
|
|
86
86
|
|
|
87
87
|
- Cloud sync is **dry-run + local-queue only** — no live credentialed transmission in this version.
|
|
88
|
-
- Install is from tarball or source checkout — no globally published package yet.
|
|
89
88
|
- No hosted dashboard; no billing or pricing active.
|
|
90
89
|
|
|
91
90
|
## License
|