0rrery 0.1.0 → 0.1.2
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 +11 -5
- package/index.js +383 -75
- package/package.json +1 -1
- package/public/assets/index-sGLSeJmJ.js +40 -0
- package/public/assets/index-yRmv5nEJ.css +1 -0
- package/public/index.html +2 -2
- package/skill/SKILL.md +2 -2
- package/public/assets/index-5F_iDwQK.css +0 -1
- package/public/assets/index-gNN2_ieI.js +0 -40
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# 0rrery
|
|
2
2
|
|
|
3
|
-
Trace-first, local-first observability for AI agent workflows. Watch what your Claude Code sessions actually did
|
|
3
|
+
Trace-first, local-first observability for AI agent workflows. Watch what your Claude Code sessions actually did (every tool call, subagent, LLM call, and permission decision) as live traces in a local dashboard. One process, one SQLite file, no cloud. Ingests Claude Code and OpenAI Codex CLI sessions.
|
|
4
4
|
|
|
5
5
|
## Quickstart
|
|
6
6
|
|
|
7
7
|
```
|
|
8
|
-
bun install -g 0rrery
|
|
8
|
+
npm install -g 0rrery # or: bun install -g 0rrery
|
|
9
9
|
0rrery init
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
`init` does three things (each skippable): installs Claude Code hooks (`--no-hooks`), sets up a user service so 0rrery runs persistently (`--no-service`), and imports your existing session history (`--no-import`). Then open **http://localhost:7317**.
|
|
13
13
|
|
|
14
|
-
Requires [Bun](https://bun.sh) ≥ 1.1. Claude Code hooks require the global install (the hook command is `0rrery hook`); `bunx 0rrery serve` works for a look around without installing.
|
|
14
|
+
Requires [Bun](https://bun.sh) ≥ 1.1 at runtime: the CLI runs on Bun even when installed via npm, so `npm install` succeeds without Bun, but the `0rrery` command exits with an install-Bun message until Bun is on your PATH. Claude Code hooks require the global install (the hook command is `0rrery hook`); `bunx 0rrery serve` works for a look around without installing.
|
|
15
15
|
|
|
16
16
|
## Commands
|
|
17
17
|
|
|
@@ -45,10 +45,14 @@ Requires [Bun](https://bun.sh) ≥ 1.1. Claude Code hooks require the global ins
|
|
|
45
45
|
|
|
46
46
|
`init` installs a skill at `~/.claude/skills/0rrery/` that teaches Claude to answer questions like "what did I spend this week", "what keeps failing in this repo", or "what did my last session do" by querying the local API. Skip with `--no-skill`; remove with `rm -rf ~/.claude/skills/0rrery`.
|
|
47
47
|
|
|
48
|
+
## Releases
|
|
49
|
+
|
|
50
|
+
Versions are published by CI via npm Trusted Publishing: bump the version in `scripts/build-pkg.ts`, tag `vX.Y.Z`, push the tag — the workflow tests, stages, and publishes with provenance. No tokens.
|
|
51
|
+
|
|
48
52
|
## Upgrade
|
|
49
53
|
|
|
50
54
|
```
|
|
51
|
-
bun install -g 0rrery@latest
|
|
55
|
+
npm install -g 0rrery@latest # or: bun install -g 0rrery@latest
|
|
52
56
|
0rrery service uninstall && 0rrery service install # regenerate if the bin path changed
|
|
53
57
|
```
|
|
54
58
|
|
|
@@ -58,7 +62,7 @@ After upgrading (or when developing from the repo), rebuild and force a reinstal
|
|
|
58
62
|
|
|
59
63
|
```
|
|
60
64
|
0rrery service uninstall
|
|
61
|
-
bun remove -g 0rrery
|
|
65
|
+
npm uninstall -g 0rrery # or: bun remove -g 0rrery
|
|
62
66
|
rm -rf ~/.0rrery
|
|
63
67
|
```
|
|
64
68
|
Hook entries: re-run a Claude session or remove entries whose command is `0rrery hook` from `~/.claude/settings.json`.
|
|
@@ -74,3 +78,5 @@ bun run build:pkg # stage the npm package in dist-pkg/
|
|
|
74
78
|
```
|
|
75
79
|
|
|
76
80
|
Specs live in `docs/superpowers/specs/`.
|
|
81
|
+
|
|
82
|
+
Want 0rrery to ingest another agent CLI? See [ADAPTERS.md](./ADAPTERS.md).
|