@pandi-coding-agent/pi-cante 0.80.3-cante.3 → 0.80.3-cante.4

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":"AAgBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAsBlD,CAAC;AAMF;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,EAAE,CAchD;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 (also listed\n * in bundledDependencies so they ship inside the published tarball). 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.\n */\nimport { existsSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname } from \"path\";\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-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\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\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\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/** 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":"AAgBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAsBlD,CAAC;AAMF;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,EAAE,CAchD;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.\n */\nimport { existsSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname } from \"path\";\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\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/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * pi-cante distribution: pi packages bundled with the CLI itself.
3
3
  *
4
- * These are regular npm dependencies of the coding-agent package (also listed
5
- * in bundledDependencies so they ship inside the published tarball). At startup
4
+ * These are regular npm dependencies of the coding-agent package, pinned by the
5
+ * published npm-shrinkwrap.json and installed from the registry. At startup
6
6
  * they are appended to the package manager's resolution list as built-in,
7
7
  * user-scoped local package sources — they never touch the user's settings.json,
8
8
  * so a vanilla pi install sharing the same config dir is unaffected.
@@ -15,6 +15,7 @@ import { createRequire } from "module";
15
15
  import { dirname } from "path";
16
16
  /** Explicit list (no globbing) so the distribution diff stays reviewable. */
17
17
  export const BUNDLED_PACKAGE_NAMES = [
18
+ "@pandi-coding-agent/pandi",
18
19
  "@pandi-coding-agent/pandi-ask",
19
20
  "@pandi-coding-agent/pandi-auto-compact",
20
21
  "@pandi-coding-agent/pandi-bg",
@@ -30,10 +31,9 @@ export const BUNDLED_PACKAGE_NAMES = [
30
31
  "@pandi-coding-agent/pandi-local-memory",
31
32
  "@pandi-coding-agent/pandi-loop",
32
33
  "@pandi-coding-agent/pandi-mdview",
33
- "@pandi-coding-agent/pandi",
34
- "@pandi-coding-agent/pandi-theme",
35
34
  "@pandi-coding-agent/pandi-plan",
36
35
  "@pandi-coding-agent/pandi-rename",
36
+ "@pandi-coding-agent/pandi-theme",
37
37
  "@pandi-coding-agent/pandi-typescript-lsp",
38
38
  "@pandi-coding-agent/pandi-worktree",
39
39
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"bundled-packages.js","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAChC,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE/B,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACvD,+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,2BAA2B;IAC3B,iCAAiC;IACjC,gCAAgC;IAChC,kCAAkC;IAClC,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,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,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 (also listed\n * in bundledDependencies so they ship inside the published tarball). 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.\n */\nimport { existsSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname } from \"path\";\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-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\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\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\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/** 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;;;;;;;;;;;GAWG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;AAChC,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAE/B,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,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,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.\n */\nimport { existsSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname } from \"path\";\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\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/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
@@ -1,38 +1,38 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.3-cante.3",
3
+ "version": "0.80.3-cante.4",
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.3",
9
+ "version": "0.80.3-cante.4",
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.2",
16
- "@pandi-coding-agent/pandi-ask": "0.1.1",
17
- "@pandi-coding-agent/pandi-auto-compact": "0.2.0",
18
- "@pandi-coding-agent/pandi-bg": "0.1.2",
19
- "@pandi-coding-agent/pandi-btw": "0.1.1",
20
- "@pandi-coding-agent/pandi-clear": "0.1.1",
21
- "@pandi-coding-agent/pandi-container": "0.2.0",
22
- "@pandi-coding-agent/pandi-docs": "0.1.0",
23
- "@pandi-coding-agent/pandi-doctor": "0.2.1",
24
- "@pandi-coding-agent/pandi-dynamic-workflows": "0.3.1",
25
- "@pandi-coding-agent/pandi-effort": "0.1.1",
26
- "@pandi-coding-agent/pandi-exit": "0.1.2",
27
- "@pandi-coding-agent/pandi-goal": "0.2.1",
28
- "@pandi-coding-agent/pandi-local-memory": "0.2.0",
29
- "@pandi-coding-agent/pandi-loop": "0.2.1",
30
- "@pandi-coding-agent/pandi-mdview": "0.1.1",
31
- "@pandi-coding-agent/pandi-plan": "0.1.2",
32
- "@pandi-coding-agent/pandi-rename": "0.3.0",
33
- "@pandi-coding-agent/pandi-theme": "0.1.2",
34
- "@pandi-coding-agent/pandi-typescript-lsp": "0.1.2",
35
- "@pandi-coding-agent/pandi-worktree": "0.2.0",
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.2",
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.2",
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.1",
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",
36
36
  "@silvia-odwyer/photon-node": "0.3.4",
37
37
  "chalk": "5.6.2",
38
38
  "cross-spawn": "7.0.6",
@@ -813,18 +813,18 @@
813
813
  }
814
814
  },
815
815
  "node_modules/@pandi-coding-agent/pandi": {
816
- "version": "0.1.2",
817
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.2.tgz",
818
- "integrity": "sha512-YjsWERizIHYK+bsh74PNoqo/zrPGJcFjgkoUx6EKsBZxBY02GXuOBYL0aS+nIpIcO2OGO1wcJGOqkmj2f/8FfQ==",
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==",
819
819
  "license": "MIT",
820
820
  "peerDependencies": {
821
821
  "@earendil-works/pi-coding-agent": "*"
822
822
  }
823
823
  },
824
824
  "node_modules/@pandi-coding-agent/pandi-ask": {
825
- "version": "0.1.1",
826
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-ask/-/pandi-ask-0.1.1.tgz",
827
- "integrity": "sha512-Qpq1bM5tQG0FzXtY6IgPY4J5n0ZpOwSlK06ENQ7sIJURKXeDDv5ZAqm/x28cMfUBw8AF0PgKkf/9RsCtSRnbOw==",
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==",
828
828
  "license": "MIT",
829
829
  "peerDependencies": {
830
830
  "@earendil-works/pi-coding-agent": "*",
@@ -832,27 +832,27 @@
832
832
  }
833
833
  },
834
834
  "node_modules/@pandi-coding-agent/pandi-auto-compact": {
835
- "version": "0.2.0",
836
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-auto-compact/-/pandi-auto-compact-0.2.0.tgz",
837
- "integrity": "sha512-UHjROcOzbuVB0KMQF/luH0NAk62Qpre+S87+wJf8VsFlR+r0JULp91DGc4nBo+9PP6y0PzwPOUMmwGgsSUpXXw==",
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==",
838
838
  "license": "MIT",
839
839
  "peerDependencies": {
840
840
  "@earendil-works/pi-coding-agent": "*"
841
841
  }
842
842
  },
843
843
  "node_modules/@pandi-coding-agent/pandi-bg": {
844
- "version": "0.1.2",
845
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-bg/-/pandi-bg-0.1.2.tgz",
846
- "integrity": "sha512-vvBGhXxiFVlysQWFbok/TKbSCJzx1p7UAa+sgQrDa2i+mMrP9fgawaZNT9P8j4Mb4X/m5eBWhxBn1K5N1xmN5A==",
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==",
847
847
  "license": "MIT",
848
848
  "peerDependencies": {
849
849
  "@earendil-works/pi-coding-agent": "*"
850
850
  }
851
851
  },
852
852
  "node_modules/@pandi-coding-agent/pandi-btw": {
853
- "version": "0.1.1",
854
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-btw/-/pandi-btw-0.1.1.tgz",
855
- "integrity": "sha512-y+WMXa0d5Kv9WDVDi6G6DjvRlrTOjIauQnXDiaThSipFYO4esYuyf9UbuUr6GVIwTprvf7rz/c4JwcYQdqYHnw==",
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==",
856
856
  "license": "MIT",
857
857
  "peerDependencies": {
858
858
  "@earendil-works/pi-ai": "*",
@@ -861,18 +861,18 @@
861
861
  }
862
862
  },
863
863
  "node_modules/@pandi-coding-agent/pandi-clear": {
864
- "version": "0.1.1",
865
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-clear/-/pandi-clear-0.1.1.tgz",
866
- "integrity": "sha512-tHT5dZ4WQrsd6fX7F3zfncoIw3E+ryaPQerOIyl2nkj/uzEik73fZPwY14YyCTv1fU50kfS2TPPuUqoj528G3Q==",
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==",
867
867
  "license": "MIT",
868
868
  "peerDependencies": {
869
869
  "@earendil-works/pi-coding-agent": "*"
870
870
  }
871
871
  },
872
872
  "node_modules/@pandi-coding-agent/pandi-container": {
873
- "version": "0.2.0",
874
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-container/-/pandi-container-0.2.0.tgz",
875
- "integrity": "sha512-ckIh75N9101U979cIV2kxm/O+iI54x20N8A205sUT4jD7uFSZYO3RIPwKWzFkDdcgZSzAlOsIgxCqUjKARdtpQ==",
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==",
876
876
  "license": "MIT",
877
877
  "peerDependencies": {
878
878
  "@earendil-works/pi-ai": "*",
@@ -881,9 +881,9 @@
881
881
  }
882
882
  },
883
883
  "node_modules/@pandi-coding-agent/pandi-docs": {
884
- "version": "0.1.0",
885
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.0.tgz",
886
- "integrity": "sha512-BiFdgC0pr0090vZ3h26fNz7nsvhoVyIdeHzUcTcFVqRbqvtQXF69qDQMlQTHT2zoxXDX/itmCAFymJrDbHx1lA==",
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==",
887
887
  "license": "MIT",
888
888
  "dependencies": {
889
889
  "marked": "^18.0.5"
@@ -894,18 +894,18 @@
894
894
  }
895
895
  },
896
896
  "node_modules/@pandi-coding-agent/pandi-doctor": {
897
- "version": "0.2.1",
898
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-doctor/-/pandi-doctor-0.2.1.tgz",
899
- "integrity": "sha512-IuJfvYjt/vPKLd3hPid+gzH1lYdcRzINbFNlYcPUOZ5NpMLPF4B6Ow7HhZ9KhG3WhtqzVZp1//ccT7zvg1vKrw==",
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==",
900
900
  "license": "MIT",
901
901
  "peerDependencies": {
902
902
  "@earendil-works/pi-coding-agent": "*"
903
903
  }
904
904
  },
905
905
  "node_modules/@pandi-coding-agent/pandi-dynamic-workflows": {
906
- "version": "0.3.1",
907
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.3.1.tgz",
908
- "integrity": "sha512-v2XNOfUuL8rajsDVqRFccxWHE37fhqOcus6ctTzYDyNOkFF10HQL5OOkciWObNFnVAYvcFV38MmpFJIsEWptXA==",
906
+ "version": "0.3.2",
907
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.3.2.tgz",
908
+ "integrity": "sha512-T2S0kpwexeZZenZsPzJq02fOwwseD9UdYNS7CPc4qXvwflt2PohQ6m8vWqML1LhSSIKtyMpKadU82tAHmEl+eQ==",
909
909
  "license": "MIT",
910
910
  "peerDependencies": {
911
911
  "@earendil-works/pi-ai": "*",
@@ -915,27 +915,27 @@
915
915
  }
916
916
  },
917
917
  "node_modules/@pandi-coding-agent/pandi-effort": {
918
- "version": "0.1.1",
919
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-effort/-/pandi-effort-0.1.1.tgz",
920
- "integrity": "sha512-ouvT6TvJdl1A5GOoANZoak/Dch+L02caV53+zIMpS9haMvxfndVH52gJ6byCNp/jjja4AidzWB2ySZfEM9AlMA==",
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==",
921
921
  "license": "MIT",
922
922
  "peerDependencies": {
923
923
  "@earendil-works/pi-coding-agent": "*"
924
924
  }
925
925
  },
926
926
  "node_modules/@pandi-coding-agent/pandi-exit": {
927
- "version": "0.1.2",
928
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-exit/-/pandi-exit-0.1.2.tgz",
929
- "integrity": "sha512-w7c02mje9dvZXk/zZq2LHnRyOmyauuFgQNvm2DhN35j6NrzPOByyrJr0av+e5uJtAqZGobJfEYPiAe9ufP1Nog==",
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==",
930
930
  "license": "MIT",
931
931
  "peerDependencies": {
932
932
  "@earendil-works/pi-coding-agent": "*"
933
933
  }
934
934
  },
935
935
  "node_modules/@pandi-coding-agent/pandi-goal": {
936
- "version": "0.2.1",
937
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.1.tgz",
938
- "integrity": "sha512-cGgi/kENiYaNggTUTpgh2xwKJeVvA4hoHYfdi7F8ISqJHp46w5GnKn2gYeyqbZvH69YRTbbHowEiL9ALlrd3SQ==",
936
+ "version": "0.2.2",
937
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.2.tgz",
938
+ "integrity": "sha512-iw3HWZq86a6eWljJQHPvUmsd8h7ADWMv1BjWrQS79GCU+KvFgZe5Qnx8yEoDjJ0LyXGEsaRr9FcJMXwvQy91fA==",
939
939
  "license": "MIT",
940
940
  "peerDependencies": {
941
941
  "@earendil-works/pi-coding-agent": "*",
@@ -943,9 +943,9 @@
943
943
  }
944
944
  },
945
945
  "node_modules/@pandi-coding-agent/pandi-local-memory": {
946
- "version": "0.2.0",
947
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-local-memory/-/pandi-local-memory-0.2.0.tgz",
948
- "integrity": "sha512-lwxltGmcKpdZ5NIqh/SAZk2fhR5KQx+USf1zwxQhHeCiVP79dTFsJuzvjQ/XWHH7GeF2b5YbbLWaNxmJHBk77A==",
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==",
949
949
  "license": "MIT",
950
950
  "peerDependencies": {
951
951
  "@earendil-works/pi-coding-agent": "*",
@@ -953,9 +953,9 @@
953
953
  }
954
954
  },
955
955
  "node_modules/@pandi-coding-agent/pandi-loop": {
956
- "version": "0.2.1",
957
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-loop/-/pandi-loop-0.2.1.tgz",
958
- "integrity": "sha512-E2um+rHlSGfJz06mjK1wKOYSQNYuCBxaBI/GMxCFzRbZzyMW/vykieaWf6rnMrCs4O1d+1TzqLNJs2UNOs559g==",
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==",
959
959
  "license": "MIT",
960
960
  "peerDependencies": {
961
961
  "@earendil-works/pi-coding-agent": "*",
@@ -963,9 +963,9 @@
963
963
  }
964
964
  },
965
965
  "node_modules/@pandi-coding-agent/pandi-mdview": {
966
- "version": "0.1.1",
967
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-mdview/-/pandi-mdview-0.1.1.tgz",
968
- "integrity": "sha512-6qVJ0KNs9gi0RlOmSstuxw5hl97nEeISpU6ggAIJqnx6dUMYoLpzT6qW6Q9RkJ7KLgoMb3af/dA/L/Fi4OhIsg==",
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==",
969
969
  "license": "MIT",
970
970
  "peerDependencies": {
971
971
  "@earendil-works/pi-coding-agent": "*",
@@ -973,38 +973,54 @@
973
973
  }
974
974
  },
975
975
  "node_modules/@pandi-coding-agent/pandi-plan": {
976
- "version": "0.1.2",
977
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-plan/-/pandi-plan-0.1.2.tgz",
978
- "integrity": "sha512-ujT8EIdSn+s+UluqosGVhUfvTTmpY7nFlj7DRdeVT1X1FzGxUyV3i8szRklVqJsNno1mr8h2Hw/IXbefzYel0w==",
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==",
979
979
  "license": "MIT",
980
+ "dependencies": {
981
+ "@pandi-coding-agent/pandi-docs": "0.1.0"
982
+ },
980
983
  "peerDependencies": {
981
984
  "@earendil-works/pi-coding-agent": "*",
982
985
  "@earendil-works/pi-tui": "*",
983
986
  "typebox": "*"
984
987
  }
985
988
  },
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==",
993
+ "license": "MIT",
994
+ "dependencies": {
995
+ "marked": "^18.0.5"
996
+ },
997
+ "peerDependencies": {
998
+ "@earendil-works/pi-coding-agent": "*",
999
+ "typebox": "*"
1000
+ }
1001
+ },
986
1002
  "node_modules/@pandi-coding-agent/pandi-rename": {
987
- "version": "0.3.0",
988
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.0.tgz",
989
- "integrity": "sha512-FbZGUdsgd340F4GYMT7KbDsD2WAeJJjk2iOMXEDFyl0IBq59OSBQhLY1VPUO7xBR3/rRcOZy4Iafl2FlWYqNjg==",
1003
+ "version": "0.3.1",
1004
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.1.tgz",
1005
+ "integrity": "sha512-vdKoHE8VfOqlpo0mHgVFSoL+vQFNPA7yXL0Hcxt6Nf9pMIb1FjRHWzVkGacCuLLc3V9Y2Q8CuguCmVX9RXPMKw==",
990
1006
  "license": "MIT",
991
1007
  "peerDependencies": {
992
1008
  "@earendil-works/pi-coding-agent": "*"
993
1009
  }
994
1010
  },
995
1011
  "node_modules/@pandi-coding-agent/pandi-theme": {
996
- "version": "0.1.2",
997
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-theme/-/pandi-theme-0.1.2.tgz",
998
- "integrity": "sha512-cv8uCxxwZ0MFpZZunUIWeZwuGcFpnLZDfbIqi4+rvS67vJX1B22uOwEKvzJjRv7SlyliyyoOn5CORinps8GjRg==",
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==",
999
1015
  "license": "MIT",
1000
1016
  "peerDependencies": {
1001
1017
  "@earendil-works/pi-coding-agent": "*"
1002
1018
  }
1003
1019
  },
1004
1020
  "node_modules/@pandi-coding-agent/pandi-typescript-lsp": {
1005
- "version": "0.1.2",
1006
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-typescript-lsp/-/pandi-typescript-lsp-0.1.2.tgz",
1007
- "integrity": "sha512-1klIBPpyPi1Ss66Kb3q5wkGBg3R6mt1XeiOXQoFoK0Rnh8xO3pddbhsqDga2kRFoBrBQFHI8fCTyfrrFsshhVg==",
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==",
1008
1024
  "license": "MIT",
1009
1025
  "peerDependencies": {
1010
1026
  "@earendil-works/pi-ai": "*",
@@ -1013,9 +1029,9 @@
1013
1029
  }
1014
1030
  },
1015
1031
  "node_modules/@pandi-coding-agent/pandi-worktree": {
1016
- "version": "0.2.0",
1017
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-worktree/-/pandi-worktree-0.2.0.tgz",
1018
- "integrity": "sha512-+mZ1eg6Iq1Hh20En+zunnY5bqymhrEsKN3e3l4Pmfh67LShTihrFbvIz8UCr46CxzE7xukbXs6yUR8d0YNSNnA==",
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==",
1019
1035
  "license": "MIT",
1020
1036
  "peerDependencies": {
1021
1037
  "@earendil-works/pi-ai": "*",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandi-coding-agent/pi-cante",
3
- "version": "0.80.3-cante.3",
3
+ "version": "0.80.3-cante.4",
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,27 @@
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.2",
47
- "@pandi-coding-agent/pandi-ask": "0.1.1",
48
- "@pandi-coding-agent/pandi-auto-compact": "0.2.0",
49
- "@pandi-coding-agent/pandi-bg": "0.1.2",
50
- "@pandi-coding-agent/pandi-btw": "0.1.1",
51
- "@pandi-coding-agent/pandi-clear": "0.1.1",
52
- "@pandi-coding-agent/pandi-container": "0.2.0",
53
- "@pandi-coding-agent/pandi-docs": "0.1.0",
54
- "@pandi-coding-agent/pandi-doctor": "0.2.1",
55
- "@pandi-coding-agent/pandi-dynamic-workflows": "0.3.1",
56
- "@pandi-coding-agent/pandi-effort": "0.1.1",
57
- "@pandi-coding-agent/pandi-exit": "0.1.2",
58
- "@pandi-coding-agent/pandi-goal": "0.2.1",
59
- "@pandi-coding-agent/pandi-local-memory": "0.2.0",
60
- "@pandi-coding-agent/pandi-loop": "0.2.1",
61
- "@pandi-coding-agent/pandi-mdview": "0.1.1",
62
- "@pandi-coding-agent/pandi-plan": "0.1.2",
63
- "@pandi-coding-agent/pandi-rename": "0.3.0",
64
- "@pandi-coding-agent/pandi-theme": "0.1.2",
65
- "@pandi-coding-agent/pandi-typescript-lsp": "0.1.2",
66
- "@pandi-coding-agent/pandi-worktree": "0.2.0",
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.2",
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.2",
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.1",
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",
67
67
  "@silvia-odwyer/photon-node": "0.3.4",
68
68
  "chalk": "5.6.2",
69
69
  "cross-spawn": "7.0.6",