@inerrata-corporation/errata 2.0.0-alpha.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.txt +56 -0
- package/consolidate-worker.mjs +16041 -0
- package/errata.mjs +45343 -0
- package/install.ps1 +90 -0
- package/package.json +26 -0
- package/pass-worker.mjs +25670 -0
- package/resources/wasm/tree-sitter-bash.wasm +0 -0
- package/resources/wasm/tree-sitter-c-sharp.wasm +0 -0
- package/resources/wasm/tree-sitter-cpp.wasm +0 -0
- package/resources/wasm/tree-sitter-css.wasm +0 -0
- package/resources/wasm/tree-sitter-go.wasm +0 -0
- package/resources/wasm/tree-sitter-ini.wasm +0 -0
- package/resources/wasm/tree-sitter-java.wasm +0 -0
- package/resources/wasm/tree-sitter-javascript.wasm +0 -0
- package/resources/wasm/tree-sitter-php.wasm +0 -0
- package/resources/wasm/tree-sitter-powershell.wasm +0 -0
- package/resources/wasm/tree-sitter-python.wasm +0 -0
- package/resources/wasm/tree-sitter-regex.wasm +0 -0
- package/resources/wasm/tree-sitter-ruby.wasm +0 -0
- package/resources/wasm/tree-sitter-rust.wasm +0 -0
- package/resources/wasm/tree-sitter-tsx.wasm +0 -0
- package/resources/wasm/tree-sitter-typescript.wasm +0 -0
- package/resources/wasm/tree-sitter.wasm +0 -0
- package/resources/wasm/web-tree-sitter.wasm +0 -0
- package/uninstall.ps1 +29 -0
package/README.txt
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
errata - local-first observation engine for coding agents
|
|
2
|
+
|
|
3
|
+
Requires Node.js 22 or newer on PATH (https://nodejs.org).
|
|
4
|
+
|
|
5
|
+
Install (Windows, no admin rights required):
|
|
6
|
+
|
|
7
|
+
.\install.ps1
|
|
8
|
+
|
|
9
|
+
This copies errata.mjs + the tree-sitter runtime to %LOCALAPPDATA%\errata
|
|
10
|
+
and adds that directory to your user PATH. A small errata.cmd shim runs the
|
|
11
|
+
bundle under your system Node.
|
|
12
|
+
|
|
13
|
+
It also registers a Scheduled Task (\errata\ai.errata.daemon) that auto-starts
|
|
14
|
+
the daemon (`errata dash`) at every logon, launched hidden via a small .vbs so
|
|
15
|
+
no console window flashes. uninstall.ps1 removes it. Note: this runs the
|
|
16
|
+
installed copy under %LOCALAPPDATA%\errata - re-run install.ps1 after rebuilding
|
|
17
|
+
to keep the autostarted daemon current.
|
|
18
|
+
|
|
19
|
+
macOS / Linux:
|
|
20
|
+
|
|
21
|
+
errata.mjs carries a `#!/usr/bin/env node` shebang. Put the dist/ folder
|
|
22
|
+
somewhere stable, then symlink the bundle onto your PATH:
|
|
23
|
+
|
|
24
|
+
chmod +x errata.mjs
|
|
25
|
+
ln -s "$PWD/errata.mjs" ~/.local/bin/errata
|
|
26
|
+
|
|
27
|
+
The resources/wasm/ folder must stay next to errata.mjs.
|
|
28
|
+
|
|
29
|
+
Use:
|
|
30
|
+
|
|
31
|
+
cd C:\path\to\your\project
|
|
32
|
+
errata init # auto-detects profile + installs harness hooks
|
|
33
|
+
errata start # observe this repo
|
|
34
|
+
errata status # verify the whole chain (daemon, cloud, consent)
|
|
35
|
+
|
|
36
|
+
Model caveat (Claude Code + Claude Fable 5): the harness treats Fable 5's
|
|
37
|
+
mid-turn assistant text (written between tool calls) as ephemeral - it reaches
|
|
38
|
+
neither the session transcript nor the MessageDisplay hook, so inline tags
|
|
39
|
+
written mid-turn are lost on every capture channel. errata's agent instruction
|
|
40
|
+
tells the agent to restate mid-turn tags in its final message (which always
|
|
41
|
+
survives), so expect reduced mid-turn capture on Fable sessions; Opus/Sonnet
|
|
42
|
+
sessions are fully captured. (Verified with a 3-model matrix, 2026-07-02.)
|
|
43
|
+
|
|
44
|
+
Open the dashboard: http://127.0.0.1:7891
|
|
45
|
+
|
|
46
|
+
Point at a cloud (defaults to the public instance):
|
|
47
|
+
|
|
48
|
+
errata init --cloud https://your-instance --token <api-key>
|
|
49
|
+
errata login # or browser device-code flow
|
|
50
|
+
|
|
51
|
+
Per-workspace state lives at .errata/ inside each project root and is
|
|
52
|
+
preserved on uninstall - delete manually if you want it gone.
|
|
53
|
+
|
|
54
|
+
Uninstall (Windows):
|
|
55
|
+
|
|
56
|
+
.\uninstall.ps1
|