meetsoma 0.27.0 → 0.27.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.
Files changed (2) hide show
  1. package/dist/thin-cli.js +11 -1
  2. package/package.json +1 -1
package/dist/thin-cli.js CHANGED
@@ -2047,7 +2047,17 @@ async function projectDoctor() {
2047
2047
  };
2048
2048
  add("doctor", { autoUpdate: true, declinedVersion: null });
2049
2049
  add("keepalive", { maxPings: 5, autoExhale: true, autoExhaleMinTokens: 75e3 });
2050
- add("breathe", { auto: false, triggerAt: 50, rotateAt: 70, graceSeconds: 30 });
2050
+ add("breathe", {
2051
+ auto: "model-aware",
2052
+ triggerAt: 50,
2053
+ rotateAt: 70,
2054
+ thresholds: {
2055
+ "default": { warnRange: [50, 64], exhaleRange: [65, 85] },
2056
+ "*sonnet*": { warnRange: [28, 33], exhaleRange: [34, 50] },
2057
+ "*opus*": { warnRange: [60, 74], exhaleRange: [75, 90] }
2058
+ },
2059
+ graceSeconds: 30
2060
+ });
2051
2061
  add("context", { notifyAt: 50, warnAt: 70, urgentAt: 80, autoExhaleAt: 85 });
2052
2062
  add("preload", { staleAfterHours: 48, lastSessionLogs: 0, recentNotesCount: 3 });
2053
2063
  add("scratch", { autoInject: false });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meetsoma",
3
- "version": "0.27.0",
3
+ "version": "0.27.2",
4
4
  "description": "Soma — the AI coding agent with self-growing memory",
5
5
  "type": "module",
6
6
  "bin": {