tomo-ai 0.6.0 → 0.6.1

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,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.1 (2026-05-28)
4
+
5
+ ### Other
6
+
7
+ - Default Opus model upgraded from Claude Opus 4.7 to Claude Opus 4.8 (#113).
8
+
3
9
  ## 0.6.0 (2026-05-26)
4
10
 
5
11
  ### Features
@@ -36,7 +36,7 @@ Before direct edits, copy `~/.tomo/config.json` to `~/.tomo/config.json.bak`. Ch
36
36
  }
37
37
  ],
38
38
  "sessionModelOverrides": {
39
- "dm:alice": "claude-opus-4-7"
39
+ "dm:alice": "claude-opus-4-8"
40
40
  },
41
41
  "maxTurns": 50,
42
42
  "lcm": {
@@ -52,7 +52,7 @@ Before direct edits, copy `~/.tomo/config.json` to `~/.tomo/config.json.bak`. Ch
52
52
 
53
53
  | Field | Type | Allowed values / notes |
54
54
  |---|---|---|
55
- | `model` | string | `claude-sonnet-4-6`, `claude-opus-4-7`, `claude-haiku-4-5`. Default model for every session. |
55
+ | `model` | string | `claude-sonnet-4-6`, `claude-opus-4-8`, `claude-haiku-4-5`. Default model for every session. |
56
56
  | `city` | string \| null | Any city name (e.g. `"Seattle"`). Used for weather in continuity pings. `null` or missing = no weather. |
57
57
  | `continuity` | boolean | `true` / `false`. Enables periodic proactive heartbeats. Off by default. |
58
58
  | `groupSecret` | string \| null | Passphrase users send in a group chat to activate Tomo there. `null` disables group chats entirely. |
package/dist/agent.js CHANGED
@@ -166,7 +166,7 @@ export class Agent {
166
166
  }
167
167
  static AVAILABLE_MODELS = {
168
168
  "sonnet": "claude-sonnet-4-6",
169
- "opus": "claude-opus-4-7",
169
+ "opus": "claude-opus-4-8",
170
170
  "haiku": "claude-haiku-4-5",
171
171
  };
172
172
  backupConfig() {
@@ -8,12 +8,12 @@ export const SESSIONS_DIR = join(TOMO_HOME, "data", "sessions");
8
8
  export const LOG_PATH = join(TOMO_HOME, "logs", "tomo.log");
9
9
  export const MODELS = {
10
10
  "sonnet": "claude-sonnet-4-6",
11
- "opus": "claude-opus-4-7",
11
+ "opus": "claude-opus-4-8",
12
12
  "haiku": "claude-haiku-4-5",
13
13
  };
14
14
  const MODEL_LABELS = {
15
15
  "claude-sonnet-4-6": "Sonnet 4.6 (fast)",
16
- "claude-opus-4-7": "Opus 4.7 (most capable)",
16
+ "claude-opus-4-8": "Opus 4.8 (most capable)",
17
17
  "claude-haiku-4-5": "Haiku 4.5 (cheapest)",
18
18
  };
19
19
  export function loadConfig() {
package/dist/cli/init.js CHANGED
@@ -223,7 +223,7 @@ export const initCommand = new Command("init")
223
223
  message: "Default model",
224
224
  options: [
225
225
  { value: "claude-sonnet-4-6", label: "Claude Sonnet 4.6", hint: "fast, recommended" },
226
- { value: "claude-opus-4-7", label: "Claude Opus 4.7", hint: "most capable" },
226
+ { value: "claude-opus-4-8", label: "Claude Opus 4.8", hint: "most capable" },
227
227
  { value: "claude-haiku-4-5", label: "Claude Haiku 4.5", hint: "cheapest" },
228
228
  ],
229
229
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tomo-ai",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Personal assistant powered by Claude Agent SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",