@markusylisiurunen/tau 0.2.92 → 0.2.94

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/README.md CHANGED
@@ -285,7 +285,7 @@ tau uses `caffeinate -i` and only holds the sleep assertion during active assist
285
285
 
286
286
  tau comes with several built-in personas across different models:
287
287
 
288
- - **Claude Opus 4.6** (Anthropic): `opus-4.6-chat`, `opus-4.6-coder`
288
+ - **Claude Opus 4.7** (Anthropic): `opus-4.7-chat`, `opus-4.7-coder`
289
289
  - **GPT-5.3-Codex** (OpenAI): `gpt-5.3-codex`
290
290
  - **GPT-5.4** (OpenAI): `gpt-5.4-chat`, `gpt-5.4-coder`
291
291
  - **GPT-5.3-Codex (ChatGPT)** (OpenAI Codex): `gpt-5.3-codex-chatgpt`
@@ -300,7 +300,7 @@ switch personas at startup with `--persona` or mid-session with `/persona:<id>`:
300
300
  persona id matching is exact/case-sensitive.
301
301
 
302
302
  ```sh
303
- tau --persona opus-4.6-coder
303
+ tau --persona opus-4.7-coder
304
304
  ```
305
305
 
306
306
  ## sub-agents
@@ -330,7 +330,7 @@ when you write custom skills, you can specify trigger sensitivity in the skill d
330
330
  some models support extended thinking, where they reason through problems before responding. cycle through reasoning levels with `shift+tab`, or set one at startup:
331
331
 
332
332
  ```sh
333
- tau --persona opus-4.6-chat:high
333
+ tau --persona opus-4.7-chat:high
334
334
  ```
335
335
 
336
336
  toggle visibility of the model's thinking with `ctrl+t`.
@@ -346,7 +346,7 @@ to explicitly target a sub-agent, use `@@agent:<name>` (for example, `@@agent:de
346
346
  you can also pipe content directly:
347
347
 
348
348
  ```sh
349
- cat src/tui/app.ts | tau --persona opus-4.6-chat
349
+ cat src/tui/app.ts | tau --persona opus-4.7-chat
350
350
  ```
351
351
 
352
352
  by default, tau injects your AGENTS.md into the system prompt. use `--no-agent-context-files` to disable this behavior. tau searches for AGENTS.md in the current directory and parent directories up to your home folder (or filesystem root if cwd is outside home).
@@ -584,7 +584,7 @@ create your own personas by adding markdown files to `~/.config/tau/personas/` (
584
584
  ---
585
585
  id: my-assistant
586
586
  provider: anthropic
587
- model: claude-opus-4-5
587
+ model: claude-opus-4-7
588
588
  ---
589
589
 
590
590
  you are a helpful assistant specialized in my workflow. focus on clarity and efficiency.
@@ -594,7 +594,7 @@ the frontmatter defines the persona. required fields:
594
594
 
595
595
  - `id`: unique id used by `--persona` and `/persona:<id>`
596
596
  - `provider`: model provider id (for example `openai`, `anthropic`, `google`)
597
- - `model`: model id for the provider (for example `gpt-5.4`, `claude-opus-4-5`)
597
+ - `model`: model id for the provider (for example `gpt-5.4`, `claude-opus-4-7`)
598
598
 
599
599
  custom personas/subagents can reference model ids that are not bundled yet, as long as the provider is known. configure model metadata in `models.json` files or let tau derive defaults. see [docs/models.md](docs/models.md).
600
600
 
package/dist/core/cli.js CHANGED
@@ -183,7 +183,7 @@ export function printHelp(personas) {
183
183
  "",
184
184
  "examples:",
185
185
  " tau --persona gpt-5.4-chat:high",
186
- " tau -p opus-4.6-coder",
186
+ " tau -p opus-4.7-coder",
187
187
  " tau --persona gpt-5.4-chat:medium --risk read-write",
188
188
  " tau -p gpt-5.4-coder:high -r read-write",
189
189
  " tau -l /tmp/tau-checkpoint-abc123/checkpoint.json",
@@ -170,9 +170,9 @@ const CODER_SYSTEM_PROMPT = [
170
170
  ].join("\n\n");
171
171
  const PERSONA_SPECS = [
172
172
  {
173
- id: "opus-4.6",
174
- description: "Claude Opus 4.6",
175
- model: resolveModelOrThrow("anthropic", "claude-opus-4-6"),
173
+ id: "opus-4.7",
174
+ description: "Claude Opus 4.7",
175
+ model: resolveModelOrThrow("anthropic", "claude-opus-4-7"),
176
176
  allowedReasoningLevels: ["low", "high", "xhigh"],
177
177
  settings: { reasoning: "high" },
178
178
  skills: "*",
@@ -1,2 +1,2 @@
1
- export const APP_VERSION = "0.2.92";
1
+ export const APP_VERSION = "0.2.94";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markusylisiurunen/tau",
3
- "version": "0.2.92",
3
+ "version": "0.2.94",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tau": "./dist/main.js"
@@ -27,8 +27,8 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@mariozechner/pi-ai": "^0.67.1",
31
- "@mariozechner/pi-tui": "^0.67.1",
30
+ "@mariozechner/pi-ai": "^0.67.4",
31
+ "@mariozechner/pi-tui": "^0.67.4",
32
32
  "@sinclair/typebox": "^0.34.49",
33
33
  "chalk": "^5.6.2",
34
34
  "file-type": "^21.3.4",
@@ -38,10 +38,10 @@
38
38
  "zod": "^4.3.6"
39
39
  },
40
40
  "devDependencies": {
41
- "@biomejs/biome": "2.4.11",
41
+ "@biomejs/biome": "2.4.12",
42
42
  "@types/node": "^25.6.0",
43
43
  "colorjs.io": "^0.6.1",
44
- "prettier": "^3.8.2",
44
+ "prettier": "^3.8.3",
45
45
  "typescript": "^5.9.3",
46
46
  "vitest": "^4.1.4"
47
47
  },