@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 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