pi-outpost 0.5.7 → 0.6.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.
- package/dist/pi-outpost.mjs +11 -1
- package/dist/pi-outpost.sea.mjs +374248 -0
- package/dist/sea-prep.blob +0 -0
- package/package.json +1 -1
package/dist/pi-outpost.mjs
CHANGED
|
@@ -50569,7 +50569,7 @@ function searchSessions(sessions, query, limit) {
|
|
|
50569
50569
|
var seaExtensionFactories = [];
|
|
50570
50570
|
|
|
50571
50571
|
// ../server/src/index.ts
|
|
50572
|
-
var VERSION2 = true ? "0.
|
|
50572
|
+
var VERSION2 = true ? "0.6.0" : "dev";
|
|
50573
50573
|
var LAUNCH_DIR = process.env.INIT_CWD ?? process.cwd();
|
|
50574
50574
|
function complain(error) {
|
|
50575
50575
|
const message = error instanceof Error ? error.message : String(error);
|
|
@@ -50790,6 +50790,8 @@ var WEB_UI_CONTEXT = [
|
|
|
50790
50790
|
"Images in the workspace (including ones you create) display inline in the conversation when referenced with a relative path: . Prefer showing an image that way over describing it.",
|
|
50791
50791
|
"Avoid terminal-only affordances: no 'open this file in your editor' or 'run this command to view' phrasing, no ASCII art where a mermaid diagram or an image file works better."
|
|
50792
50792
|
].join("\n");
|
|
50793
|
+
var DEBUG = process.env.PI_OUTPOST_DEBUG ? console.log : () => {
|
|
50794
|
+
};
|
|
50793
50795
|
var createRuntime = async ({
|
|
50794
50796
|
cwd,
|
|
50795
50797
|
sessionManager,
|
|
@@ -50819,6 +50821,14 @@ var createRuntime = async ({
|
|
|
50819
50821
|
...extraFactories.length > 0 ? { extensionFactories: extraFactories } : {}
|
|
50820
50822
|
}
|
|
50821
50823
|
});
|
|
50824
|
+
const extResult = services.resourceLoader.getExtensions();
|
|
50825
|
+
if (extResult.errors.length > 0) {
|
|
50826
|
+
for (const err of extResult.errors) {
|
|
50827
|
+
console.error("[pi-outpost] Extension error:", err.path, err.error);
|
|
50828
|
+
}
|
|
50829
|
+
} else {
|
|
50830
|
+
DEBUG("[pi-outpost] No extension errors. Loaded:", extResult.extensions.length, "extensions");
|
|
50831
|
+
}
|
|
50822
50832
|
return {
|
|
50823
50833
|
...await createAgentSessionFromServices({
|
|
50824
50834
|
services,
|