behavior-wrapped 0.5.13 → 0.5.15

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
@@ -6,8 +6,8 @@
6
6
  <meta name="theme-color" content="#0d0b1b" />
7
7
  <meta name="description" content="Your private, local-first Claude Code behavior report." />
8
8
  <title>Behavior Wrapped</title>
9
- <script type="module" crossorigin src="/assets/index-bAPSBZfz.js"></script>
10
- <link rel="stylesheet" crossorigin href="/assets/index-DYI02P6B.css">
9
+ <script type="module" crossorigin src="/assets/index-D5lS2JLD.js"></script>
10
+ <link rel="stylesheet" crossorigin href="/assets/index-DZ59oxNY.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.13",
3
+ "version": "0.5.15",
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",
@@ -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) {