behavior-wrapped 0.5.14 → 0.5.16
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/dist/index.html
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<meta name="theme-color" content="#0d0b1b" />
|
|
7
|
-
<meta name="description" content="
|
|
7
|
+
<meta name="description" content="A local-first behavior report for you and your AI agents." />
|
|
8
8
|
<title>Behavior Wrapped</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DIrSEDB2.js"></script>
|
|
10
|
+
<link rel="stylesheet" crossorigin href="/assets/index-ChdYH7Sm.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "behavior-wrapped",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.16",
|
|
4
4
|
"description": "A private, local-first Wrapped report for Claude Code, Cowork, and Codex behavior.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
"test": "node --test tests/*.test.mjs",
|
|
51
51
|
"check": "npm test && npm run build",
|
|
52
52
|
"prepack": "npm run build",
|
|
53
|
-
"prepublishOnly": "npm run check"
|
|
53
|
+
"prepublishOnly": "npm run check",
|
|
54
|
+
"postpublish": "npm run worker:deploy"
|
|
54
55
|
},
|
|
55
56
|
"engines": {
|
|
56
57
|
"node": ">=20"
|
package/server/analysis.mjs
CHANGED
|
@@ -11,6 +11,9 @@ const stockPhraseDefinitions = [
|
|
|
11
11
|
{ phrase: "Say the word", expression: /\bsay the word\b/giu },
|
|
12
12
|
{ phrase: "genuinely", expression: /\bgenuinely\b/giu },
|
|
13
13
|
{ phrase: "one wrinkle", expression: /\bone wrinkle\b/giu },
|
|
14
|
+
{ phrase: "load bearing", expression: /\bload(?:\s+|-)bearing\b/giu },
|
|
15
|
+
{ phrase: "the full picture", expression: /\bthe full picture\b/giu },
|
|
16
|
+
{ phrase: "delve", expression: /\bdelve\b/giu },
|
|
14
17
|
];
|
|
15
18
|
const agentDefinitions = [
|
|
16
19
|
{ agent: "claude", name: "Claude Code" },
|
|
@@ -19,7 +19,7 @@ function safeBreakdown(value, labelKey, countKey, allowedLabels) {
|
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
const stockPhraseLabels = ["You're right", "Say the word", "genuinely", "one wrinkle"];
|
|
22
|
+
const stockPhraseLabels = ["You're right", "Say the word", "genuinely", "one wrinkle", "load bearing", "the full picture", "delve"];
|
|
23
23
|
const allowedAgents = new Set(["claude", "cowork", "codex"]);
|
|
24
24
|
|
|
25
25
|
function safeTurnCounts(value) {
|