@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.
- package/dist/orchestrator.js +7 -6
- package/package.json +1 -1
package/dist/orchestrator.js
CHANGED
|
@@ -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-
|
|
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
|
-
//
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
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);
|