@letta-ai/letta-code 0.12.9-next.8 → 0.12.9-next.9

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/letta.js +7 -5
  2. package/package.json +1 -1
package/letta.js CHANGED
@@ -3065,7 +3065,7 @@ var package_default;
3065
3065
  var init_package = __esm(() => {
3066
3066
  package_default = {
3067
3067
  name: "@letta-ai/letta-code",
3068
- version: "0.12.9-next.8",
3068
+ version: "0.12.9-next.9",
3069
3069
  description: "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
3070
3070
  type: "module",
3071
3071
  bin: {
@@ -5998,7 +5998,7 @@ You are a subagent launched via the Task tool to search conversation history. Yo
5998
5998
  Skill({ command: "load", skills: ["searching-messages"] })
5999
5999
  \`\`\`
6000
6000
 
6001
- The skill content will appear in your loaded_skills block with script paths and search strategies.
6001
+ After loading, your \`loaded_skills\` memory block contains the full instructions with ready-to-use bash commands. Follow them directly - do not search for files or guess at commands.
6002
6002
 
6003
6003
  ### Step 2: Search the parent agent's history
6004
6004
 
@@ -44275,7 +44275,7 @@ ${pathLine}${processedContent}`;
44275
44275
  value: currentValue
44276
44276
  });
44277
44277
  for (const skillId of preparedSkills) {
44278
- results.push(`"${skillId}" loaded`);
44278
+ results.push(`"${skillId}" loaded. Contents have been placed into your memory - check your 'loaded_skills' block for instructions.`);
44279
44279
  }
44280
44280
  setHasLoadedSkills(true);
44281
44281
  }
@@ -51261,6 +51261,7 @@ async function createAgent(nameOrOptions = DEFAULT_AGENT_NAME, model, embeddingM
51261
51261
  const defaultBaseTools = options.baseTools ?? [
51262
51262
  baseMemoryTool,
51263
51263
  "web_search",
51264
+ "conversation_search",
51264
51265
  "fetch_webpage"
51265
51266
  ];
51266
51267
  let toolNames = [...defaultBaseTools];
@@ -79042,7 +79043,7 @@ var init_defaults = __esm(async () => {
79042
79043
  name: "Incognito",
79043
79044
  description: INCOGNITO_DESCRIPTION,
79044
79045
  initBlocks: ["skills", "loaded_skills"],
79045
- baseTools: ["web_search", "fetch_webpage"]
79046
+ baseTools: ["web_search", "conversation_search", "fetch_webpage"]
79046
79047
  }
79047
79048
  };
79048
79049
  });
@@ -79094,6 +79095,7 @@ async function createAgent2(nameOrOptions = DEFAULT_AGENT_NAME, model, embedding
79094
79095
  const defaultBaseTools = options.baseTools ?? [
79095
79096
  baseMemoryTool,
79096
79097
  "web_search",
79098
+ "conversation_search",
79097
79099
  "fetch_webpage"
79098
79100
  ];
79099
79101
  let toolNames = [...defaultBaseTools];
@@ -82855,4 +82857,4 @@ Error during initialization: ${message}`);
82855
82857
  }
82856
82858
  main();
82857
82859
 
82858
- //# debugId=3189C8367293084764756E2164756E21
82860
+ //# debugId=50BE1CD8C4C38A2964756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@letta-ai/letta-code",
3
- "version": "0.12.9-next.8",
3
+ "version": "0.12.9-next.9",
4
4
  "description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
5
5
  "type": "module",
6
6
  "bin": {