@siftd/connect-agent 0.2.40 → 0.2.42

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.
@@ -221,7 +221,7 @@ export class MasterOrchestrator {
221
221
  todoUpdateCallback;
222
222
  constructor(options) {
223
223
  this.client = new Anthropic({ apiKey: options.apiKey });
224
- this.model = options.model || process.env.ANTHROPIC_MODEL || 'claude-sonnet-4-20250514';
224
+ this.model = options.model || process.env.ANTHROPIC_MODEL || 'claude-opus-4-5-20251101';
225
225
  this.maxTokens = options.maxTokens || 4096;
226
226
  this.userId = options.userId;
227
227
  this.orgId = options.orgId;
@@ -691,11 +691,12 @@ export class MasterOrchestrator {
691
691
  if (slashResponse) {
692
692
  return slashResponse;
693
693
  }
694
- // Deterministic calendar/todo writes (do not rely on the model calling tools)
695
- const quickWrite = this.tryHandleCalendarTodo(message);
696
- if (quickWrite) {
697
- return quickWrite;
698
- }
694
+ // DISABLED: Dumb regex extraction was creating garbage todos
695
+ // Let the AI use calendar_upsert_events and todo_upsert_items tools properly
696
+ // const quickWrite = this.tryHandleCalendarTodo(message);
697
+ // if (quickWrite) {
698
+ // return quickWrite;
699
+ // }
699
700
  // Load hub context (AGENTS.md identity, LANDMARKS.md state, project bio if relevant)
700
701
  const hubContext = loadHubContext(message);
701
702
  const hubContextStr = formatHubContext(hubContext);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siftd/connect-agent",
3
- "version": "0.2.40",
3
+ "version": "0.2.42",
4
4
  "description": "Master orchestrator agent - control Claude Code remotely via web",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",