pandi-coding-agent 0.80.3-pandi.1 → 0.80.3-pandi.3

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/ask\",\n\t\"@pandi-coding-agent/auto-compact\",\n\t\"@pandi-coding-agent/bg\",\n\t\"@pandi-coding-agent/btw\",\n\t\"@pandi-coding-agent/clear\",\n\t\"@pandi-coding-agent/container\",\n\t\"@pandi-coding-agent/docs\",\n\t\"@pandi-coding-agent/doctor\",\n\t\"@pandi-coding-agent/dynamic-workflows\",\n\t\"@pandi-coding-agent/effort\",\n\t\"@pandi-coding-agent/exit\",\n\t\"@pandi-coding-agent/goal\",\n\t\"@pandi-coding-agent/local-memory\",\n\t\"@pandi-coding-agent/loop\",\n\t\"@pandi-coding-agent/mdview\",\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/plan\",\n\t\"@pandi-coding-agent/rename\",\n\t\"@pandi-coding-agent/typescript-lsp\",\n\t\"@pandi-coding-agent/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 (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"]}
@@ -15,27 +15,27 @@ 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/ask",
19
- "@pandi-coding-agent/auto-compact",
20
- "@pandi-coding-agent/bg",
21
- "@pandi-coding-agent/btw",
22
- "@pandi-coding-agent/clear",
23
- "@pandi-coding-agent/container",
24
- "@pandi-coding-agent/docs",
25
- "@pandi-coding-agent/doctor",
26
- "@pandi-coding-agent/dynamic-workflows",
27
- "@pandi-coding-agent/effort",
28
- "@pandi-coding-agent/exit",
29
- "@pandi-coding-agent/goal",
30
- "@pandi-coding-agent/local-memory",
31
- "@pandi-coding-agent/loop",
32
- "@pandi-coding-agent/mdview",
18
+ "@pandi-coding-agent/pandi-ask",
19
+ "@pandi-coding-agent/pandi-auto-compact",
20
+ "@pandi-coding-agent/pandi-bg",
21
+ "@pandi-coding-agent/pandi-btw",
22
+ "@pandi-coding-agent/pandi-clear",
23
+ "@pandi-coding-agent/pandi-container",
24
+ "@pandi-coding-agent/pandi-docs",
25
+ "@pandi-coding-agent/pandi-doctor",
26
+ "@pandi-coding-agent/pandi-dynamic-workflows",
27
+ "@pandi-coding-agent/pandi-effort",
28
+ "@pandi-coding-agent/pandi-exit",
29
+ "@pandi-coding-agent/pandi-goal",
30
+ "@pandi-coding-agent/pandi-local-memory",
31
+ "@pandi-coding-agent/pandi-loop",
32
+ "@pandi-coding-agent/pandi-mdview",
33
33
  "@pandi-coding-agent/pandi",
34
34
  "@pandi-coding-agent/pandi-theme",
35
- "@pandi-coding-agent/plan",
36
- "@pandi-coding-agent/rename",
37
- "@pandi-coding-agent/typescript-lsp",
38
- "@pandi-coding-agent/worktree",
35
+ "@pandi-coding-agent/pandi-plan",
36
+ "@pandi-coding-agent/pandi-rename",
37
+ "@pandi-coding-agent/pandi-typescript-lsp",
38
+ "@pandi-coding-agent/pandi-worktree",
39
39
  ];
40
40
  const require = createRequire(import.meta.url);
41
41
  let cachedDirs;
@@ -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,yBAAyB;IACzB,kCAAkC;IAClC,wBAAwB;IACxB,yBAAyB;IACzB,2BAA2B;IAC3B,+BAA+B;IAC/B,0BAA0B;IAC1B,4BAA4B;IAC5B,uCAAuC;IACvC,4BAA4B;IAC5B,0BAA0B;IAC1B,0BAA0B;IAC1B,kCAAkC;IAClC,0BAA0B;IAC1B,4BAA4B;IAC5B,2BAA2B;IAC3B,iCAAiC;IACjC,0BAA0B;IAC1B,4BAA4B;IAC5B,oCAAoC;IACpC,8BAA8B;CAC9B,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/ask\",\n\t\"@pandi-coding-agent/auto-compact\",\n\t\"@pandi-coding-agent/bg\",\n\t\"@pandi-coding-agent/btw\",\n\t\"@pandi-coding-agent/clear\",\n\t\"@pandi-coding-agent/container\",\n\t\"@pandi-coding-agent/docs\",\n\t\"@pandi-coding-agent/doctor\",\n\t\"@pandi-coding-agent/dynamic-workflows\",\n\t\"@pandi-coding-agent/effort\",\n\t\"@pandi-coding-agent/exit\",\n\t\"@pandi-coding-agent/goal\",\n\t\"@pandi-coding-agent/local-memory\",\n\t\"@pandi-coding-agent/loop\",\n\t\"@pandi-coding-agent/mdview\",\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/plan\",\n\t\"@pandi-coding-agent/rename\",\n\t\"@pandi-coding-agent/typescript-lsp\",\n\t\"@pandi-coding-agent/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,+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,38 +1,38 @@
1
1
  {
2
2
  "name": "pandi-coding-agent",
3
- "version": "0.80.3-pandi.1",
3
+ "version": "0.80.3-pandi.3",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pandi-coding-agent",
9
- "version": "0.80.3-pandi.1",
9
+ "version": "0.80.3-pandi.3",
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/ask": "0.1.1",
16
- "@pandi-coding-agent/auto-compact": "0.2.0",
17
- "@pandi-coding-agent/bg": "0.1.2",
18
- "@pandi-coding-agent/btw": "0.1.1",
19
- "@pandi-coding-agent/clear": "0.1.1",
20
- "@pandi-coding-agent/container": "0.2.0",
21
- "@pandi-coding-agent/docs": "0.1.0",
22
- "@pandi-coding-agent/doctor": "0.2.1",
23
- "@pandi-coding-agent/dynamic-workflows": "0.3.0",
24
- "@pandi-coding-agent/effort": "0.1.1",
25
- "@pandi-coding-agent/exit": "0.1.2",
26
- "@pandi-coding-agent/goal": "0.2.0",
27
- "@pandi-coding-agent/local-memory": "0.2.0",
28
- "@pandi-coding-agent/loop": "0.2.0",
29
- "@pandi-coding-agent/mdview": "0.1.1",
30
- "@pandi-coding-agent/pandi": "0.1.1",
31
- "@pandi-coding-agent/pandi-theme": "0.1.1",
32
- "@pandi-coding-agent/plan": "0.1.1",
33
- "@pandi-coding-agent/rename": "0.3.0",
34
- "@pandi-coding-agent/typescript-lsp": "0.1.2",
35
- "@pandi-coding-agent/worktree": "0.2.0",
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",
36
36
  "@silvia-odwyer/photon-node": "0.3.4",
37
37
  "chalk": "5.6.2",
38
38
  "cross-spawn": "7.0.6",
@@ -812,38 +812,47 @@
812
812
  "node": ">=14"
813
813
  }
814
814
  },
815
- "node_modules/@pandi-coding-agent/ask": {
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==",
819
+ "license": "MIT",
820
+ "peerDependencies": {
821
+ "@earendil-works/pi-coding-agent": "*"
822
+ }
823
+ },
824
+ "node_modules/@pandi-coding-agent/pandi-ask": {
816
825
  "version": "0.1.1",
817
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/ask/-/ask-0.1.1.tgz",
818
- "integrity": "sha512-J0+Hi9WUgHvvbzGxvqWF40TrQk0+qSVl8XUt0+nB4KVN5+8gnbz66wnlvrZSa/n4v7IvRVkRLY9zchrYkWknyA==",
826
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-ask/-/pandi-ask-0.1.1.tgz",
827
+ "integrity": "sha512-Qpq1bM5tQG0FzXtY6IgPY4J5n0ZpOwSlK06ENQ7sIJURKXeDDv5ZAqm/x28cMfUBw8AF0PgKkf/9RsCtSRnbOw==",
819
828
  "license": "MIT",
820
829
  "peerDependencies": {
821
830
  "@earendil-works/pi-coding-agent": "*",
822
831
  "typebox": "*"
823
832
  }
824
833
  },
825
- "node_modules/@pandi-coding-agent/auto-compact": {
834
+ "node_modules/@pandi-coding-agent/pandi-auto-compact": {
826
835
  "version": "0.2.0",
827
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/auto-compact/-/auto-compact-0.2.0.tgz",
828
- "integrity": "sha512-pAdHxGMbyPaXxWTLdE0qeG4A6moZRfI4qE23wW4066UE8mvd8Mn6F8RxWpxI30nRH1G2ZpptwbuKOVGnoIejwg==",
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==",
829
838
  "license": "MIT",
830
839
  "peerDependencies": {
831
840
  "@earendil-works/pi-coding-agent": "*"
832
841
  }
833
842
  },
834
- "node_modules/@pandi-coding-agent/bg": {
843
+ "node_modules/@pandi-coding-agent/pandi-bg": {
835
844
  "version": "0.1.2",
836
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/bg/-/bg-0.1.2.tgz",
837
- "integrity": "sha512-1jdnAkqG8haTQE2C0hVfFzNyzPbVvIA/4aeIZ0GZR382FufTGNedpK4Atr3MJVugKeob0vlV4zQtf0Q5PP8SAA==",
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==",
838
847
  "license": "MIT",
839
848
  "peerDependencies": {
840
849
  "@earendil-works/pi-coding-agent": "*"
841
850
  }
842
851
  },
843
- "node_modules/@pandi-coding-agent/btw": {
852
+ "node_modules/@pandi-coding-agent/pandi-btw": {
844
853
  "version": "0.1.1",
845
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/btw/-/btw-0.1.1.tgz",
846
- "integrity": "sha512-S7sSSYN06XbnAwSQUkGSz3Q5si0l5cxfWvQtAaDbzWKjIzxFiT9tJmC21TKRWqt7opc4huV3bHex9mSDhpZocA==",
854
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-btw/-/pandi-btw-0.1.1.tgz",
855
+ "integrity": "sha512-y+WMXa0d5Kv9WDVDi6G6DjvRlrTOjIauQnXDiaThSipFYO4esYuyf9UbuUr6GVIwTprvf7rz/c4JwcYQdqYHnw==",
847
856
  "license": "MIT",
848
857
  "peerDependencies": {
849
858
  "@earendil-works/pi-ai": "*",
@@ -851,19 +860,19 @@
851
860
  "@earendil-works/pi-tui": "*"
852
861
  }
853
862
  },
854
- "node_modules/@pandi-coding-agent/clear": {
863
+ "node_modules/@pandi-coding-agent/pandi-clear": {
855
864
  "version": "0.1.1",
856
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/clear/-/clear-0.1.1.tgz",
857
- "integrity": "sha512-V6kqAKgfp62xCeOHpWY4y9pJEcVq1CFwIeqh9huO6Bi9XXvHRKhIpYX5Uz3McF61mw2i8cDihc6VZYPUky60jQ==",
865
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-clear/-/pandi-clear-0.1.1.tgz",
866
+ "integrity": "sha512-tHT5dZ4WQrsd6fX7F3zfncoIw3E+ryaPQerOIyl2nkj/uzEik73fZPwY14YyCTv1fU50kfS2TPPuUqoj528G3Q==",
858
867
  "license": "MIT",
859
868
  "peerDependencies": {
860
869
  "@earendil-works/pi-coding-agent": "*"
861
870
  }
862
871
  },
863
- "node_modules/@pandi-coding-agent/container": {
872
+ "node_modules/@pandi-coding-agent/pandi-container": {
864
873
  "version": "0.2.0",
865
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/container/-/container-0.2.0.tgz",
866
- "integrity": "sha512-XApQnPLs1q5hKdVYl9PqF21h0TsBKe3EE/jjqkGf7adBSx3Q4DKsF9rHIMK4YdIuo6KR8uYl6QfBbO2qm9Zm9w==",
874
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-container/-/pandi-container-0.2.0.tgz",
875
+ "integrity": "sha512-ckIh75N9101U979cIV2kxm/O+iI54x20N8A205sUT4jD7uFSZYO3RIPwKWzFkDdcgZSzAlOsIgxCqUjKARdtpQ==",
867
876
  "license": "MIT",
868
877
  "peerDependencies": {
869
878
  "@earendil-works/pi-ai": "*",
@@ -871,10 +880,10 @@
871
880
  "typebox": "*"
872
881
  }
873
882
  },
874
- "node_modules/@pandi-coding-agent/docs": {
883
+ "node_modules/@pandi-coding-agent/pandi-docs": {
875
884
  "version": "0.1.0",
876
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/docs/-/docs-0.1.0.tgz",
877
- "integrity": "sha512-sfuH3VyLDPlADN59q3IJIg1mW/nDLBCweikaF35FVJ70VGwk2sdbIDuCYEe48cIaixOyDvqI022grAqFfvyQUA==",
885
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.0.tgz",
886
+ "integrity": "sha512-BiFdgC0pr0090vZ3h26fNz7nsvhoVyIdeHzUcTcFVqRbqvtQXF69qDQMlQTHT2zoxXDX/itmCAFymJrDbHx1lA==",
878
887
  "license": "MIT",
879
888
  "dependencies": {
880
889
  "marked": "^18.0.5"
@@ -884,19 +893,19 @@
884
893
  "typebox": "*"
885
894
  }
886
895
  },
887
- "node_modules/@pandi-coding-agent/doctor": {
896
+ "node_modules/@pandi-coding-agent/pandi-doctor": {
888
897
  "version": "0.2.1",
889
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/doctor/-/doctor-0.2.1.tgz",
890
- "integrity": "sha512-wF3Qr8qqqOAKJ/VeUf6reqedT0IJo3gBSY+I3zakJaZ3uQD8Pr9MFvWWiwka0jNM70SbmcJh3XBuw+AHgCBY6g==",
898
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-doctor/-/pandi-doctor-0.2.1.tgz",
899
+ "integrity": "sha512-IuJfvYjt/vPKLd3hPid+gzH1lYdcRzINbFNlYcPUOZ5NpMLPF4B6Ow7HhZ9KhG3WhtqzVZp1//ccT7zvg1vKrw==",
891
900
  "license": "MIT",
892
901
  "peerDependencies": {
893
902
  "@earendil-works/pi-coding-agent": "*"
894
903
  }
895
904
  },
896
- "node_modules/@pandi-coding-agent/dynamic-workflows": {
897
- "version": "0.3.0",
898
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/dynamic-workflows/-/dynamic-workflows-0.3.0.tgz",
899
- "integrity": "sha512-ywTh6Bn8SIkDaW1mCHqo5YZiVu3aHrFHq4qbEksyvaD+ReSRvZbHTpTQmKWHelui9Tqo9xC//XyFC9gx8iVOdg==",
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==",
900
909
  "license": "MIT",
901
910
  "peerDependencies": {
902
911
  "@earendil-works/pi-ai": "*",
@@ -905,106 +914,97 @@
905
914
  "typebox": "*"
906
915
  }
907
916
  },
908
- "node_modules/@pandi-coding-agent/effort": {
917
+ "node_modules/@pandi-coding-agent/pandi-effort": {
909
918
  "version": "0.1.1",
910
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/effort/-/effort-0.1.1.tgz",
911
- "integrity": "sha512-Dp7oKhYIyyMbPTkKRD29NcKuqJMzzw3TeExqpGxabkVUqBKxiXGxUoYAmgj/ZID1rD5jDf/eLi2TbNkjkPKS5A==",
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==",
912
921
  "license": "MIT",
913
922
  "peerDependencies": {
914
923
  "@earendil-works/pi-coding-agent": "*"
915
924
  }
916
925
  },
917
- "node_modules/@pandi-coding-agent/exit": {
926
+ "node_modules/@pandi-coding-agent/pandi-exit": {
918
927
  "version": "0.1.2",
919
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/exit/-/exit-0.1.2.tgz",
920
- "integrity": "sha512-0xGPEvdkkeGExi7pdvIcm857M5/O+tSkkT92wnwgnzR+zoYypUXpIDVjDU5sUndRb9fVTB4avVRyz1iqlfxXCg==",
928
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-exit/-/pandi-exit-0.1.2.tgz",
929
+ "integrity": "sha512-w7c02mje9dvZXk/zZq2LHnRyOmyauuFgQNvm2DhN35j6NrzPOByyrJr0av+e5uJtAqZGobJfEYPiAe9ufP1Nog==",
921
930
  "license": "MIT",
922
931
  "peerDependencies": {
923
932
  "@earendil-works/pi-coding-agent": "*"
924
933
  }
925
934
  },
926
- "node_modules/@pandi-coding-agent/goal": {
927
- "version": "0.2.0",
928
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/goal/-/goal-0.2.0.tgz",
929
- "integrity": "sha512-zrhYlaejGDXPfbup4eq+xxgLVae+XpSC6tHiMbYVeF+d8k4B+d7m0cMbal8djkxvXRK45UPeYvm+/wllGXDD4Q==",
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==",
930
939
  "license": "MIT",
931
940
  "peerDependencies": {
932
941
  "@earendil-works/pi-coding-agent": "*",
933
942
  "typebox": "*"
934
943
  }
935
944
  },
936
- "node_modules/@pandi-coding-agent/local-memory": {
945
+ "node_modules/@pandi-coding-agent/pandi-local-memory": {
937
946
  "version": "0.2.0",
938
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/local-memory/-/local-memory-0.2.0.tgz",
939
- "integrity": "sha512-sPtOxFJfLAXRGOCG3mY6XjfCvDaTNBARYU+VE0e6jcYjosJ+ielhVOaCGE0Oe81aXJSr41RkQDxLqoiqC+Mo5Q==",
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==",
940
949
  "license": "MIT",
941
950
  "peerDependencies": {
942
951
  "@earendil-works/pi-coding-agent": "*",
943
952
  "typebox": "*"
944
953
  }
945
954
  },
946
- "node_modules/@pandi-coding-agent/loop": {
947
- "version": "0.2.0",
948
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/loop/-/loop-0.2.0.tgz",
949
- "integrity": "sha512-LOep4EYUW8pYV8h6jOPXO9LvJ8aFER6dalwxBQ9VShmpVhJrdM7mAw24gFX9Ssl/Xd8gttwFrGF6Jb/OPFjqEg==",
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==",
950
959
  "license": "MIT",
951
960
  "peerDependencies": {
952
961
  "@earendil-works/pi-coding-agent": "*",
953
962
  "typebox": "*"
954
963
  }
955
964
  },
956
- "node_modules/@pandi-coding-agent/mdview": {
965
+ "node_modules/@pandi-coding-agent/pandi-mdview": {
957
966
  "version": "0.1.1",
958
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/mdview/-/mdview-0.1.1.tgz",
959
- "integrity": "sha512-WN695g8/gYGC/Nsr7pnAUxTJKqF5W616GQgNaL5zkTlhPHEbjDHMBub1ZgDZ4kfRKMoPpriqvheCWN1DW2ZlYg==",
967
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-mdview/-/pandi-mdview-0.1.1.tgz",
968
+ "integrity": "sha512-6qVJ0KNs9gi0RlOmSstuxw5hl97nEeISpU6ggAIJqnx6dUMYoLpzT6qW6Q9RkJ7KLgoMb3af/dA/L/Fi4OhIsg==",
960
969
  "license": "MIT",
961
970
  "peerDependencies": {
962
971
  "@earendil-works/pi-coding-agent": "*",
963
972
  "@earendil-works/pi-tui": "*"
964
973
  }
965
974
  },
966
- "node_modules/@pandi-coding-agent/pandi": {
967
- "version": "0.1.1",
968
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.1.tgz",
969
- "integrity": "sha512-0T+GfPGt/wHSvHs5w/5+GzefCfNyp459rvH5dag8Jryjf49ExS6OxT8vAu74/03KtfjHXnaOK95//X/yBZm/qA==",
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==",
970
979
  "license": "MIT",
971
980
  "peerDependencies": {
972
- "@earendil-works/pi-coding-agent": "*"
981
+ "@earendil-works/pi-coding-agent": "*",
982
+ "@earendil-works/pi-tui": "*",
983
+ "typebox": "*"
973
984
  }
974
985
  },
975
- "node_modules/@pandi-coding-agent/pandi-theme": {
976
- "version": "0.1.1",
977
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-theme/-/pandi-theme-0.1.1.tgz",
978
- "integrity": "sha512-o8z6dQrk5n2v6Kw2VXDX9lz8gbrP4QlBFMrJz9VJCZ+46a9x1jEDsUVWL//Fq/fNEaymgMGH8cmhRocjbuv2FA==",
986
+ "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==",
979
990
  "license": "MIT",
980
991
  "peerDependencies": {
981
992
  "@earendil-works/pi-coding-agent": "*"
982
993
  }
983
994
  },
984
- "node_modules/@pandi-coding-agent/plan": {
985
- "version": "0.1.1",
986
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/plan/-/plan-0.1.1.tgz",
987
- "integrity": "sha512-7ybJviVfti0mQMUcrn2wDwMqDHsanflJPOPy0mfYg6GddLhSL/egm35nGT6LWRu6PCotBPc2R45JjYkFvY19uw==",
988
- "license": "MIT",
989
- "peerDependencies": {
990
- "@earendil-works/pi-coding-agent": "*",
991
- "@earendil-works/pi-tui": "*",
992
- "typebox": "*"
993
- }
994
- },
995
- "node_modules/@pandi-coding-agent/rename": {
996
- "version": "0.3.0",
997
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/rename/-/rename-0.3.0.tgz",
998
- "integrity": "sha512-WZjmPvmdUBACehlACqFoG84BDmy8LgsagSe1QKVVgb+sZfixx4IprfF2+sIPI8JWTOX5foHvlw4Kjn48qghAuw==",
995
+ "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==",
999
999
  "license": "MIT",
1000
1000
  "peerDependencies": {
1001
1001
  "@earendil-works/pi-coding-agent": "*"
1002
1002
  }
1003
1003
  },
1004
- "node_modules/@pandi-coding-agent/typescript-lsp": {
1004
+ "node_modules/@pandi-coding-agent/pandi-typescript-lsp": {
1005
1005
  "version": "0.1.2",
1006
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/typescript-lsp/-/typescript-lsp-0.1.2.tgz",
1007
- "integrity": "sha512-TS8sbgLkVbfHRAbeUVMKSf6l/XaQbz6xJDsNLy7+D1J24ebtBBvJrDy29ITKlIr1XRk7x1mkg1pQtd17gJ2wiA==",
1006
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-typescript-lsp/-/pandi-typescript-lsp-0.1.2.tgz",
1007
+ "integrity": "sha512-1klIBPpyPi1Ss66Kb3q5wkGBg3R6mt1XeiOXQoFoK0Rnh8xO3pddbhsqDga2kRFoBrBQFHI8fCTyfrrFsshhVg==",
1008
1008
  "license": "MIT",
1009
1009
  "peerDependencies": {
1010
1010
  "@earendil-works/pi-ai": "*",
@@ -1012,10 +1012,10 @@
1012
1012
  "typebox": "*"
1013
1013
  }
1014
1014
  },
1015
- "node_modules/@pandi-coding-agent/worktree": {
1015
+ "node_modules/@pandi-coding-agent/pandi-worktree": {
1016
1016
  "version": "0.2.0",
1017
- "resolved": "https://registry.npmjs.org/@pandi-coding-agent/worktree/-/worktree-0.2.0.tgz",
1018
- "integrity": "sha512-/EsWMCGEkbO8NAud1dkT3u8P69GzByllnA8ZOUZ07dJczlFz+CFP+gUBg1os/pXBsWECTWhsy7z1Ln82gwnTcg==",
1017
+ "resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-worktree/-/pandi-worktree-0.2.0.tgz",
1018
+ "integrity": "sha512-+mZ1eg6Iq1Hh20En+zunnY5bqymhrEsKN3e3l4Pmfh67LShTihrFbvIz8UCr46CxzE7xukbXs6yUR8d0YNSNnA==",
1019
1019
  "license": "MIT",
1020
1020
  "peerDependencies": {
1021
1021
  "@earendil-works/pi-ai": "*",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pandi-coding-agent",
3
- "version": "0.80.3-pandi.1",
3
+ "version": "0.80.3-pandi.3",
4
4
  "description": "pandi: 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/ask": "0.1.1",
47
- "@pandi-coding-agent/auto-compact": "0.2.0",
48
- "@pandi-coding-agent/bg": "0.1.2",
49
- "@pandi-coding-agent/btw": "0.1.1",
50
- "@pandi-coding-agent/clear": "0.1.1",
51
- "@pandi-coding-agent/container": "0.2.0",
52
- "@pandi-coding-agent/docs": "0.1.0",
53
- "@pandi-coding-agent/doctor": "0.2.1",
54
- "@pandi-coding-agent/dynamic-workflows": "0.3.0",
55
- "@pandi-coding-agent/effort": "0.1.1",
56
- "@pandi-coding-agent/exit": "0.1.2",
57
- "@pandi-coding-agent/goal": "0.2.0",
58
- "@pandi-coding-agent/local-memory": "0.2.0",
59
- "@pandi-coding-agent/loop": "0.2.0",
60
- "@pandi-coding-agent/mdview": "0.1.1",
61
- "@pandi-coding-agent/pandi": "0.1.1",
62
- "@pandi-coding-agent/pandi-theme": "0.1.1",
63
- "@pandi-coding-agent/plan": "0.1.1",
64
- "@pandi-coding-agent/rename": "0.3.0",
65
- "@pandi-coding-agent/typescript-lsp": "0.1.2",
66
- "@pandi-coding-agent/worktree": "0.2.0",
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",
67
67
  "@silvia-odwyer/photon-node": "0.3.4",
68
68
  "chalk": "5.6.2",
69
69
  "cross-spawn": "7.0.6",