engine7 7.1.27 → 7.1.29
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/cli.mjs +2 -2
- package/dist/engine-startup.mjs +345 -336
- package/dist/main.mjs +348 -339
- package/package.json +58 -58
- package/src/memory/everos/python/requirements.txt +2 -2
package/dist/cli.mjs
CHANGED
|
@@ -184,7 +184,7 @@ function collectRecentSessions(agentsDir, _days = 7) {
|
|
|
184
184
|
async function doExport(opts) {
|
|
185
185
|
const { agentName, stateDir, note, dryRun: dryRun2 } = opts;
|
|
186
186
|
const workspace = opts.workspace || path.join(stateDir, "workspace");
|
|
187
|
-
const engineHome = path.join(os.homedir(), ".
|
|
187
|
+
const engineHome = path.join(os.homedir(), ".engine7");
|
|
188
188
|
console.log(`\u{1F4E6} engine7 export`);
|
|
189
189
|
console.log(` agent: ${agentName}`);
|
|
190
190
|
console.log(` state: ${stateDir}`);
|
|
@@ -327,7 +327,7 @@ async function doImport(opts) {
|
|
|
327
327
|
}
|
|
328
328
|
const manifest = JSON.parse(fs.readFileSync(manifestPath, "utf-8"));
|
|
329
329
|
const workspace = path.join(stateDir, "workspace").replace(/\\/g, "/");
|
|
330
|
-
const engineHome = path.join(os.homedir(), ".
|
|
330
|
+
const engineHome = path.join(os.homedir(), ".engine7").replace(/\\/g, "/");
|
|
331
331
|
const dirs = { workspace, stateDir: stateDir.replace(/\\/g, "/"), engineHome };
|
|
332
332
|
console.log(` \u7248\u672C: ${manifest.version}`);
|
|
333
333
|
console.log(` \u521B\u5EFA: ${manifest.createdAt}`);
|