zora-agent 0.9.5 → 0.9.6

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
@@ -142,7 +142,7 @@ See the [Routines Cookbook](ROUTINES_COOKBOOK.md) for templates.
142
142
 
143
143
  ## Project Status
144
144
 
145
- Zora is in active development (v0.9.5). The core features work reliably today.
145
+ Zora is in active development (v0.9.6). The core features work reliably today.
146
146
 
147
147
  | Feature | Status |
148
148
  |---------|--------|
@@ -80,7 +80,7 @@ capabilities = ["reasoning", "coding", "creative"]
80
80
  cost_tier = "included"
81
81
  enabled = true
82
82
  auth_method = "mac_session"
83
- model = "claude-sonnet-4-5"
83
+ model = "claude-sonnet-4-6"
84
84
  max_turns = 200`);
85
85
  rank++;
86
86
  }
@@ -136,7 +136,7 @@ export class ClaudeProvider {
136
136
  // Build SDK options
137
137
  const sdkOptions = {
138
138
  abortController,
139
- model: this._config.model ?? 'claude-sonnet-4-5',
139
+ model: this._config.model ?? 'claude-sonnet-4-6',
140
140
  cwd: this._cwd,
141
141
  permissionMode: this._permissionMode,
142
142
  maxTurns: task.maxTurns ?? this._config.max_turns ?? 200,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zora-agent",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "Long-running autonomous personal AI agent — multi-provider, capability-routed, memory-enriched",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",