hail-hydra-cc 1.2.2 → 1.2.3

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.
@@ -78,6 +78,13 @@ process.stdin.on('end', () => {
78
78
  parts.push(updateNotice);
79
79
  }
80
80
 
81
+ // Compaction warning — only show at 70%+ context usage
82
+ if (ctxPct >= 80) {
83
+ parts.push(`\x1b[31m\u26A0 Compacting soon!\x1b[0m`);
84
+ } else if (ctxPct >= 70) {
85
+ parts.push(`\x1b[31m\u26A0 Auto-compact at 85%\x1b[0m`);
86
+ }
87
+
81
88
  process.stdout.write(parts.join(' \u2502 '));
82
89
 
83
90
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hail-hydra-cc",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Multi-headed speculative execution framework for Claude Code",
5
5
  "bin": {
6
6
  "hail-hydra-cc": "bin/cli.js"