@pandi-coding-agent/pi-cante 0.80.3-cante.2 → 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.
- package/dist/core/bundled-packages.d.ts.map +1 -1
- package/dist/core/bundled-packages.js +21 -21
- package/dist/core/bundled-packages.js.map +1 -1
- package/npm-shrinkwrap.json +128 -112
- package/package.json +22 -22
|
@@ -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
|
|
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
|
|
5
|
-
*
|
|
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,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",
|
|
33
18
|
"@pandi-coding-agent/pandi",
|
|
19
|
+
"@pandi-coding-agent/pandi-ask",
|
|
20
|
+
"@pandi-coding-agent/pandi-auto-compact",
|
|
21
|
+
"@pandi-coding-agent/pandi-bg",
|
|
22
|
+
"@pandi-coding-agent/pandi-btw",
|
|
23
|
+
"@pandi-coding-agent/pandi-clear",
|
|
24
|
+
"@pandi-coding-agent/pandi-container",
|
|
25
|
+
"@pandi-coding-agent/pandi-docs",
|
|
26
|
+
"@pandi-coding-agent/pandi-doctor",
|
|
27
|
+
"@pandi-coding-agent/pandi-dynamic-workflows",
|
|
28
|
+
"@pandi-coding-agent/pandi-effort",
|
|
29
|
+
"@pandi-coding-agent/pandi-exit",
|
|
30
|
+
"@pandi-coding-agent/pandi-goal",
|
|
31
|
+
"@pandi-coding-agent/pandi-local-memory",
|
|
32
|
+
"@pandi-coding-agent/pandi-loop",
|
|
33
|
+
"@pandi-coding-agent/pandi-mdview",
|
|
34
|
+
"@pandi-coding-agent/pandi-plan",
|
|
35
|
+
"@pandi-coding-agent/pandi-rename",
|
|
34
36
|
"@pandi-coding-agent/pandi-theme",
|
|
35
|
-
"@pandi-coding-agent/
|
|
36
|
-
"@pandi-coding-agent/
|
|
37
|
-
"@pandi-coding-agent/typescript-lsp",
|
|
38
|
-
"@pandi-coding-agent/worktree",
|
|
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,
|
|
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"]}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandi-coding-agent/pi-cante",
|
|
3
|
-
"version": "0.80.3-cante.
|
|
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.
|
|
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/
|
|
16
|
-
"@pandi-coding-agent/
|
|
17
|
-
"@pandi-coding-agent/
|
|
18
|
-
"@pandi-coding-agent/
|
|
19
|
-
"@pandi-coding-agent/
|
|
20
|
-
"@pandi-coding-agent/
|
|
21
|
-
"@pandi-coding-agent/
|
|
22
|
-
"@pandi-coding-agent/
|
|
23
|
-
"@pandi-coding-agent/
|
|
24
|
-
"@pandi-coding-agent/
|
|
25
|
-
"@pandi-coding-agent/
|
|
26
|
-
"@pandi-coding-agent/
|
|
27
|
-
"@pandi-coding-agent/
|
|
28
|
-
"@pandi-coding-agent/
|
|
29
|
-
"@pandi-coding-agent/
|
|
30
|
-
"@pandi-coding-agent/pandi": "0.1.
|
|
31
|
-
"@pandi-coding-agent/pandi-
|
|
32
|
-
"@pandi-coding-agent/
|
|
33
|
-
"@pandi-coding-agent/
|
|
34
|
-
"@pandi-coding-agent/typescript-lsp": "0.1.
|
|
35
|
-
"@pandi-coding-agent/worktree": "0.2.
|
|
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",
|
|
@@ -812,38 +812,47 @@
|
|
|
812
812
|
"node": ">=14"
|
|
813
813
|
}
|
|
814
814
|
},
|
|
815
|
-
"node_modules/@pandi-coding-agent/
|
|
816
|
-
"version": "0.1.
|
|
817
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/
|
|
818
|
-
"integrity": "sha512-
|
|
815
|
+
"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==",
|
|
819
|
+
"license": "MIT",
|
|
820
|
+
"peerDependencies": {
|
|
821
|
+
"@earendil-works/pi-coding-agent": "*"
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
"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==",
|
|
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": {
|
|
826
|
-
"version": "0.2.
|
|
827
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/auto-compact/-/auto-compact-0.2.
|
|
828
|
-
"integrity": "sha512-
|
|
834
|
+
"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==",
|
|
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": {
|
|
835
|
-
"version": "0.1.
|
|
836
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/bg/-/bg-0.1.
|
|
837
|
-
"integrity": "sha512-
|
|
843
|
+
"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==",
|
|
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": {
|
|
844
|
-
"version": "0.1.
|
|
845
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/btw/-/btw-0.1.
|
|
846
|
-
"integrity": "sha512-
|
|
852
|
+
"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==",
|
|
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": {
|
|
855
|
-
"version": "0.1.
|
|
856
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/clear/-/clear-0.1.
|
|
857
|
-
"integrity": "sha512-
|
|
863
|
+
"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==",
|
|
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": {
|
|
864
|
-
"version": "0.2.
|
|
865
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/container/-/container-0.2.
|
|
866
|
-
"integrity": "sha512-
|
|
872
|
+
"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==",
|
|
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": {
|
|
875
|
-
"version": "0.1.
|
|
876
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/docs/-/docs-0.1.
|
|
877
|
-
"integrity": "sha512-
|
|
883
|
+
"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==",
|
|
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": {
|
|
888
|
-
"version": "0.2.
|
|
889
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/doctor/-/doctor-0.2.
|
|
890
|
-
"integrity": "sha512-
|
|
896
|
+
"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==",
|
|
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.
|
|
898
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/dynamic-workflows/-/dynamic-workflows-0.3.
|
|
899
|
-
"integrity": "sha512-
|
|
905
|
+
"node_modules/@pandi-coding-agent/pandi-dynamic-workflows": {
|
|
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==",
|
|
900
909
|
"license": "MIT",
|
|
901
910
|
"peerDependencies": {
|
|
902
911
|
"@earendil-works/pi-ai": "*",
|
|
@@ -905,106 +914,113 @@
|
|
|
905
914
|
"typebox": "*"
|
|
906
915
|
}
|
|
907
916
|
},
|
|
908
|
-
"node_modules/@pandi-coding-agent/effort": {
|
|
909
|
-
"version": "0.1.
|
|
910
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/effort/-/effort-0.1.
|
|
911
|
-
"integrity": "sha512-
|
|
917
|
+
"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==",
|
|
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": {
|
|
918
|
-
"version": "0.1.
|
|
919
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/exit/-/exit-0.1.
|
|
920
|
-
"integrity": "sha512-
|
|
926
|
+
"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==",
|
|
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.
|
|
928
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/goal/-/goal-0.2.
|
|
929
|
-
"integrity": "sha512-
|
|
935
|
+
"node_modules/@pandi-coding-agent/pandi-goal": {
|
|
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==",
|
|
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": {
|
|
937
|
-
"version": "0.2.
|
|
938
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/local-memory/-/local-memory-0.2.
|
|
939
|
-
"integrity": "sha512-
|
|
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==",
|
|
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.
|
|
948
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/loop/-/loop-0.2.
|
|
949
|
-
"integrity": "sha512-
|
|
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==",
|
|
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": {
|
|
957
|
-
"version": "0.1.
|
|
958
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/mdview/-/mdview-0.1.
|
|
959
|
-
"integrity": "sha512-
|
|
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==",
|
|
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.
|
|
968
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.
|
|
969
|
-
"integrity": "sha512-
|
|
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==",
|
|
970
979
|
"license": "MIT",
|
|
980
|
+
"dependencies": {
|
|
981
|
+
"@pandi-coding-agent/pandi-docs": "0.1.0"
|
|
982
|
+
},
|
|
971
983
|
"peerDependencies": {
|
|
972
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
984
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
985
|
+
"@earendil-works/pi-tui": "*",
|
|
986
|
+
"typebox": "*"
|
|
973
987
|
}
|
|
974
988
|
},
|
|
975
|
-
"node_modules/@pandi-coding-agent/pandi-
|
|
976
|
-
"version": "0.1.
|
|
977
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-
|
|
978
|
-
"integrity": "sha512-
|
|
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==",
|
|
979
993
|
"license": "MIT",
|
|
994
|
+
"dependencies": {
|
|
995
|
+
"marked": "^18.0.5"
|
|
996
|
+
},
|
|
980
997
|
"peerDependencies": {
|
|
981
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
998
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
999
|
+
"typebox": "*"
|
|
982
1000
|
}
|
|
983
1001
|
},
|
|
984
|
-
"node_modules/@pandi-coding-agent/
|
|
985
|
-
"version": "0.1
|
|
986
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/
|
|
987
|
-
"integrity": "sha512-
|
|
1002
|
+
"node_modules/@pandi-coding-agent/pandi-rename": {
|
|
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==",
|
|
988
1006
|
"license": "MIT",
|
|
989
1007
|
"peerDependencies": {
|
|
990
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
991
|
-
"@earendil-works/pi-tui": "*",
|
|
992
|
-
"typebox": "*"
|
|
1008
|
+
"@earendil-works/pi-coding-agent": "*"
|
|
993
1009
|
}
|
|
994
1010
|
},
|
|
995
|
-
"node_modules/@pandi-coding-agent/
|
|
996
|
-
"version": "0.3
|
|
997
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/
|
|
998
|
-
"integrity": "sha512-
|
|
1011
|
+
"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==",
|
|
999
1015
|
"license": "MIT",
|
|
1000
1016
|
"peerDependencies": {
|
|
1001
1017
|
"@earendil-works/pi-coding-agent": "*"
|
|
1002
1018
|
}
|
|
1003
1019
|
},
|
|
1004
|
-
"node_modules/@pandi-coding-agent/typescript-lsp": {
|
|
1005
|
-
"version": "0.1.
|
|
1006
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/typescript-lsp/-/typescript-lsp-0.1.
|
|
1007
|
-
"integrity": "sha512-
|
|
1020
|
+
"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==",
|
|
1008
1024
|
"license": "MIT",
|
|
1009
1025
|
"peerDependencies": {
|
|
1010
1026
|
"@earendil-works/pi-ai": "*",
|
|
@@ -1012,10 +1028,10 @@
|
|
|
1012
1028
|
"typebox": "*"
|
|
1013
1029
|
}
|
|
1014
1030
|
},
|
|
1015
|
-
"node_modules/@pandi-coding-agent/worktree": {
|
|
1016
|
-
"version": "0.2.
|
|
1017
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/worktree/-/worktree-0.2.
|
|
1018
|
-
"integrity": "sha512
|
|
1031
|
+
"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==",
|
|
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
|
+
"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/
|
|
47
|
-
"@pandi-coding-agent/
|
|
48
|
-
"@pandi-coding-agent/
|
|
49
|
-
"@pandi-coding-agent/
|
|
50
|
-
"@pandi-coding-agent/
|
|
51
|
-
"@pandi-coding-agent/
|
|
52
|
-
"@pandi-coding-agent/
|
|
53
|
-
"@pandi-coding-agent/
|
|
54
|
-
"@pandi-coding-agent/
|
|
55
|
-
"@pandi-coding-agent/
|
|
56
|
-
"@pandi-coding-agent/
|
|
57
|
-
"@pandi-coding-agent/
|
|
58
|
-
"@pandi-coding-agent/
|
|
59
|
-
"@pandi-coding-agent/
|
|
60
|
-
"@pandi-coding-agent/
|
|
61
|
-
"@pandi-coding-agent/pandi": "0.1.
|
|
62
|
-
"@pandi-coding-agent/pandi-
|
|
63
|
-
"@pandi-coding-agent/
|
|
64
|
-
"@pandi-coding-agent/
|
|
65
|
-
"@pandi-coding-agent/typescript-lsp": "0.1.
|
|
66
|
-
"@pandi-coding-agent/worktree": "0.2.
|
|
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",
|