vibeostheog 0.23.1 → 0.23.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.23.2
2
+ - fix: footer regex case-sensitivity — /VIBE/i matches VibeMaX to prevent double-append
3
+
4
+
1
5
  ## 0.23.1
2
6
  - fix: footer dedup — content hash fallback prevents double-append from message.updated vs text.complete shape mismatch
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
4
4
  "description": "Cost-aware delegation enforcer for OpenCode. Tracks model usage, routes Task subagents to cheaper tiers, surfaces cumulative savings in chat. Includes research audit, reporting framework, project memory, progressive scratchpad decadence, and trinity CLI for brain/medium/cheap slot switching.",
5
5
  "scripts": {
6
6
  "release": "node scripts/release.mjs",
@@ -275,7 +275,7 @@ async function _appendFooter(input, output, directory) {
275
275
  subRegime: _latestBlackboxState?.sub_regime || classifyTurnSimple(latestUserIntent || ""),
276
276
  stress: _footerStress,
277
277
  }).mode;
278
- const stripped = text.replace(/— .+?VIBE[^—]*—\s*/g, "").trimEnd();
278
+ const stripped = text.replace(/— .+?VIBE[^—]*—\s*/gi, "").trimEnd();
279
279
  if (stripped !== text)
280
280
  return;
281
281
  if (stripped === _lastStrippedText)