avorelo 0.3.5 → 0.3.6

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.
Files changed (3) hide show
  1. package/README.md +77 -77
  2. package/dist/avorelo.mjs +1450 -24
  3. package/package.json +4 -3
package/README.md CHANGED
@@ -1,77 +1,77 @@
1
- # Avorelo
2
-
3
- **AI Work Control.** Avorelo runs *around* your AI coding tool. It does not generate code — it keeps the
4
- work focused, keeps secrets out of the model and out of cloud, and saves proof of what actually happened,
5
- locally.
6
-
7
- > Version: `0.3.4`. Local-first and deterministic.
8
-
9
- ## Quickstart
10
-
11
- **Recommended: copy the agent prompt.** Visit [avorelo.com](https://avorelo.com), click **Start with AI**, and copy the agent prompt into Claude Code, Codex, or Cursor. The agent handles activation safely.
12
-
13
- **Local activation (no account needed):**
14
-
15
- ```
16
- npx -y avorelo@latest activate --scope project-wide
17
- ```
18
-
19
- **Account-linked activation (requires dashboard claim):**
20
-
21
- ```
22
- npx -y avorelo@latest activate --scope project-wide --claim <activation_claim>
23
- ```
24
-
25
- Generate a short-lived claim from your [dashboard](https://avorelo.com/dashboard). Claims expire in 15 minutes.
26
-
27
- **Other commands:**
28
-
29
- ```
30
- npx avorelo@latest status # workspace state and next step
31
- npx avorelo@latest doctor # health check
32
- npx avorelo@latest preflight # diagnose environment before activating
33
- ```
34
-
35
- `activate` writes only local metadata under `.avorelo/` (gitignored) — no source, env, or secrets.
36
-
37
- ## What it does
38
-
39
- Avorelo automates the operational layer around AI coding sessions:
40
-
41
- - **Context** — compiles bounded, source-aware context automatically
42
- - **Routing** — picks the right model and workflow for the task
43
- - **Scope** — enforces boundaries on what agents should touch
44
- - **Safety** — catches drift, risky edits, and unbounded runs; blocks secret leakage
45
- - **Proof** — creates local receipts of what changed and why
46
- - **Handoff** — moves work cleanly between sessions and tools
47
-
48
- Works with Claude Code, Codex, Cursor, and other AI coding tools. Runs locally. No workflow switch required.
49
-
50
- ## Commands
51
-
52
- | Command | What it does |
53
- |---|---|
54
- | `avorelo activate` | Detect workspace, set up local state, verify setup |
55
- | `avorelo status` | Current workspace state and next step |
56
- | `avorelo doctor` | Health check |
57
- | `avorelo preflight` | Environment diagnostics before activation |
58
- | `avorelo run "<task>"` | Focused session with context, scope, and proof |
59
- | `avorelo open` | Local receipts dashboard |
60
- | `avorelo readiness` | Canonical readiness gate |
61
- | `avorelo --version` | Version |
62
-
63
- ## Principles
64
-
65
- - **Local-first.** No login and no network required for core activation. Cloud sync is opt-in and claim-based.
66
- - **Secrets stay out.** Detection before context, redaction before the model, blocking before unsafe action.
67
- - **Evidence over assertion.** Confidence labels are mandatory; savings are refused without evidence.
68
-
69
- ## Requirements
70
-
71
- Node.js >= 24.
72
-
73
- ## License
74
-
75
- **Proprietary — all rights reserved.** Copyright (c) 2026 HappyLifeSaaS. This software is not open source.
76
- No permission is granted to use, copy, modify, distribute, or sell it except under a separate written
77
- agreement with the Owner. See [`LICENSE`](LICENSE). `package.json` declares `"license": "UNLICENSED"`.
1
+ # Avorelo
2
+
3
+ **AI Work Control.** Avorelo runs *around* your AI coding tool. It does not generate code — it keeps the
4
+ work focused, keeps secrets out of the model and out of cloud, and saves proof of what actually happened,
5
+ locally.
6
+
7
+ > Version: `0.3.4`. Local-first and deterministic.
8
+
9
+ ## Quickstart
10
+
11
+ **Recommended: copy the agent prompt.** Visit [avorelo.com](https://avorelo.com), click **Start with AI**, and copy the agent prompt into Claude Code, Codex, or Cursor. The agent handles activation safely.
12
+
13
+ **Local activation (no account needed):**
14
+
15
+ ```
16
+ npx -y avorelo@latest activate --scope project-wide
17
+ ```
18
+
19
+ **Account-linked activation (requires dashboard claim):**
20
+
21
+ ```
22
+ npx -y avorelo@latest activate --scope project-wide --claim <activation_claim>
23
+ ```
24
+
25
+ Generate a short-lived claim from your [dashboard](https://avorelo.com/dashboard). Claims expire in 15 minutes.
26
+
27
+ **Other commands:**
28
+
29
+ ```
30
+ npx avorelo@latest status # workspace state and next step
31
+ npx avorelo@latest doctor # health check
32
+ npx avorelo@latest preflight # diagnose environment before activating
33
+ ```
34
+
35
+ `activate` writes only local metadata under `.avorelo/` (gitignored) — no source, env, or secrets.
36
+
37
+ ## What it does
38
+
39
+ Avorelo automates the operational layer around AI coding sessions:
40
+
41
+ - **Context** — compiles bounded, source-aware context automatically
42
+ - **Routing** — picks the right model and workflow for the task
43
+ - **Scope** — enforces boundaries on what agents should touch
44
+ - **Safety** — catches drift, risky edits, and unbounded runs; blocks secret leakage
45
+ - **Proof** — creates local receipts of what changed and why
46
+ - **Handoff** — moves work cleanly between sessions and tools
47
+
48
+ Works with Claude Code, Codex, Cursor, and other AI coding tools. Runs locally. No workflow switch required.
49
+
50
+ ## Commands
51
+
52
+ | Command | What it does |
53
+ |---|---|
54
+ | `avorelo activate` | Detect workspace, set up local state, verify setup |
55
+ | `avorelo status` | Current workspace state and next step |
56
+ | `avorelo doctor` | Health check |
57
+ | `avorelo preflight` | Environment diagnostics before activation |
58
+ | `avorelo run "<task>"` | Focused session with context, scope, and proof |
59
+ | `avorelo open` | Local receipts dashboard |
60
+ | `avorelo readiness` | Canonical readiness gate |
61
+ | `avorelo --version` | Version |
62
+
63
+ ## Principles
64
+
65
+ - **Local-first.** No login and no network required for core activation. Cloud sync is opt-in and claim-based.
66
+ - **Secrets stay out.** Detection before context, redaction before the model, blocking before unsafe action.
67
+ - **Evidence over assertion.** Confidence labels are mandatory; savings are refused without evidence.
68
+
69
+ ## Requirements
70
+
71
+ Node.js >= 24.
72
+
73
+ ## License
74
+
75
+ **Proprietary — all rights reserved.** Copyright (c) 2026 HappyLifeSaaS. This software is not open source.
76
+ No permission is granted to use, copy, modify, distribute, or sell it except under a separate written
77
+ agreement with the Owner. See [`LICENSE`](LICENSE). `package.json` declares `"license": "UNLICENSED"`.