opencode-agentic-engine 0.1.5 → 0.1.6
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/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAyiG/D,eAAO,MAAM,aAAa,EAAE,MAAqB,CAAA;AAEjD,QAAA,MAAM,YAAY,EAAE,YAGnB,CAAA;AACD,eAAe,YAAY,CAAA;AAG3B,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAA;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAA;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;AAC/D,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAC5J,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// opencode-agentic-engine v0.1.
|
|
1
|
+
// opencode-agentic-engine v0.1.6
|
|
2
2
|
// Bundled for zero-install drop-in
|
|
3
3
|
|
|
4
4
|
// src/index.ts
|
|
@@ -6536,8 +6536,8 @@ async function autoUpdatePlugin(currentVersion) {
|
|
|
6536
6536
|
}
|
|
6537
6537
|
}
|
|
6538
6538
|
var createEngine = async (input, _options) => {
|
|
6539
|
-
const rawWorktree = input.worktree || process.cwd();
|
|
6540
|
-
const worktree = rawWorktree === "/" ? process.cwd() : rawWorktree;
|
|
6539
|
+
const rawWorktree = input.directory || input.worktree || process.env.HOME || process.cwd();
|
|
6540
|
+
const worktree = rawWorktree === "/" || rawWorktree === "/home" ? input.directory || process.env.HOME || process.cwd() : rawWorktree;
|
|
6541
6541
|
const configLoader = new ConfigLoader(worktree);
|
|
6542
6542
|
const config = configLoader.load();
|
|
6543
6543
|
configLoader.startWatch();
|
|
@@ -6787,7 +6787,7 @@ Call the specific tool (agentic_nav, agentic_execute, etc.) directly.
|
|
|
6787
6787
|
await traceLogger.init();
|
|
6788
6788
|
} catch {
|
|
6789
6789
|
}
|
|
6790
|
-
autoUpdatePlugin("0.1.
|
|
6790
|
+
autoUpdatePlugin("0.1.6");
|
|
6791
6791
|
configLoader.onChange((newConfig) => {
|
|
6792
6792
|
vectorStore.setSearchWeights(newConfig.memory.search.keywordWeight, newConfig.memory.search.vectorWeight);
|
|
6793
6793
|
vectorStore.setStopWordsLanguages(newConfig.memory.stopWordsLanguages);
|