@pandi-coding-agent/pi-cante 0.80.3-cante.5 → 0.80.3-cante.7

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.
@@ -1 +1 @@
1
- {"version":3,"file":"bundled-packages.d.ts","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAmBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAsBlD,CAAC;AAMF;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,EAAE,CAqBhD;AAED,gFAAgF;AAChF,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAO/D;AAED,oDAAoD;AACpD,wBAAgB,4BAA4B,IAAI,IAAI,CAEnD","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
1
+ {"version":3,"file":"bundled-packages.d.ts","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAmBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAuBlD,CAAC;AAMF;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,EAAE,CAqBhD;AAED,gFAAgF;AAChF,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAO/D;AAED,oDAAoD;AACpD,wBAAgB,4BAA4B,IAAI,IAAI,CAEnD","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-improve-prompt\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
@@ -31,6 +31,7 @@ export const BUNDLED_PACKAGE_NAMES = [
31
31
  "@pandi-coding-agent/pandi-effort",
32
32
  "@pandi-coding-agent/pandi-exit",
33
33
  "@pandi-coding-agent/pandi-goal",
34
+ "@pandi-coding-agent/pandi-improve-prompt",
34
35
  "@pandi-coding-agent/pandi-local-memory",
35
36
  "@pandi-coding-agent/pandi-loop",
36
37
  "@pandi-coding-agent/pandi-mdview",
@@ -1 +1 @@
1
- {"version":3,"file":"bundled-packages.js","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAEhF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACvD,2BAA2B;IAC3B,+BAA+B;IAC/B,wCAAwC;IACxC,8BAA8B;IAC9B,+BAA+B;IAC/B,iCAAiC;IACjC,qCAAqC;IACrC,gCAAgC;IAChC,kCAAkC;IAClC,6CAA6C;IAC7C,kCAAkC;IAClC,gCAAgC;IAChC,gCAAgC;IAChC,wCAAwC;IACxC,gCAAgC;IAChC,kCAAkC;IAClC,gCAAgC;IAChC,kCAAkC;IAClC,iCAAiC;IACjC,0CAA0C;IAC1C,oCAAoC;CACpC,CAAC;AAEF,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;AAE/C,IAAI,UAAgC,CAAC;AAErC;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB,GAAa;IACjD,IAAI,UAAU;QAAE,OAAO,UAAU,CAAC;IAClC,IAAI,0BAA0B,CAAC,oBAAoB,CAAC,KAAK,GAAG,EAAE,CAAC;QAC9D,2EAA2E;QAC3E,gEAAgE;QAChE,OAAO,CAAC,KAAK,CAAC,GAAG,oBAAoB,mEAAmE,CAAC,CAAC;QAC1G,UAAU,GAAG,EAAE,CAAC;QAChB,OAAO,UAAU,CAAC;IACnB,CAAC;IACD,MAAM,IAAI,GAAa,EAAE,CAAC;IAC1B,KAAK,MAAM,IAAI,IAAI,qBAAqB,EAAE,CAAC;QAC1C,IAAI,CAAC;YACJ,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC;YACxD,MAAM,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7B,IAAI,UAAU,CAAC,GAAG,CAAC;gBAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACrC,CAAC;QAAC,MAAM,CAAC;YACR,yBAAuB;QACxB,CAAC;IACF,CAAC;IACD,UAAU,GAAG,IAAI,CAAC;IAClB,OAAO,IAAI,CAAC;AAAA,CACZ;AAED,gFAAgF;AAChF,MAAM,UAAU,eAAe,CAAC,GAAW,EAAsB;IAChE,IAAI,CAAC;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAsB,CAAC;QAC9F,OAAO,GAAG,CAAC,IAAI,CAAC;IACjB,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,SAAS,CAAC;IAClB,CAAC;AAAA,CACD;AAED,oDAAoD;AACpD,MAAM,UAAU,4BAA4B,GAAS;IACpD,UAAU,GAAG,SAAS,CAAC;AAAA,CACvB","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
1
+ {"version":3,"file":"bundled-packages.js","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAEhF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACvD,2BAA2B;IAC3B,+BAA+B;IAC/B,wCAAwC;IACxC,8BAA8B;IAC9B,+BAA+B;IAC/B,iCAAiC;IACjC,qCAAqC;IACrC,gCAAgC;IAChC,kCAAkC;IAClC,6CAA6C;IAC7C,kCAAkC;IAClC,gCAAgC;IAChC,gCAAgC;IAChC,0CAA0C;IAC1C,wCAAwC;IACxC,gCAAgC;IAChC,kCAAkC;IAClC,gCAAgC;IAChC,kCAAkC;IAClC,iCAAiC;IACjC,0CAA0C;IAC1C,oCAAoC;CACpC,CAAC;AAEF,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;AAE/C,IAAI,UAAgC,CAAC;AAErC;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB,GAAa;IACjD,IAAI,UAAU;QAAE,OAAO,UAAU,CAAC;IAClC,IAAI,0BAA0B,CAAC,oBAAoB,CAAC,KAAK,GAAG,EAAE,CAAC;QAC9D,2EAA2E;QAC3E,gEAAgE;QAChE,OAAO,CAAC,KAAK,CAAC,GAAG,oBAAoB,mEAAmE,CAAC,CAAC;QAC1G,UAAU,GAAG,EAAE,CAAC;QAChB,OAAO,UAAU,CAAC;IACnB,CAAC;IACD,MAAM,IAAI,GAAa,EAAE,CAAC;IAC1B,KAAK,MAAM,IAAI,IAAI,qBAAqB,EAAE,CAAC;QAC1C,IAAI,CAAC;YACJ,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC;YACxD,MAAM,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7B,IAAI,UAAU,CAAC,GAAG,CAAC;gBAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACrC,CAAC;QAAC,MAAM,CAAC;YACR,yBAAuB;QACxB,CAAC;IACF,CAAC;IACD,UAAU,GAAG,IAAI,CAAC;IAClB,OAAO,IAAI,CAAC;AAAA,CACZ;AAED,gFAAgF;AAChF,MAAM,UAAU,eAAe,CAAC,GAAW,EAAsB;IAChE,IAAI,CAAC;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAsB,CAAC;QAC9F,OAAO,GAAG,CAAC,IAAI,CAAC;IACjB,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,SAAS,CAAC;IAClB,CAAC;AAAA,CACD;AAED,oDAAoD;AACpD,MAAM,UAAU,4BAA4B,GAAS;IACpD,UAAU,GAAG,SAAS,CAAC;AAAA,CACvB","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-improve-prompt\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
@@ -1,38 +1,39 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.3-cante.5",
3
+ "version": "0.80.3-cante.7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@pandi-coding-agent/pi-cante",
9
- "version": "0.80.3-cante.5",
9
+ "version": "0.80.3-cante.7",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@earendil-works/pi-agent-core": "^0.80.3",
13
13
  "@earendil-works/pi-ai": "^0.80.3",
14
14
  "@earendil-works/pi-tui": "^0.80.3",
15
- "@pandi-coding-agent/pandi": "0.1.3",
16
- "@pandi-coding-agent/pandi-ask": "0.1.2",
17
- "@pandi-coding-agent/pandi-auto-compact": "0.2.1",
18
- "@pandi-coding-agent/pandi-bg": "0.1.3",
19
- "@pandi-coding-agent/pandi-btw": "0.1.2",
20
- "@pandi-coding-agent/pandi-clear": "0.1.2",
21
- "@pandi-coding-agent/pandi-container": "0.2.1",
22
- "@pandi-coding-agent/pandi-docs": "0.1.1",
23
- "@pandi-coding-agent/pandi-doctor": "0.2.2",
24
- "@pandi-coding-agent/pandi-dynamic-workflows": "0.3.3",
25
- "@pandi-coding-agent/pandi-effort": "0.1.2",
26
- "@pandi-coding-agent/pandi-exit": "0.1.3",
27
- "@pandi-coding-agent/pandi-goal": "0.2.3",
28
- "@pandi-coding-agent/pandi-local-memory": "0.2.1",
29
- "@pandi-coding-agent/pandi-loop": "0.2.2",
30
- "@pandi-coding-agent/pandi-mdview": "0.1.2",
31
- "@pandi-coding-agent/pandi-plan": "0.1.3",
32
- "@pandi-coding-agent/pandi-rename": "0.3.2",
33
- "@pandi-coding-agent/pandi-theme": "0.1.3",
34
- "@pandi-coding-agent/pandi-typescript-lsp": "0.1.3",
35
- "@pandi-coding-agent/pandi-worktree": "0.2.1",
15
+ "@pandi-coding-agent/pandi": "0.1.5",
16
+ "@pandi-coding-agent/pandi-ask": "0.1.4",
17
+ "@pandi-coding-agent/pandi-auto-compact": "0.2.3",
18
+ "@pandi-coding-agent/pandi-bg": "0.1.5",
19
+ "@pandi-coding-agent/pandi-btw": "0.1.4",
20
+ "@pandi-coding-agent/pandi-clear": "0.1.4",
21
+ "@pandi-coding-agent/pandi-container": "0.2.3",
22
+ "@pandi-coding-agent/pandi-docs": "0.1.3",
23
+ "@pandi-coding-agent/pandi-doctor": "0.2.4",
24
+ "@pandi-coding-agent/pandi-dynamic-workflows": "0.4.0",
25
+ "@pandi-coding-agent/pandi-effort": "0.1.4",
26
+ "@pandi-coding-agent/pandi-exit": "0.1.5",
27
+ "@pandi-coding-agent/pandi-goal": "0.2.5",
28
+ "@pandi-coding-agent/pandi-improve-prompt": "0.1.1",
29
+ "@pandi-coding-agent/pandi-local-memory": "0.2.3",
30
+ "@pandi-coding-agent/pandi-loop": "0.2.4",
31
+ "@pandi-coding-agent/pandi-mdview": "0.1.4",
32
+ "@pandi-coding-agent/pandi-plan": "0.1.5",
33
+ "@pandi-coding-agent/pandi-rename": "0.3.4",
34
+ "@pandi-coding-agent/pandi-theme": "0.1.5",
35
+ "@pandi-coding-agent/pandi-typescript-lsp": "0.1.5",
36
+ "@pandi-coding-agent/pandi-worktree": "0.2.3",
36
37
  "@silvia-odwyer/photon-node": "0.3.4",
37
38
  "chalk": "5.6.2",
38
39
  "cross-spawn": "7.0.6",
@@ -813,230 +814,243 @@
813
814
  }
814
815
  },
815
816
  "node_modules/@pandi-coding-agent/pandi": {
816
- "version": "0.1.3",
817
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.3.tgz",
818
- "integrity": "sha512-Op09H2iTU0Tn7pS0VkmjcODf2+FUjFF0UH6PvozFEJ/4Eot9gES7+gR/7g9e7VSCd2Es1/Ji6SZG+M7XVmi3Tg==",
817
+ "version": "0.1.5",
818
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.5.tgz",
819
+ "integrity": "sha512-NQ1VhTNYmpQCGyNVw1xWj7BdvbWVyhz+1D1SERpm+wu4vsWeAcRAhE9jYkfsOqEQG63fWFrkK6vfYBKvIp0sVw==",
819
820
  "license": "MIT",
820
821
  "peerDependencies": {
821
- "@earendil-works/pi-coding-agent": "*"
822
+ "@earendil-works/pi-coding-agent": "^0.80.3"
822
823
  }
823
824
  },
824
825
  "node_modules/@pandi-coding-agent/pandi-ask": {
825
- "version": "0.1.2",
826
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-ask/-/pandi-ask-0.1.2.tgz",
827
- "integrity": "sha512-n/dkbc0cYqFTiUx7CI7a+43WWsjqAvPSGu6kUFP9bSesgH2+0TSQqXJFDEvsqIiGPM3HnG2kj2teyORU/mZjfg==",
826
+ "version": "0.1.4",
827
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-ask/-/pandi-ask-0.1.4.tgz",
828
+ "integrity": "sha512-E3MthHSJWO7aYup8dS6/AJgFZAyPZIDccyLd4QeBClo7e5D0lpzLPcfiB71Fxnae73K8ZP3klH97lbVDyJdrlg==",
828
829
  "license": "MIT",
829
830
  "peerDependencies": {
830
- "@earendil-works/pi-coding-agent": "*",
831
- "typebox": "*"
831
+ "@earendil-works/pi-coding-agent": "^0.80.3",
832
+ "typebox": "^1.1.38"
832
833
  }
833
834
  },
834
835
  "node_modules/@pandi-coding-agent/pandi-auto-compact": {
835
- "version": "0.2.1",
836
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-auto-compact/-/pandi-auto-compact-0.2.1.tgz",
837
- "integrity": "sha512-U/qwWFlt+ZgsJkFOwxAnzqgbnVKhNstU3+DM5cVWn0B8GIPl3sCxXhqcCNofK4u7R0VSiIsoKkZCsTnJ5nAXbg==",
836
+ "version": "0.2.3",
837
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-auto-compact/-/pandi-auto-compact-0.2.3.tgz",
838
+ "integrity": "sha512-o0pc1s9uUqAXFYa1n0S5s4lPL7XHcq5diYjMvj3U1E95vsmk2FH0UISItZwFOhMvYEUr1/XFQIVoukP9x3uluw==",
838
839
  "license": "MIT",
839
840
  "peerDependencies": {
840
- "@earendil-works/pi-coding-agent": "*"
841
+ "@earendil-works/pi-ai": "^0.80.3",
842
+ "@earendil-works/pi-coding-agent": "^0.80.3"
841
843
  }
842
844
  },
843
845
  "node_modules/@pandi-coding-agent/pandi-bg": {
844
- "version": "0.1.3",
845
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-bg/-/pandi-bg-0.1.3.tgz",
846
- "integrity": "sha512-LakzRh2CVPMAiPIwYezB43OA3Ep8TEaYoqqo5a6Qf/jP9mGQY4ZDdTC50xbe9efarYUNwWhxJyK9Sik8WeP/VQ==",
846
+ "version": "0.1.5",
847
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-bg/-/pandi-bg-0.1.5.tgz",
848
+ "integrity": "sha512-lvZVBN/loasmJkXFj0UQBkehw02N5xM+63tFBfUeo4Z+5cztK7SgJb+v6m6tqb2JUziXk3/rSFFmxkr/5TCSbg==",
847
849
  "license": "MIT",
848
850
  "peerDependencies": {
849
- "@earendil-works/pi-coding-agent": "*"
851
+ "@earendil-works/pi-coding-agent": "^0.80.3"
850
852
  }
851
853
  },
852
854
  "node_modules/@pandi-coding-agent/pandi-btw": {
853
- "version": "0.1.2",
854
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-btw/-/pandi-btw-0.1.2.tgz",
855
- "integrity": "sha512-1c+8aaJ+aZWBqypB+bR39PSE+a4sGIGrc/zS9fn5TyNB3Gbt/sNFsbPiyBGUDLPpM+bz+6On2ZoFKLyf1Alm+Q==",
855
+ "version": "0.1.4",
856
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-btw/-/pandi-btw-0.1.4.tgz",
857
+ "integrity": "sha512-taoUY3Lb9jiDPrKRgq9SLgvNu8YKFAqNkXneyJt9b3axlFAV4l5OIcvjv5qXLa/YOoCvoFpB1DZcDfnLoPWlfg==",
856
858
  "license": "MIT",
857
859
  "peerDependencies": {
858
- "@earendil-works/pi-ai": "*",
859
- "@earendil-works/pi-coding-agent": "*",
860
- "@earendil-works/pi-tui": "*"
860
+ "@earendil-works/pi-ai": "^0.80.3",
861
+ "@earendil-works/pi-coding-agent": "^0.80.3",
862
+ "@earendil-works/pi-tui": "^0.80.3"
861
863
  }
862
864
  },
863
865
  "node_modules/@pandi-coding-agent/pandi-clear": {
864
- "version": "0.1.2",
865
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-clear/-/pandi-clear-0.1.2.tgz",
866
- "integrity": "sha512-etVJI5+U3CNDc28q5rQrYXv/qKzR0FpPSrLhFM3Q2FlkqjWAgT+jnDAIs0Y06EoOWNcZpyeLuH5xm1KVzoeVFw==",
866
+ "version": "0.1.4",
867
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-clear/-/pandi-clear-0.1.4.tgz",
868
+ "integrity": "sha512-TF5BzuurXfIq9dO8YUf/aHMwwKhdwdHrVklVJuWT7eJnAn/FHM17zsIbKNC5eM0pgSzu6J9UFFKK4uORCHlyOg==",
867
869
  "license": "MIT",
868
870
  "peerDependencies": {
869
- "@earendil-works/pi-coding-agent": "*"
871
+ "@earendil-works/pi-coding-agent": "^0.80.3"
870
872
  }
871
873
  },
872
874
  "node_modules/@pandi-coding-agent/pandi-container": {
873
- "version": "0.2.1",
874
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-container/-/pandi-container-0.2.1.tgz",
875
- "integrity": "sha512-OL0W67f7d5Sj7LI6RKGwTHzGjlGeJnbKCttLw+a7IgBu2SE7c5W5zXEhygNDBm5K0MPROWz/HyWlpH6JWhfRKw==",
875
+ "version": "0.2.3",
876
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-container/-/pandi-container-0.2.3.tgz",
877
+ "integrity": "sha512-U8Jy8duEfof5jqRLFHUdLp7/2OZ9Kfw/7eL6lgbB3EjBfonsmqS7CuDzqVWPftaEtBs8IarjJsghCp0XN6qdjg==",
876
878
  "license": "MIT",
877
879
  "peerDependencies": {
878
- "@earendil-works/pi-ai": "*",
879
- "@earendil-works/pi-coding-agent": "*",
880
- "typebox": "*"
880
+ "@earendil-works/pi-ai": "^0.80.3",
881
+ "@earendil-works/pi-coding-agent": "^0.80.3",
882
+ "typebox": "^1.1.38"
881
883
  }
882
884
  },
883
885
  "node_modules/@pandi-coding-agent/pandi-docs": {
884
- "version": "0.1.1",
885
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.1.tgz",
886
- "integrity": "sha512-X9LnurlIrPdmTZxitYSXKFul6iAO5IX+3vKyFfqZbD7wvm0AIU1UtwrQYvMeFRvUHV7aCjI62J1KTBNVm5RtWA==",
886
+ "version": "0.1.3",
887
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.3.tgz",
888
+ "integrity": "sha512-Yt/IGO4s93CbsGFUvXsJuOTI2JiwQebrwku5BuEoJ4vjh9EMOhFeebLBbZMuGKkkaXISdQxLBov90KiUY8B0DA==",
887
889
  "license": "MIT",
888
890
  "dependencies": {
891
+ "highlight.js": "^11.11.1",
889
892
  "marked": "^18.0.5"
890
893
  },
891
894
  "peerDependencies": {
892
- "@earendil-works/pi-coding-agent": "*",
893
- "typebox": "*"
895
+ "@earendil-works/pi-coding-agent": "^0.80.3",
896
+ "typebox": "^1.1.38"
897
+ }
898
+ },
899
+ "node_modules/@pandi-coding-agent/pandi-docs/node_modules/highlight.js": {
900
+ "version": "11.11.1",
901
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.11.1.tgz",
902
+ "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
903
+ "license": "BSD-3-Clause",
904
+ "engines": {
905
+ "node": ">=12.0.0"
894
906
  }
895
907
  },
896
908
  "node_modules/@pandi-coding-agent/pandi-doctor": {
897
- "version": "0.2.2",
898
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-doctor/-/pandi-doctor-0.2.2.tgz",
899
- "integrity": "sha512-m+kexf9TiyRFX11Tbb66M4XRvittIEwJ4bBIQv90R39E538mER3k0WWdHiNOF8aFths3zN8ELua2lreRfcncQQ==",
909
+ "version": "0.2.4",
910
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-doctor/-/pandi-doctor-0.2.4.tgz",
911
+ "integrity": "sha512-ZcnmYGi7JXs3e2azHqdDd0Q1/mFnLbY+bghJ3ozJD4j8LyoawgEMUdQAQ7Iv+Xyc6LQAaTQNG5mVBs6jcLw0qA==",
900
912
  "license": "MIT",
901
913
  "peerDependencies": {
902
- "@earendil-works/pi-coding-agent": "*"
914
+ "@earendil-works/pi-coding-agent": "^0.80.3"
903
915
  }
904
916
  },
905
917
  "node_modules/@pandi-coding-agent/pandi-dynamic-workflows": {
906
- "version": "0.3.3",
907
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.3.3.tgz",
908
- "integrity": "sha512-jcqKWe7nM+5RDIFPzmSrbf/z3C2O70lEGVam7aQ1/TNgOJzjKnFBGgBOzqWAFbfF5jnXdhg3pj6MhfhgvYAyjQ==",
918
+ "version": "0.4.0",
919
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.4.0.tgz",
920
+ "integrity": "sha512-oRmkmBziccvq5yCBviiKBnZddYJ055crvAJ6oZVBhf5fOpzP1+KOamxIBA+uT3XxIT2eRd1k1l0bB/Mp60QdZg==",
909
921
  "license": "MIT",
922
+ "dependencies": {
923
+ "marked": "^18.0.5",
924
+ "sanitize-html": "^2.17.5"
925
+ },
910
926
  "peerDependencies": {
911
- "@earendil-works/pi-ai": "*",
912
- "@earendil-works/pi-coding-agent": "*",
913
- "@earendil-works/pi-tui": "*",
914
- "typebox": "*"
927
+ "@earendil-works/pi-ai": "^0.80.3",
928
+ "@earendil-works/pi-coding-agent": "^0.80.3",
929
+ "@earendil-works/pi-tui": "^0.80.3",
930
+ "typebox": "^1.1.38"
915
931
  }
916
932
  },
917
933
  "node_modules/@pandi-coding-agent/pandi-effort": {
918
- "version": "0.1.2",
919
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-effort/-/pandi-effort-0.1.2.tgz",
920
- "integrity": "sha512-eJp3POvWNqzN4nLW2LNS0laYwqNt/nkYaO48YNg5nE8SLbsSFbCkc6T6Glyu45+kMIt046jaDWMfefOhoTichw==",
934
+ "version": "0.1.4",
935
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-effort/-/pandi-effort-0.1.4.tgz",
936
+ "integrity": "sha512-zEqsOdctMfuR7NJBzDAqIY2G6XTcHlIQcZeCWRwNoI4MKmlHXjXzpDGIpiiYmmjbMNhiTBTRrvA0YtZ8YTCN/Q==",
921
937
  "license": "MIT",
922
938
  "peerDependencies": {
923
- "@earendil-works/pi-coding-agent": "*"
939
+ "@earendil-works/pi-coding-agent": "^0.80.3"
924
940
  }
925
941
  },
926
942
  "node_modules/@pandi-coding-agent/pandi-exit": {
927
- "version": "0.1.3",
928
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-exit/-/pandi-exit-0.1.3.tgz",
929
- "integrity": "sha512-W3xNfTpx2h9XdOfZtoyNAHKk6NqUIoMfBhg20yn0RIz0bNKaejyN9tGhEJryLMyyHiQWV6B94luEYRH3Y9UpRQ==",
943
+ "version": "0.1.5",
944
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-exit/-/pandi-exit-0.1.5.tgz",
945
+ "integrity": "sha512-A/0ejQFHfsWWszkcXPUIxIInj3XQr2ss4IgPKikPTFRaR88KeOQQG5+4hJcPnett4ZqLFcxWdi23VqhYpfL0Ag==",
930
946
  "license": "MIT",
931
947
  "peerDependencies": {
932
- "@earendil-works/pi-coding-agent": "*"
948
+ "@earendil-works/pi-coding-agent": "^0.80.3"
933
949
  }
934
950
  },
935
951
  "node_modules/@pandi-coding-agent/pandi-goal": {
936
- "version": "0.2.3",
937
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.3.tgz",
938
- "integrity": "sha512-np0o4qxxC1/abu4cwjHlFhO3dL3d7DV5VUmcoQWipf/23hQHfCNCJgrtlJ2am/Iy8bLBy8G16AEr/fo6CstwTQ==",
952
+ "version": "0.2.5",
953
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.5.tgz",
954
+ "integrity": "sha512-WKpqTFDCOUCAueT8iabd9kf9xd9HSjjdOdBuoqQvMR8SMGnXIPu2ZlbEym7xXdcAR8Mij9bdBHSFqic+vd1BJg==",
939
955
  "license": "MIT",
940
956
  "peerDependencies": {
941
- "@earendil-works/pi-coding-agent": "*",
942
- "typebox": "*"
957
+ "@earendil-works/pi-coding-agent": "^0.80.3",
958
+ "typebox": "^1.1.38"
943
959
  }
944
960
  },
945
- "node_modules/@pandi-coding-agent/pandi-local-memory": {
946
- "version": "0.2.1",
947
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-local-memory/-/pandi-local-memory-0.2.1.tgz",
948
- "integrity": "sha512-hkhFjSSlne+iFUvbQDoFK+1tYlG+BZboFJ5MM43+Ii2cP9AnNMX5ZmWFcluCPnhqkrkvuFy8O79oRDEfGgq14A==",
961
+ "node_modules/@pandi-coding-agent/pandi-improve-prompt": {
962
+ "version": "0.1.1",
963
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-improve-prompt/-/pandi-improve-prompt-0.1.1.tgz",
964
+ "integrity": "sha512-5nwLoBiHLJs511wonAxN9sqwznues0wNYOKXtH1KcQmYKriXccdfJYHvZVvWup+L17NVV5lcxfwt6NRUlrHPtQ==",
949
965
  "license": "MIT",
950
966
  "peerDependencies": {
951
- "@earendil-works/pi-coding-agent": "*",
952
- "typebox": "*"
967
+ "@earendil-works/pi-ai": "^0.80.3",
968
+ "@earendil-works/pi-coding-agent": "^0.80.3",
969
+ "@earendil-works/pi-tui": "^0.80.3"
953
970
  }
954
971
  },
955
- "node_modules/@pandi-coding-agent/pandi-loop": {
956
- "version": "0.2.2",
957
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-loop/-/pandi-loop-0.2.2.tgz",
958
- "integrity": "sha512-PCDeNHX+M8HbcyvDexoFTARqsr1Pwa+MXsa7rFOBv0wnTuH5xNEJ+WWgepWJpzZeY1FMzMh9xLWnW2BWZL4BhQ==",
972
+ "node_modules/@pandi-coding-agent/pandi-local-memory": {
973
+ "version": "0.2.3",
974
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-local-memory/-/pandi-local-memory-0.2.3.tgz",
975
+ "integrity": "sha512-948Kj5gTnB+VW39TklkNlGEri2paeD77kQ5nbnizRlwE//Ce5ve2ESE1LIG918290j1IRL3DEEC1G/FuGP8lCQ==",
959
976
  "license": "MIT",
960
977
  "peerDependencies": {
961
- "@earendil-works/pi-coding-agent": "*",
962
- "typebox": "*"
978
+ "@earendil-works/pi-coding-agent": "^0.80.3",
979
+ "typebox": "^1.1.38"
963
980
  }
964
981
  },
965
- "node_modules/@pandi-coding-agent/pandi-mdview": {
966
- "version": "0.1.2",
967
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-mdview/-/pandi-mdview-0.1.2.tgz",
968
- "integrity": "sha512-K54idXxZN2jM03VQtRcl/L0HIMdGqOKZHVlvYBluKNs0TG1wxlbTPuYblE8QOX/YCHL7w5HIv1VK7OhDFJl15A==",
982
+ "node_modules/@pandi-coding-agent/pandi-loop": {
983
+ "version": "0.2.4",
984
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-loop/-/pandi-loop-0.2.4.tgz",
985
+ "integrity": "sha512-y7qlqGneLGzVnf0He/iMYbjr9w3v2ISg8NuJfq1GsyS2lg18JkuzUg46gkl7BZqvuw9uHzwh/WXNmKJzkAJiVw==",
969
986
  "license": "MIT",
970
987
  "peerDependencies": {
971
- "@earendil-works/pi-coding-agent": "*",
972
- "@earendil-works/pi-tui": "*"
988
+ "@earendil-works/pi-coding-agent": "^0.80.3",
989
+ "typebox": "^1.1.38"
973
990
  }
974
991
  },
975
- "node_modules/@pandi-coding-agent/pandi-plan": {
976
- "version": "0.1.3",
977
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-plan/-/pandi-plan-0.1.3.tgz",
978
- "integrity": "sha512-Nqjc/PBCRBhOAOF4gDVa21l4cgo+pIw6LCZjnfQHtOWxUM4mN09cyDQS2hl1FGvcBbSNAtcOplke6E5epoLy+g==",
992
+ "node_modules/@pandi-coding-agent/pandi-mdview": {
993
+ "version": "0.1.4",
994
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-mdview/-/pandi-mdview-0.1.4.tgz",
995
+ "integrity": "sha512-6XaMRdtD1LQgZu2RR95G3VWJ53ybPD5vReXsLSqsN0KUmMzej60NuzijVBfczUp3wDkz27IjAIcDudTMAgaI0w==",
979
996
  "license": "MIT",
980
- "dependencies": {
981
- "@pandi-coding-agent/pandi-docs": "0.1.0"
982
- },
983
997
  "peerDependencies": {
984
- "@earendil-works/pi-coding-agent": "*",
985
- "@earendil-works/pi-tui": "*",
986
- "typebox": "*"
998
+ "@earendil-works/pi-coding-agent": "^0.80.3",
999
+ "@earendil-works/pi-tui": "^0.80.3"
987
1000
  }
988
1001
  },
989
- "node_modules/@pandi-coding-agent/pandi-plan/node_modules/@pandi-coding-agent/pandi-docs": {
990
- "version": "0.1.0",
991
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.0.tgz",
992
- "integrity": "sha512-BiFdgC0pr0090vZ3h26fNz7nsvhoVyIdeHzUcTcFVqRbqvtQXF69qDQMlQTHT2zoxXDX/itmCAFymJrDbHx1lA==",
1002
+ "node_modules/@pandi-coding-agent/pandi-plan": {
1003
+ "version": "0.1.5",
1004
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-plan/-/pandi-plan-0.1.5.tgz",
1005
+ "integrity": "sha512-M3m4BYNP90M2mOZEF68IYDVdegoUeoTdVYv35Lovk4L0SIldjzCfxQ7jrrmrJh+W8LmGzlmbA43boUunEhMDkA==",
993
1006
  "license": "MIT",
994
1007
  "dependencies": {
995
- "marked": "^18.0.5"
1008
+ "@pandi-coding-agent/pandi-docs": "0.1.3"
996
1009
  },
997
1010
  "peerDependencies": {
998
- "@earendil-works/pi-coding-agent": "*",
999
- "typebox": "*"
1011
+ "@earendil-works/pi-coding-agent": "^0.80.3",
1012
+ "@earendil-works/pi-tui": "^0.80.3",
1013
+ "typebox": "^1.1.38"
1000
1014
  }
1001
1015
  },
1002
1016
  "node_modules/@pandi-coding-agent/pandi-rename": {
1003
- "version": "0.3.2",
1004
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.2.tgz",
1005
- "integrity": "sha512-JR0h4qTxyKeBUXQQ+2UU+4JxngPPwg3BGtV/Z04A9ej33vRfPmqowvgXtTeD9Wl6W8O9B20KfHsPNsGWvTefLQ==",
1017
+ "version": "0.3.4",
1018
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.4.tgz",
1019
+ "integrity": "sha512-phj+u5H4PydsndNqIgw6EfVs5+Wc7EwzwkQFb0qwkaqxhYGAC/KKl3D8oX8+i6ewVQwy3v1gd7c9meiEwLrVdA==",
1006
1020
  "license": "MIT",
1007
1021
  "peerDependencies": {
1008
- "@earendil-works/pi-coding-agent": "*"
1022
+ "@earendil-works/pi-coding-agent": "^0.80.3"
1009
1023
  }
1010
1024
  },
1011
1025
  "node_modules/@pandi-coding-agent/pandi-theme": {
1012
- "version": "0.1.3",
1013
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-theme/-/pandi-theme-0.1.3.tgz",
1014
- "integrity": "sha512-XPqIfhhEJsdF37Da6zQJEJZJ8+kgCtV2iPuwZ0nrPg9ak72AGAhushuGQPTMme0ffGANY+zhPJHwwdN5kgUw7g==",
1026
+ "version": "0.1.5",
1027
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-theme/-/pandi-theme-0.1.5.tgz",
1028
+ "integrity": "sha512-fhH76qmHP0+LROgcd/6c536Gbl0c7YWGPQCKitMssS2qzssu7iG+gPVyM3+WEWnftLS3MKeDDxWGncbDNg+DSQ==",
1015
1029
  "license": "MIT",
1016
1030
  "peerDependencies": {
1017
- "@earendil-works/pi-coding-agent": "*"
1031
+ "@earendil-works/pi-coding-agent": "^0.80.3"
1018
1032
  }
1019
1033
  },
1020
1034
  "node_modules/@pandi-coding-agent/pandi-typescript-lsp": {
1021
- "version": "0.1.3",
1022
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-typescript-lsp/-/pandi-typescript-lsp-0.1.3.tgz",
1023
- "integrity": "sha512-ryEzg5dpjZ+CGmaFhu0O3OerSKJrBZKR0DfOcXH5nyci1gR8lzfIPeN7pJmdCudfotDqExUkNkGpmNcNl7ZquQ==",
1035
+ "version": "0.1.5",
1036
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-typescript-lsp/-/pandi-typescript-lsp-0.1.5.tgz",
1037
+ "integrity": "sha512-TiihKfsWr+LTBGFyvm/rOUnsYFeoqc3zX22R6pAg/Z/92k+5DLdaJQaUEVzgixg9tUuuIVz1oCbLMG9zm+9ovQ==",
1024
1038
  "license": "MIT",
1025
1039
  "peerDependencies": {
1026
- "@earendil-works/pi-ai": "*",
1027
- "@earendil-works/pi-coding-agent": "*",
1028
- "typebox": "*"
1040
+ "@earendil-works/pi-ai": "^0.80.3",
1041
+ "@earendil-works/pi-coding-agent": "^0.80.3",
1042
+ "typebox": "^1.1.38"
1029
1043
  }
1030
1044
  },
1031
1045
  "node_modules/@pandi-coding-agent/pandi-worktree": {
1032
- "version": "0.2.1",
1033
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-worktree/-/pandi-worktree-0.2.1.tgz",
1034
- "integrity": "sha512-wbd5ORlxts22KX5hLRPyO5jjmTZY2E5SiUkkV4DwLN/cpBmmqWDcguQ0TQXOSLSia4PrJcze+np24JK9+l4dSA==",
1046
+ "version": "0.2.3",
1047
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-worktree/-/pandi-worktree-0.2.3.tgz",
1048
+ "integrity": "sha512-H7aPt0mJ9qXplEchu36nlDGjduQh6YOch5BHBLa6x3nlq5N9FE8vpZVr88DLeTe+NAqXqexUelMlqHfiKTPAwA==",
1035
1049
  "license": "MIT",
1036
1050
  "peerDependencies": {
1037
- "@earendil-works/pi-ai": "*",
1038
- "@earendil-works/pi-coding-agent": "*",
1039
- "typebox": "*"
1051
+ "@earendil-works/pi-ai": "^0.80.3",
1052
+ "@earendil-works/pi-coding-agent": "^0.80.3",
1053
+ "typebox": "^1.1.38"
1040
1054
  }
1041
1055
  },
1042
1056
  "node_modules/@protobufjs/aspromise": {
@@ -1337,6 +1351,12 @@
1337
1351
  "node": ">= 12"
1338
1352
  }
1339
1353
  },
1354
+ "node_modules/dayjs": {
1355
+ "version": "1.11.21",
1356
+ "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
1357
+ "integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
1358
+ "license": "MIT"
1359
+ },
1340
1360
  "node_modules/debug": {
1341
1361
  "version": "4.4.3",
1342
1362
  "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
@@ -1354,6 +1374,15 @@
1354
1374
  "node": ">=6.0"
1355
1375
  }
1356
1376
  },
1377
+ "node_modules/deepmerge": {
1378
+ "version": "4.3.1",
1379
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
1380
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
1381
+ "license": "MIT",
1382
+ "engines": {
1383
+ "node": ">=0.10.0"
1384
+ }
1385
+ },
1357
1386
  "node_modules/diff": {
1358
1387
  "version": "8.0.4",
1359
1388
  "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
@@ -1363,6 +1392,73 @@
1363
1392
  "node": ">=0.3.1"
1364
1393
  }
1365
1394
  },
1395
+ "node_modules/dom-serializer": {
1396
+ "version": "2.0.0",
1397
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
1398
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
1399
+ "license": "MIT",
1400
+ "dependencies": {
1401
+ "domelementtype": "^2.3.0",
1402
+ "domhandler": "^5.0.2",
1403
+ "entities": "^4.2.0"
1404
+ },
1405
+ "funding": {
1406
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
1407
+ }
1408
+ },
1409
+ "node_modules/dom-serializer/node_modules/entities": {
1410
+ "version": "4.5.0",
1411
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
1412
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
1413
+ "license": "BSD-2-Clause",
1414
+ "engines": {
1415
+ "node": ">=0.12"
1416
+ },
1417
+ "funding": {
1418
+ "url": "https://github.com/fb55/entities?sponsor=1"
1419
+ }
1420
+ },
1421
+ "node_modules/domelementtype": {
1422
+ "version": "2.3.0",
1423
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
1424
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
1425
+ "license": "BSD-2-Clause",
1426
+ "funding": [
1427
+ {
1428
+ "type": "github",
1429
+ "url": "https://github.com/sponsors/fb55"
1430
+ }
1431
+ ]
1432
+ },
1433
+ "node_modules/domhandler": {
1434
+ "version": "5.0.3",
1435
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
1436
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
1437
+ "license": "BSD-2-Clause",
1438
+ "dependencies": {
1439
+ "domelementtype": "^2.3.0"
1440
+ },
1441
+ "engines": {
1442
+ "node": ">= 4"
1443
+ },
1444
+ "funding": {
1445
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
1446
+ }
1447
+ },
1448
+ "node_modules/domutils": {
1449
+ "version": "3.2.2",
1450
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
1451
+ "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
1452
+ "license": "BSD-2-Clause",
1453
+ "dependencies": {
1454
+ "dom-serializer": "^2.0.0",
1455
+ "domelementtype": "^2.3.0",
1456
+ "domhandler": "^5.0.3"
1457
+ },
1458
+ "funding": {
1459
+ "url": "https://github.com/fb55/domutils?sponsor=1"
1460
+ }
1461
+ },
1366
1462
  "node_modules/ecdsa-sig-formatter": {
1367
1463
  "version": "1.0.11",
1368
1464
  "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
@@ -1372,6 +1468,30 @@
1372
1468
  "safe-buffer": "^5.0.1"
1373
1469
  }
1374
1470
  },
1471
+ "node_modules/entities": {
1472
+ "version": "7.0.1",
1473
+ "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
1474
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
1475
+ "license": "BSD-2-Clause",
1476
+ "engines": {
1477
+ "node": ">=0.12"
1478
+ },
1479
+ "funding": {
1480
+ "url": "https://github.com/fb55/entities?sponsor=1"
1481
+ }
1482
+ },
1483
+ "node_modules/escape-string-regexp": {
1484
+ "version": "4.0.0",
1485
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1486
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1487
+ "license": "MIT",
1488
+ "engines": {
1489
+ "node": ">=10"
1490
+ },
1491
+ "funding": {
1492
+ "url": "https://github.com/sponsors/sindresorhus"
1493
+ }
1494
+ },
1375
1495
  "node_modules/extend": {
1376
1496
  "version": "3.0.2",
1377
1497
  "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
@@ -1560,6 +1680,25 @@
1560
1680
  "node": "^20.17.0 || >=22.9.0"
1561
1681
  }
1562
1682
  },
1683
+ "node_modules/htmlparser2": {
1684
+ "version": "10.1.0",
1685
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz",
1686
+ "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==",
1687
+ "license": "MIT",
1688
+ "dependencies": {
1689
+ "domelementtype": "^2.3.0",
1690
+ "domhandler": "^5.0.3",
1691
+ "domutils": "^3.2.2",
1692
+ "entities": "^7.0.1"
1693
+ },
1694
+ "funding": [
1695
+ "https://github.com/fb55/htmlparser2?sponsor=1",
1696
+ {
1697
+ "type": "github",
1698
+ "url": "https://github.com/sponsors/fb55"
1699
+ }
1700
+ ]
1701
+ },
1563
1702
  "node_modules/http-proxy-agent": {
1564
1703
  "version": "7.0.2",
1565
1704
  "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
@@ -1595,6 +1734,15 @@
1595
1734
  "node": ">= 4"
1596
1735
  }
1597
1736
  },
1737
+ "node_modules/is-plain-object": {
1738
+ "version": "5.0.0",
1739
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
1740
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
1741
+ "license": "MIT",
1742
+ "engines": {
1743
+ "node": ">=0.10.0"
1744
+ }
1745
+ },
1598
1746
  "node_modules/isexe": {
1599
1747
  "version": "2.0.0",
1600
1748
  "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
@@ -1653,6 +1801,15 @@
1653
1801
  "safe-buffer": "^5.0.1"
1654
1802
  }
1655
1803
  },
1804
+ "node_modules/launder": {
1805
+ "version": "1.7.1",
1806
+ "resolved": "https://registry.npmjs.org/launder/-/launder-1.7.1.tgz",
1807
+ "integrity": "sha512-mU6WRz5EusL9ZZuiZ5SO4Y6C0P9PAUR9iwdb6bzj4KDihm28DiHFw+/yk9DBH4f+Pv1wuzQ4e2jV3oQ7mkIqvw==",
1808
+ "license": "MIT",
1809
+ "dependencies": {
1810
+ "dayjs": "^1.11.7"
1811
+ }
1812
+ },
1656
1813
  "node_modules/long": {
1657
1814
  "version": "5.3.2",
1658
1815
  "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
@@ -1710,6 +1867,24 @@
1710
1867
  "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1711
1868
  "license": "MIT"
1712
1869
  },
1870
+ "node_modules/nanoid": {
1871
+ "version": "3.3.12",
1872
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
1873
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
1874
+ "license": "MIT",
1875
+ "bin": {
1876
+ "nanoid": "bin/nanoid.cjs"
1877
+ },
1878
+ "engines": {
1879
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
1880
+ },
1881
+ "funding": [
1882
+ {
1883
+ "type": "github",
1884
+ "url": "https://github.com/sponsors/ai"
1885
+ }
1886
+ ]
1887
+ },
1713
1888
  "node_modules/node-domexception": {
1714
1889
  "version": "1.0.0",
1715
1890
  "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
@@ -1788,6 +1963,12 @@
1788
1963
  "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
1789
1964
  "license": "MIT"
1790
1965
  },
1966
+ "node_modules/parse-srcset": {
1967
+ "version": "1.0.2",
1968
+ "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz",
1969
+ "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==",
1970
+ "license": "MIT"
1971
+ },
1791
1972
  "node_modules/partial-json": {
1792
1973
  "version": "0.1.7",
1793
1974
  "resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
@@ -1834,6 +2015,40 @@
1834
2015
  "url": "https://github.com/sponsors/isaacs"
1835
2016
  }
1836
2017
  },
2018
+ "node_modules/picocolors": {
2019
+ "version": "1.1.1",
2020
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2021
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2022
+ "license": "ISC"
2023
+ },
2024
+ "node_modules/postcss": {
2025
+ "version": "8.5.15",
2026
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
2027
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
2028
+ "license": "MIT",
2029
+ "dependencies": {
2030
+ "nanoid": "^3.3.12",
2031
+ "picocolors": "^1.1.1",
2032
+ "source-map-js": "^1.2.1"
2033
+ },
2034
+ "engines": {
2035
+ "node": "^10 || ^12 || >=14"
2036
+ },
2037
+ "funding": [
2038
+ {
2039
+ "type": "opencollective",
2040
+ "url": "https://opencollective.com/postcss/"
2041
+ },
2042
+ {
2043
+ "type": "tidelift",
2044
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2045
+ },
2046
+ {
2047
+ "type": "github",
2048
+ "url": "https://github.com/sponsors/ai"
2049
+ }
2050
+ ]
2051
+ },
1837
2052
  "node_modules/proper-lockfile": {
1838
2053
  "version": "4.1.2",
1839
2054
  "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
@@ -1906,6 +2121,21 @@
1906
2121
  }
1907
2122
  ]
1908
2123
  },
2124
+ "node_modules/sanitize-html": {
2125
+ "version": "2.17.5",
2126
+ "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.17.5.tgz",
2127
+ "integrity": "sha512-ZmU1joGRrvoyctKIiuwUxqR6moLoU2Wk+2bMccN6f7UwhAmwYDvWziqPxRDDN2Qip62NqnIrVrT9akbL6Wretg==",
2128
+ "license": "MIT",
2129
+ "dependencies": {
2130
+ "deepmerge": "^4.2.2",
2131
+ "escape-string-regexp": "^4.0.0",
2132
+ "htmlparser2": "^10.1.0",
2133
+ "is-plain-object": "^5.0.0",
2134
+ "launder": "^1.7.1",
2135
+ "parse-srcset": "^1.0.2",
2136
+ "postcss": "^8.3.11"
2137
+ }
2138
+ },
1909
2139
  "node_modules/semver": {
1910
2140
  "version": "7.8.0",
1911
2141
  "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
@@ -1945,6 +2175,15 @@
1945
2175
  "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
1946
2176
  "license": "ISC"
1947
2177
  },
2178
+ "node_modules/source-map-js": {
2179
+ "version": "1.2.1",
2180
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2181
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2182
+ "license": "BSD-3-Clause",
2183
+ "engines": {
2184
+ "node": ">=0.10.0"
2185
+ }
2186
+ },
1948
2187
  "node_modules/strnum": {
1949
2188
  "version": "2.3.0",
1950
2189
  "resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.3-cante.5",
3
+ "version": "0.80.3-cante.7",
4
4
  "description": "pi-cante: a pi coding agent distribution bundling the pandi extension pack",
5
5
  "type": "module",
6
6
  "piConfig": {
@@ -43,27 +43,28 @@
43
43
  "@earendil-works/pi-agent-core": "^0.80.3",
44
44
  "@earendil-works/pi-ai": "^0.80.3",
45
45
  "@earendil-works/pi-tui": "^0.80.3",
46
- "@pandi-coding-agent/pandi": "0.1.3",
47
- "@pandi-coding-agent/pandi-ask": "0.1.2",
48
- "@pandi-coding-agent/pandi-auto-compact": "0.2.1",
49
- "@pandi-coding-agent/pandi-bg": "0.1.3",
50
- "@pandi-coding-agent/pandi-btw": "0.1.2",
51
- "@pandi-coding-agent/pandi-clear": "0.1.2",
52
- "@pandi-coding-agent/pandi-container": "0.2.1",
53
- "@pandi-coding-agent/pandi-docs": "0.1.1",
54
- "@pandi-coding-agent/pandi-doctor": "0.2.2",
55
- "@pandi-coding-agent/pandi-dynamic-workflows": "0.3.3",
56
- "@pandi-coding-agent/pandi-effort": "0.1.2",
57
- "@pandi-coding-agent/pandi-exit": "0.1.3",
58
- "@pandi-coding-agent/pandi-goal": "0.2.3",
59
- "@pandi-coding-agent/pandi-local-memory": "0.2.1",
60
- "@pandi-coding-agent/pandi-loop": "0.2.2",
61
- "@pandi-coding-agent/pandi-mdview": "0.1.2",
62
- "@pandi-coding-agent/pandi-plan": "0.1.3",
63
- "@pandi-coding-agent/pandi-rename": "0.3.2",
64
- "@pandi-coding-agent/pandi-theme": "0.1.3",
65
- "@pandi-coding-agent/pandi-typescript-lsp": "0.1.3",
66
- "@pandi-coding-agent/pandi-worktree": "0.2.1",
46
+ "@pandi-coding-agent/pandi": "0.1.5",
47
+ "@pandi-coding-agent/pandi-ask": "0.1.4",
48
+ "@pandi-coding-agent/pandi-auto-compact": "0.2.3",
49
+ "@pandi-coding-agent/pandi-bg": "0.1.5",
50
+ "@pandi-coding-agent/pandi-btw": "0.1.4",
51
+ "@pandi-coding-agent/pandi-clear": "0.1.4",
52
+ "@pandi-coding-agent/pandi-container": "0.2.3",
53
+ "@pandi-coding-agent/pandi-docs": "0.1.3",
54
+ "@pandi-coding-agent/pandi-doctor": "0.2.4",
55
+ "@pandi-coding-agent/pandi-dynamic-workflows": "0.4.0",
56
+ "@pandi-coding-agent/pandi-effort": "0.1.4",
57
+ "@pandi-coding-agent/pandi-exit": "0.1.5",
58
+ "@pandi-coding-agent/pandi-goal": "0.2.5",
59
+ "@pandi-coding-agent/pandi-improve-prompt": "0.1.1",
60
+ "@pandi-coding-agent/pandi-local-memory": "0.2.3",
61
+ "@pandi-coding-agent/pandi-loop": "0.2.4",
62
+ "@pandi-coding-agent/pandi-mdview": "0.1.4",
63
+ "@pandi-coding-agent/pandi-plan": "0.1.5",
64
+ "@pandi-coding-agent/pandi-rename": "0.3.4",
65
+ "@pandi-coding-agent/pandi-theme": "0.1.5",
66
+ "@pandi-coding-agent/pandi-typescript-lsp": "0.1.5",
67
+ "@pandi-coding-agent/pandi-worktree": "0.2.3",
67
68
  "@silvia-odwyer/photon-node": "0.3.4",
68
69
  "chalk": "5.6.2",
69
70
  "cross-spawn": "7.0.6",