behavior-wrapped 0.5.21 → 0.7.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 +3 -1
- package/dist/assets/{index-BqN509pc.js → index-CtRLyktk.js} +2 -2
- package/dist/assets/{index-a017khge.css → index-hFREdA4j.css} +1 -1
- package/dist/index.html +2 -2
- package/package.json +3 -2
- package/server/cli.mjs +9 -2
- package/server/consent.mjs +1 -1
- package/server/discovery.mjs +6 -7
- package/server/interaction-evidence.mjs +77 -0
- package/server/interaction-tone.mjs +23 -5
- package/server/launcher.mjs +20 -6
- package/server/local-helper-runtime.mjs +25 -10
- package/server/platform.mjs +39 -0
package/README.md
CHANGED
|
@@ -2,12 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
[behaviorwrapped.com](https://behaviorwrapped.com)
|
|
4
4
|
|
|
5
|
-
A local-first
|
|
5
|
+
A local-first macOS and Linux app that discovers Claude Code history in `~/.claude/projects` and Codex history in `~/.codex/sessions` plus `~/.codex/archived_sessions`, analyzes selected sessions on-device, and publishes a strictly share-safe Wrapped deck. On macOS it also discovers Cowork audit streams in `~/Library/Application Support/Claude/local-agent-mode-sessions`; Cowork history is not currently available on Linux. A narrow localhost helper is retained only for optional research-donation review because a hosted page cannot read local transcripts.
|
|
6
6
|
|
|
7
7
|
## Run it
|
|
8
8
|
|
|
9
9
|
Requires Node.js 20 or newer.
|
|
10
10
|
|
|
11
|
+
Supported platforms are macOS and Linux. Opening the finished report automatically on Linux uses `xdg-open`; if it is unavailable, the CLI still prints the report URL.
|
|
12
|
+
|
|
11
13
|
```bash
|
|
12
14
|
npx behavior-wrapped@latest
|
|
13
15
|
```
|