clawcompany 0.33.0 → 0.35.0

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.
Files changed (2) hide show
  1. package/dist/index.js +11 -11
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -483,7 +483,7 @@ OUTPUT FORMAT:
483
483
  budgetTier: "earn",
484
484
  budgetMonthly: null,
485
485
  maxTokensPerTask: null,
486
- tools: ["web_fetch", "web_search", "price_feed", "browser_use"],
486
+ tools: ["web_fetch", "web_search", "price_feed", "browser_use", "memory_search"],
487
487
  skills: [],
488
488
  isBuiltin: true,
489
489
  isActive: true,
@@ -734,7 +734,7 @@ COST AWARENESS: You are the most expensive role. Define the thesis, then delegat
734
734
  budgetTier: "earn",
735
735
  budgetMonthly: null,
736
736
  maxTokensPerTask: null,
737
- tools: ["web_fetch", "web_search", "price_feed"],
737
+ tools: ["web_fetch", "web_search", "price_feed", "memory_search"],
738
738
  skills: [],
739
739
  isBuiltin: true,
740
740
  isActive: true,
@@ -836,7 +836,7 @@ OUTPUT FORMAT:
836
836
  budgetTier: "save",
837
837
  budgetMonthly: null,
838
838
  maxTokensPerTask: null,
839
- tools: ["web_fetch", "price_feed"],
839
+ tools: ["web_fetch", "web_search", "price_feed"],
840
840
  skills: [],
841
841
  isBuiltin: true,
842
842
  isActive: true,
@@ -875,7 +875,7 @@ OUTPUT FORMAT:
875
875
  budgetTier: "save",
876
876
  budgetMonthly: null,
877
877
  maxTokensPerTask: null,
878
- tools: ["price_feed", "web_fetch"],
878
+ tools: ["price_feed", "web_fetch", "web_search"],
879
879
  skills: [],
880
880
  isBuiltin: true,
881
881
  isActive: true,
@@ -909,7 +909,7 @@ OUTPUT FORMAT:
909
909
  budgetTier: "save",
910
910
  budgetMonthly: null,
911
911
  maxTokensPerTask: null,
912
- tools: ["web_fetch", "web_search", "browser_use"],
912
+ tools: ["web_fetch", "web_search", "price_feed", "browser_use"],
913
913
  skills: [],
914
914
  isBuiltin: true,
915
915
  isActive: true,
@@ -997,7 +997,7 @@ COST AWARENESS: You are the most expensive role. Design the experiment, then del
997
997
  budgetTier: "earn",
998
998
  budgetMonthly: null,
999
999
  maxTokensPerTask: null,
1000
- tools: ["web_fetch", "web_search", "browser_use"],
1000
+ tools: ["web_fetch", "web_search", "browser_use", "memory_search"],
1001
1001
  skills: [],
1002
1002
  isBuiltin: true,
1003
1003
  isActive: true,
@@ -1182,7 +1182,7 @@ OUTPUT FORMAT: Always output a structured PRD in markdown with clear sections. N
1182
1182
  budgetTier: "earn",
1183
1183
  budgetMonthly: null,
1184
1184
  maxTokensPerTask: null,
1185
- tools: ["web_fetch", "web_search", "browser_use"],
1185
+ tools: ["web_fetch", "web_search", "browser_use", "memory_search"],
1186
1186
  skills: [],
1187
1187
  isBuiltin: true,
1188
1188
  isActive: true,
@@ -1325,7 +1325,7 @@ RULES: Be specific. "Doesn't work" is not useful. "Login button returns 404 on c
1325
1325
  budgetTier: "save",
1326
1326
  budgetMonthly: null,
1327
1327
  maxTokensPerTask: null,
1328
- tools: ["code_interpreter", "web_fetch"],
1328
+ tools: ["shell", "filesystem", "code_interpreter", "web_fetch"],
1329
1329
  skills: [],
1330
1330
  isBuiltin: true,
1331
1331
  isActive: true,
@@ -1421,7 +1421,7 @@ COST AWARENESS: You are the most expensive role. Plan thoroughly, then delegate
1421
1421
  budgetTier: "earn",
1422
1422
  budgetMonthly: null,
1423
1423
  maxTokensPerTask: null,
1424
- tools: ["web_fetch", "web_search", "filesystem"],
1424
+ tools: ["web_fetch", "web_search", "filesystem", "memory_search"],
1425
1425
  skills: [],
1426
1426
  isBuiltin: true,
1427
1427
  isActive: true,
@@ -2149,7 +2149,7 @@ import { join } from "path";
2149
2149
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from "fs";
2150
2150
  function banner() {
2151
2151
  console.log("");
2152
- console.log(" \u{1F99E} ClawCompany v0.33.0");
2152
+ console.log(" \u{1F99E} ClawCompany v0.35.0");
2153
2153
  console.log(" Build for OPC. Every human being is a chairman.");
2154
2154
  console.log("");
2155
2155
  }
@@ -3510,7 +3510,7 @@ var AgentExecutor = class {
3510
3510
  content: this.buildTaskPrompt(task)
3511
3511
  }
3512
3512
  ];
3513
- const MAX_TURNS = 15;
3513
+ const MAX_TURNS = 25;
3514
3514
  for (let turn = 0; turn < MAX_TURNS; turn++) {
3515
3515
  const response = await this.router.chatAsRole(
3516
3516
  role2.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawcompany",
3
- "version": "0.33.0",
3
+ "version": "0.35.0",
4
4
  "description": "Build for OPC. Every human being is a chairman. AI company infrastructure — one key, 9 roles, 4 models.",
5
5
  "type": "module",
6
6
  "bin": { "clawcompany": "dist/index.js" },