@vectorize-io/self-driving-agents 0.0.15 → 0.0.16

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/cli.js +0 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -918,9 +918,6 @@ async function main() {
918
918
  ccConfig.dynamicBankId = true;
919
919
  ccConfig.dynamicBankGranularity = expectedGranularity;
920
920
  ccConfig.enableKnowledgeTools = true;
921
- // SDA agents need auto-retain to capture conversation context for the agent's bank
922
- if (ccConfig.autoRetain === undefined)
923
- ccConfig.autoRetain = true;
924
921
  mkdirSync(ccConfigDir, { recursive: true });
925
922
  writeFileSync(ccConfigPath, JSON.stringify(ccConfig, null, 2) + "\n");
926
923
  p.log.success(`Plugin config: ${color.dim(ccConfigPath)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectorize-io/self-driving-agents",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "Install self-driving agents with portable memory on any harness",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",