@pandi-coding-agent/pi-cante 0.80.3-cante.5 → 0.80.3-cante.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundled-packages.d.ts","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAmBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,
|
|
1
|
+
{"version":3,"file":"bundled-packages.d.ts","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAmBA,6EAA6E;AAC7E,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAuBlD,CAAC;AAMF;;;;;GAKG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,EAAE,CAqBhD;AAED,gFAAgF;AAChF,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAO/D;AAED,oDAAoD;AACpD,wBAAgB,4BAA4B,IAAI,IAAI,CAEnD","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-improve-prompt\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
|
|
@@ -31,6 +31,7 @@ export const BUNDLED_PACKAGE_NAMES = [
|
|
|
31
31
|
"@pandi-coding-agent/pandi-effort",
|
|
32
32
|
"@pandi-coding-agent/pandi-exit",
|
|
33
33
|
"@pandi-coding-agent/pandi-goal",
|
|
34
|
+
"@pandi-coding-agent/pandi-improve-prompt",
|
|
34
35
|
"@pandi-coding-agent/pandi-local-memory",
|
|
35
36
|
"@pandi-coding-agent/pandi-loop",
|
|
36
37
|
"@pandi-coding-agent/pandi-mdview",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundled-packages.js","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAEhF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACvD,2BAA2B;IAC3B,+BAA+B;IAC/B,wCAAwC;IACxC,8BAA8B;IAC9B,+BAA+B;IAC/B,iCAAiC;IACjC,qCAAqC;IACrC,gCAAgC;IAChC,kCAAkC;IAClC,6CAA6C;IAC7C,kCAAkC;IAClC,gCAAgC;IAChC,gCAAgC;IAChC,wCAAwC;IACxC,gCAAgC;IAChC,kCAAkC;IAClC,gCAAgC;IAChC,kCAAkC;IAClC,iCAAiC;IACjC,0CAA0C;IAC1C,oCAAoC;CACpC,CAAC;AAEF,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;AAE/C,IAAI,UAAgC,CAAC;AAErC;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB,GAAa;IACjD,IAAI,UAAU;QAAE,OAAO,UAAU,CAAC;IAClC,IAAI,0BAA0B,CAAC,oBAAoB,CAAC,KAAK,GAAG,EAAE,CAAC;QAC9D,2EAA2E;QAC3E,gEAAgE;QAChE,OAAO,CAAC,KAAK,CAAC,GAAG,oBAAoB,mEAAmE,CAAC,CAAC;QAC1G,UAAU,GAAG,EAAE,CAAC;QAChB,OAAO,UAAU,CAAC;IACnB,CAAC;IACD,MAAM,IAAI,GAAa,EAAE,CAAC;IAC1B,KAAK,MAAM,IAAI,IAAI,qBAAqB,EAAE,CAAC;QAC1C,IAAI,CAAC;YACJ,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC;YACxD,MAAM,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7B,IAAI,UAAU,CAAC,GAAG,CAAC;gBAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACrC,CAAC;QAAC,MAAM,CAAC;YACR,yBAAuB;QACxB,CAAC;IACF,CAAC;IACD,UAAU,GAAG,IAAI,CAAC;IAClB,OAAO,IAAI,CAAC;AAAA,CACZ;AAED,gFAAgF;AAChF,MAAM,UAAU,eAAe,CAAC,GAAW,EAAsB;IAChE,IAAI,CAAC;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAsB,CAAC;QAC9F,OAAO,GAAG,CAAC,IAAI,CAAC;IACjB,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,SAAS,CAAC;IAClB,CAAC;AAAA,CACD;AAED,oDAAoD;AACpD,MAAM,UAAU,4BAA4B,GAAS;IACpD,UAAU,GAAG,SAAS,CAAC;AAAA,CACvB","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"bundled-packages.js","sourceRoot":"","sources":["../../src/core/bundled-packages.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AACH,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,MAAM,cAAc,CAAC;AAEhF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAsB;IACvD,2BAA2B;IAC3B,+BAA+B;IAC/B,wCAAwC;IACxC,8BAA8B;IAC9B,+BAA+B;IAC/B,iCAAiC;IACjC,qCAAqC;IACrC,gCAAgC;IAChC,kCAAkC;IAClC,6CAA6C;IAC7C,kCAAkC;IAClC,gCAAgC;IAChC,gCAAgC;IAChC,0CAA0C;IAC1C,wCAAwC;IACxC,gCAAgC;IAChC,kCAAkC;IAClC,gCAAgC;IAChC,kCAAkC;IAClC,iCAAiC;IACjC,0CAA0C;IAC1C,oCAAoC;CACpC,CAAC;AAEF,MAAM,OAAO,GAAG,aAAa,CAAC,OAAO,IAAI,CAAC,GAAG,CAAC,CAAC;AAE/C,IAAI,UAAgC,CAAC;AAErC;;;;;GAKG;AACH,MAAM,UAAU,qBAAqB,GAAa;IACjD,IAAI,UAAU;QAAE,OAAO,UAAU,CAAC;IAClC,IAAI,0BAA0B,CAAC,oBAAoB,CAAC,KAAK,GAAG,EAAE,CAAC;QAC9D,2EAA2E;QAC3E,gEAAgE;QAChE,OAAO,CAAC,KAAK,CAAC,GAAG,oBAAoB,mEAAmE,CAAC,CAAC;QAC1G,UAAU,GAAG,EAAE,CAAC;QAChB,OAAO,UAAU,CAAC;IACnB,CAAC;IACD,MAAM,IAAI,GAAa,EAAE,CAAC;IAC1B,KAAK,MAAM,IAAI,IAAI,qBAAqB,EAAE,CAAC;QAC1C,IAAI,CAAC;YACJ,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,GAAG,IAAI,eAAe,CAAC,CAAC;YACxD,MAAM,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;YAC7B,IAAI,UAAU,CAAC,GAAG,CAAC;gBAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACrC,CAAC;QAAC,MAAM,CAAC;YACR,yBAAuB;QACxB,CAAC;IACF,CAAC;IACD,UAAU,GAAG,IAAI,CAAC;IAClB,OAAO,IAAI,CAAC;AAAA,CACZ;AAED,gFAAgF;AAChF,MAAM,UAAU,eAAe,CAAC,GAAW,EAAsB;IAChE,IAAI,CAAC;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAsB,CAAC;QAC9F,OAAO,GAAG,CAAC,IAAI,CAAC;IACjB,CAAC;IAAC,MAAM,CAAC;QACR,OAAO,SAAS,CAAC;IAClB,CAAC;AAAA,CACD;AAED,oDAAoD;AACpD,MAAM,UAAU,4BAA4B,GAAS;IACpD,UAAU,GAAG,SAAS,CAAC;AAAA,CACvB","sourcesContent":["/**\n * pi-cante distribution: pi packages bundled with the CLI itself.\n *\n * These are regular npm dependencies of the coding-agent package, pinned by the\n * published npm-shrinkwrap.json and installed from the registry. At startup\n * they are appended to the package manager's resolution list as built-in,\n * user-scoped local package sources — they never touch the user's settings.json,\n * so a vanilla pi install sharing the same config dir is unaffected.\n *\n * Resources from these packages can still be disabled per-resource via the\n * standard enable/disable resource mechanisms, or skipped entirely with\n * PI_CANTE_BUNDLED_PACKAGES=0 (official fallback PI_BUNDLED_PACKAGES=0) — the\n * pandi-dev flow uses this to replace the bundle with a local checkout.\n */\nimport { existsSync, readFileSync } from \"fs\";\nimport { createRequire } from \"module\";\nimport { dirname, join } from \"path\";\nimport { ENV_BUNDLED_PACKAGES, getEnvWithOfficialFallback } from \"../config.ts\";\n\n/** Explicit list (no globbing) so the distribution diff stays reviewable. */\nexport const BUNDLED_PACKAGE_NAMES: readonly string[] = [\n\t\"@pandi-coding-agent/pandi\",\n\t\"@pandi-coding-agent/pandi-ask\",\n\t\"@pandi-coding-agent/pandi-auto-compact\",\n\t\"@pandi-coding-agent/pandi-bg\",\n\t\"@pandi-coding-agent/pandi-btw\",\n\t\"@pandi-coding-agent/pandi-clear\",\n\t\"@pandi-coding-agent/pandi-container\",\n\t\"@pandi-coding-agent/pandi-docs\",\n\t\"@pandi-coding-agent/pandi-doctor\",\n\t\"@pandi-coding-agent/pandi-dynamic-workflows\",\n\t\"@pandi-coding-agent/pandi-effort\",\n\t\"@pandi-coding-agent/pandi-exit\",\n\t\"@pandi-coding-agent/pandi-goal\",\n\t\"@pandi-coding-agent/pandi-improve-prompt\",\n\t\"@pandi-coding-agent/pandi-local-memory\",\n\t\"@pandi-coding-agent/pandi-loop\",\n\t\"@pandi-coding-agent/pandi-mdview\",\n\t\"@pandi-coding-agent/pandi-plan\",\n\t\"@pandi-coding-agent/pandi-rename\",\n\t\"@pandi-coding-agent/pandi-theme\",\n\t\"@pandi-coding-agent/pandi-typescript-lsp\",\n\t\"@pandi-coding-agent/pandi-worktree\",\n];\n\nconst require = createRequire(import.meta.url);\n\nlet cachedDirs: string[] | undefined;\n\n/**\n * Absolute directories of the bundled pi packages that are actually present.\n * Missing packages are skipped silently (e.g. partial installs, upstream\n * builds without the bundle) — the CLI must never fail to start because a\n * bundled extra is absent.\n */\nexport function getBundledPackageDirs(): string[] {\n\tif (cachedDirs) return cachedDirs;\n\tif (getEnvWithOfficialFallback(ENV_BUNDLED_PACKAGES) === \"0\") {\n\t\t// Deliberate all-or-nothing escape hatch (e.g. the pandi-dev flow). Say so\n\t\t// on stderr instead of silently losing every bundled extension.\n\t\tconsole.error(`${ENV_BUNDLED_PACKAGES}=0 (or PI_BUNDLED_PACKAGES=0) set: skipping all bundled packages.`);\n\t\tcachedDirs = [];\n\t\treturn cachedDirs;\n\t}\n\tconst dirs: string[] = [];\n\tfor (const name of BUNDLED_PACKAGE_NAMES) {\n\t\ttry {\n\t\t\tconst pkgJson = require.resolve(`${name}/package.json`);\n\t\t\tconst dir = dirname(pkgJson);\n\t\t\tif (existsSync(dir)) dirs.push(dir);\n\t\t} catch {\n\t\t\t// not installed — skip\n\t\t}\n\t}\n\tcachedDirs = dirs;\n\treturn dirs;\n}\n\n/** Read a package directory's package.json name (undefined when unreadable). */\nexport function readPackageName(dir: string): string | undefined {\n\ttry {\n\t\tconst pkg = JSON.parse(readFileSync(join(dir, \"package.json\"), \"utf-8\")) as { name?: string };\n\t\treturn pkg.name;\n\t} catch {\n\t\treturn undefined;\n\t}\n}\n\n/** Test hook: reset the memoized directory list. */\nexport function resetBundledPackageDirsCache(): void {\n\tcachedDirs = undefined;\n}\n"]}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandi-coding-agent/pi-cante",
|
|
3
|
-
"version": "0.80.3-cante.
|
|
3
|
+
"version": "0.80.3-cante.6",
|
|
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.6",
|
|
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.
|
|
16
|
-
"@pandi-coding-agent/pandi-ask": "0.1.
|
|
17
|
-
"@pandi-coding-agent/pandi-auto-compact": "0.2.
|
|
18
|
-
"@pandi-coding-agent/pandi-bg": "0.1.
|
|
19
|
-
"@pandi-coding-agent/pandi-btw": "0.1.
|
|
20
|
-
"@pandi-coding-agent/pandi-clear": "0.1.
|
|
21
|
-
"@pandi-coding-agent/pandi-container": "0.2.
|
|
22
|
-
"@pandi-coding-agent/pandi-docs": "0.1.
|
|
23
|
-
"@pandi-coding-agent/pandi-doctor": "0.2.
|
|
24
|
-
"@pandi-coding-agent/pandi-dynamic-workflows": "0.3.
|
|
25
|
-
"@pandi-coding-agent/pandi-effort": "0.1.
|
|
26
|
-
"@pandi-coding-agent/pandi-exit": "0.1.
|
|
27
|
-
"@pandi-coding-agent/pandi-goal": "0.2.
|
|
28
|
-
"@pandi-coding-agent/pandi-
|
|
29
|
-
"@pandi-coding-agent/pandi-
|
|
30
|
-
"@pandi-coding-agent/pandi-
|
|
31
|
-
"@pandi-coding-agent/pandi-
|
|
32
|
-
"@pandi-coding-agent/pandi-
|
|
33
|
-
"@pandi-coding-agent/pandi-
|
|
34
|
-
"@pandi-coding-agent/pandi-
|
|
35
|
-
"@pandi-coding-agent/pandi-
|
|
15
|
+
"@pandi-coding-agent/pandi": "0.1.4",
|
|
16
|
+
"@pandi-coding-agent/pandi-ask": "0.1.3",
|
|
17
|
+
"@pandi-coding-agent/pandi-auto-compact": "0.2.2",
|
|
18
|
+
"@pandi-coding-agent/pandi-bg": "0.1.4",
|
|
19
|
+
"@pandi-coding-agent/pandi-btw": "0.1.3",
|
|
20
|
+
"@pandi-coding-agent/pandi-clear": "0.1.3",
|
|
21
|
+
"@pandi-coding-agent/pandi-container": "0.2.2",
|
|
22
|
+
"@pandi-coding-agent/pandi-docs": "0.1.2",
|
|
23
|
+
"@pandi-coding-agent/pandi-doctor": "0.2.3",
|
|
24
|
+
"@pandi-coding-agent/pandi-dynamic-workflows": "0.3.4",
|
|
25
|
+
"@pandi-coding-agent/pandi-effort": "0.1.3",
|
|
26
|
+
"@pandi-coding-agent/pandi-exit": "0.1.4",
|
|
27
|
+
"@pandi-coding-agent/pandi-goal": "0.2.4",
|
|
28
|
+
"@pandi-coding-agent/pandi-improve-prompt": "0.1.0",
|
|
29
|
+
"@pandi-coding-agent/pandi-local-memory": "0.2.2",
|
|
30
|
+
"@pandi-coding-agent/pandi-loop": "0.2.3",
|
|
31
|
+
"@pandi-coding-agent/pandi-mdview": "0.1.3",
|
|
32
|
+
"@pandi-coding-agent/pandi-plan": "0.1.4",
|
|
33
|
+
"@pandi-coding-agent/pandi-rename": "0.3.3",
|
|
34
|
+
"@pandi-coding-agent/pandi-theme": "0.1.4",
|
|
35
|
+
"@pandi-coding-agent/pandi-typescript-lsp": "0.1.4",
|
|
36
|
+
"@pandi-coding-agent/pandi-worktree": "0.2.2",
|
|
36
37
|
"@silvia-odwyer/photon-node": "0.3.4",
|
|
37
38
|
"chalk": "5.6.2",
|
|
38
39
|
"cross-spawn": "7.0.6",
|
|
@@ -812,233 +813,6 @@
|
|
|
812
813
|
"node": ">=14"
|
|
813
814
|
}
|
|
814
815
|
},
|
|
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==",
|
|
828
|
-
"license": "MIT",
|
|
829
|
-
"peerDependencies": {
|
|
830
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
831
|
-
"typebox": "*"
|
|
832
|
-
}
|
|
833
|
-
},
|
|
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==",
|
|
838
|
-
"license": "MIT",
|
|
839
|
-
"peerDependencies": {
|
|
840
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
841
|
-
}
|
|
842
|
-
},
|
|
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==",
|
|
847
|
-
"license": "MIT",
|
|
848
|
-
"peerDependencies": {
|
|
849
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
850
|
-
}
|
|
851
|
-
},
|
|
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==",
|
|
856
|
-
"license": "MIT",
|
|
857
|
-
"peerDependencies": {
|
|
858
|
-
"@earendil-works/pi-ai": "*",
|
|
859
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
860
|
-
"@earendil-works/pi-tui": "*"
|
|
861
|
-
}
|
|
862
|
-
},
|
|
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==",
|
|
867
|
-
"license": "MIT",
|
|
868
|
-
"peerDependencies": {
|
|
869
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
870
|
-
}
|
|
871
|
-
},
|
|
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==",
|
|
876
|
-
"license": "MIT",
|
|
877
|
-
"peerDependencies": {
|
|
878
|
-
"@earendil-works/pi-ai": "*",
|
|
879
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
880
|
-
"typebox": "*"
|
|
881
|
-
}
|
|
882
|
-
},
|
|
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==",
|
|
887
|
-
"license": "MIT",
|
|
888
|
-
"dependencies": {
|
|
889
|
-
"marked": "^18.0.5"
|
|
890
|
-
},
|
|
891
|
-
"peerDependencies": {
|
|
892
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
893
|
-
"typebox": "*"
|
|
894
|
-
}
|
|
895
|
-
},
|
|
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==",
|
|
900
|
-
"license": "MIT",
|
|
901
|
-
"peerDependencies": {
|
|
902
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
903
|
-
}
|
|
904
|
-
},
|
|
905
|
-
"node_modules/@pandi-coding-agent/pandi-dynamic-workflows": {
|
|
906
|
-
"version": "0.3.3",
|
|
907
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.3.3.tgz",
|
|
908
|
-
"integrity": "sha512-jcqKWe7nM+5RDIFPzmSrbf/z3C2O70lEGVam7aQ1/TNgOJzjKnFBGgBOzqWAFbfF5jnXdhg3pj6MhfhgvYAyjQ==",
|
|
909
|
-
"license": "MIT",
|
|
910
|
-
"peerDependencies": {
|
|
911
|
-
"@earendil-works/pi-ai": "*",
|
|
912
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
913
|
-
"@earendil-works/pi-tui": "*",
|
|
914
|
-
"typebox": "*"
|
|
915
|
-
}
|
|
916
|
-
},
|
|
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==",
|
|
921
|
-
"license": "MIT",
|
|
922
|
-
"peerDependencies": {
|
|
923
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
924
|
-
}
|
|
925
|
-
},
|
|
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==",
|
|
930
|
-
"license": "MIT",
|
|
931
|
-
"peerDependencies": {
|
|
932
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
933
|
-
}
|
|
934
|
-
},
|
|
935
|
-
"node_modules/@pandi-coding-agent/pandi-goal": {
|
|
936
|
-
"version": "0.2.3",
|
|
937
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.3.tgz",
|
|
938
|
-
"integrity": "sha512-np0o4qxxC1/abu4cwjHlFhO3dL3d7DV5VUmcoQWipf/23hQHfCNCJgrtlJ2am/Iy8bLBy8G16AEr/fo6CstwTQ==",
|
|
939
|
-
"license": "MIT",
|
|
940
|
-
"peerDependencies": {
|
|
941
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
942
|
-
"typebox": "*"
|
|
943
|
-
}
|
|
944
|
-
},
|
|
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==",
|
|
949
|
-
"license": "MIT",
|
|
950
|
-
"peerDependencies": {
|
|
951
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
952
|
-
"typebox": "*"
|
|
953
|
-
}
|
|
954
|
-
},
|
|
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==",
|
|
959
|
-
"license": "MIT",
|
|
960
|
-
"peerDependencies": {
|
|
961
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
962
|
-
"typebox": "*"
|
|
963
|
-
}
|
|
964
|
-
},
|
|
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==",
|
|
969
|
-
"license": "MIT",
|
|
970
|
-
"peerDependencies": {
|
|
971
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
972
|
-
"@earendil-works/pi-tui": "*"
|
|
973
|
-
}
|
|
974
|
-
},
|
|
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==",
|
|
979
|
-
"license": "MIT",
|
|
980
|
-
"dependencies": {
|
|
981
|
-
"@pandi-coding-agent/pandi-docs": "0.1.0"
|
|
982
|
-
},
|
|
983
|
-
"peerDependencies": {
|
|
984
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
985
|
-
"@earendil-works/pi-tui": "*",
|
|
986
|
-
"typebox": "*"
|
|
987
|
-
}
|
|
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
|
-
},
|
|
1002
|
-
"node_modules/@pandi-coding-agent/pandi-rename": {
|
|
1003
|
-
"version": "0.3.2",
|
|
1004
|
-
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.2.tgz",
|
|
1005
|
-
"integrity": "sha512-JR0h4qTxyKeBUXQQ+2UU+4JxngPPwg3BGtV/Z04A9ej33vRfPmqowvgXtTeD9Wl6W8O9B20KfHsPNsGWvTefLQ==",
|
|
1006
|
-
"license": "MIT",
|
|
1007
|
-
"peerDependencies": {
|
|
1008
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
1009
|
-
}
|
|
1010
|
-
},
|
|
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==",
|
|
1015
|
-
"license": "MIT",
|
|
1016
|
-
"peerDependencies": {
|
|
1017
|
-
"@earendil-works/pi-coding-agent": "*"
|
|
1018
|
-
}
|
|
1019
|
-
},
|
|
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==",
|
|
1024
|
-
"license": "MIT",
|
|
1025
|
-
"peerDependencies": {
|
|
1026
|
-
"@earendil-works/pi-ai": "*",
|
|
1027
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
1028
|
-
"typebox": "*"
|
|
1029
|
-
}
|
|
1030
|
-
},
|
|
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==",
|
|
1035
|
-
"license": "MIT",
|
|
1036
|
-
"peerDependencies": {
|
|
1037
|
-
"@earendil-works/pi-ai": "*",
|
|
1038
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
1039
|
-
"typebox": "*"
|
|
1040
|
-
}
|
|
1041
|
-
},
|
|
1042
816
|
"node_modules/@protobufjs/aspromise": {
|
|
1043
817
|
"version": "1.1.2",
|
|
1044
818
|
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
@@ -1337,6 +1111,12 @@
|
|
|
1337
1111
|
"node": ">= 12"
|
|
1338
1112
|
}
|
|
1339
1113
|
},
|
|
1114
|
+
"node_modules/dayjs": {
|
|
1115
|
+
"version": "1.11.21",
|
|
1116
|
+
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.21.tgz",
|
|
1117
|
+
"integrity": "sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA==",
|
|
1118
|
+
"license": "MIT"
|
|
1119
|
+
},
|
|
1340
1120
|
"node_modules/debug": {
|
|
1341
1121
|
"version": "4.4.3",
|
|
1342
1122
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
@@ -1354,6 +1134,15 @@
|
|
|
1354
1134
|
"node": ">=6.0"
|
|
1355
1135
|
}
|
|
1356
1136
|
},
|
|
1137
|
+
"node_modules/deepmerge": {
|
|
1138
|
+
"version": "4.3.1",
|
|
1139
|
+
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
|
|
1140
|
+
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
1141
|
+
"license": "MIT",
|
|
1142
|
+
"engines": {
|
|
1143
|
+
"node": ">=0.10.0"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1357
1146
|
"node_modules/diff": {
|
|
1358
1147
|
"version": "8.0.4",
|
|
1359
1148
|
"resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
|
|
@@ -1363,6 +1152,73 @@
|
|
|
1363
1152
|
"node": ">=0.3.1"
|
|
1364
1153
|
}
|
|
1365
1154
|
},
|
|
1155
|
+
"node_modules/dom-serializer": {
|
|
1156
|
+
"version": "2.0.0",
|
|
1157
|
+
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
|
|
1158
|
+
"integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
|
|
1159
|
+
"license": "MIT",
|
|
1160
|
+
"dependencies": {
|
|
1161
|
+
"domelementtype": "^2.3.0",
|
|
1162
|
+
"domhandler": "^5.0.2",
|
|
1163
|
+
"entities": "^4.2.0"
|
|
1164
|
+
},
|
|
1165
|
+
"funding": {
|
|
1166
|
+
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"node_modules/dom-serializer/node_modules/entities": {
|
|
1170
|
+
"version": "4.5.0",
|
|
1171
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
|
1172
|
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
|
|
1173
|
+
"license": "BSD-2-Clause",
|
|
1174
|
+
"engines": {
|
|
1175
|
+
"node": ">=0.12"
|
|
1176
|
+
},
|
|
1177
|
+
"funding": {
|
|
1178
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1181
|
+
"node_modules/domelementtype": {
|
|
1182
|
+
"version": "2.3.0",
|
|
1183
|
+
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
|
|
1184
|
+
"integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
|
|
1185
|
+
"license": "BSD-2-Clause",
|
|
1186
|
+
"funding": [
|
|
1187
|
+
{
|
|
1188
|
+
"type": "github",
|
|
1189
|
+
"url": "https://github.com/sponsors/fb55"
|
|
1190
|
+
}
|
|
1191
|
+
]
|
|
1192
|
+
},
|
|
1193
|
+
"node_modules/domhandler": {
|
|
1194
|
+
"version": "5.0.3",
|
|
1195
|
+
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
|
|
1196
|
+
"integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
|
|
1197
|
+
"license": "BSD-2-Clause",
|
|
1198
|
+
"dependencies": {
|
|
1199
|
+
"domelementtype": "^2.3.0"
|
|
1200
|
+
},
|
|
1201
|
+
"engines": {
|
|
1202
|
+
"node": ">= 4"
|
|
1203
|
+
},
|
|
1204
|
+
"funding": {
|
|
1205
|
+
"url": "https://github.com/fb55/domhandler?sponsor=1"
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
"node_modules/domutils": {
|
|
1209
|
+
"version": "3.2.2",
|
|
1210
|
+
"resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
|
|
1211
|
+
"integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
|
|
1212
|
+
"license": "BSD-2-Clause",
|
|
1213
|
+
"dependencies": {
|
|
1214
|
+
"dom-serializer": "^2.0.0",
|
|
1215
|
+
"domelementtype": "^2.3.0",
|
|
1216
|
+
"domhandler": "^5.0.3"
|
|
1217
|
+
},
|
|
1218
|
+
"funding": {
|
|
1219
|
+
"url": "https://github.com/fb55/domutils?sponsor=1"
|
|
1220
|
+
}
|
|
1221
|
+
},
|
|
1366
1222
|
"node_modules/ecdsa-sig-formatter": {
|
|
1367
1223
|
"version": "1.0.11",
|
|
1368
1224
|
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
|
@@ -1372,6 +1228,30 @@
|
|
|
1372
1228
|
"safe-buffer": "^5.0.1"
|
|
1373
1229
|
}
|
|
1374
1230
|
},
|
|
1231
|
+
"node_modules/entities": {
|
|
1232
|
+
"version": "7.0.1",
|
|
1233
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
|
|
1234
|
+
"integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
|
|
1235
|
+
"license": "BSD-2-Clause",
|
|
1236
|
+
"engines": {
|
|
1237
|
+
"node": ">=0.12"
|
|
1238
|
+
},
|
|
1239
|
+
"funding": {
|
|
1240
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"node_modules/escape-string-regexp": {
|
|
1244
|
+
"version": "4.0.0",
|
|
1245
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
1246
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
1247
|
+
"license": "MIT",
|
|
1248
|
+
"engines": {
|
|
1249
|
+
"node": ">=10"
|
|
1250
|
+
},
|
|
1251
|
+
"funding": {
|
|
1252
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1375
1255
|
"node_modules/extend": {
|
|
1376
1256
|
"version": "3.0.2",
|
|
1377
1257
|
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
@@ -1560,6 +1440,25 @@
|
|
|
1560
1440
|
"node": "^20.17.0 || >=22.9.0"
|
|
1561
1441
|
}
|
|
1562
1442
|
},
|
|
1443
|
+
"node_modules/htmlparser2": {
|
|
1444
|
+
"version": "10.1.0",
|
|
1445
|
+
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz",
|
|
1446
|
+
"integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==",
|
|
1447
|
+
"license": "MIT",
|
|
1448
|
+
"dependencies": {
|
|
1449
|
+
"domelementtype": "^2.3.0",
|
|
1450
|
+
"domhandler": "^5.0.3",
|
|
1451
|
+
"domutils": "^3.2.2",
|
|
1452
|
+
"entities": "^7.0.1"
|
|
1453
|
+
},
|
|
1454
|
+
"funding": [
|
|
1455
|
+
"https://github.com/fb55/htmlparser2?sponsor=1",
|
|
1456
|
+
{
|
|
1457
|
+
"type": "github",
|
|
1458
|
+
"url": "https://github.com/sponsors/fb55"
|
|
1459
|
+
}
|
|
1460
|
+
]
|
|
1461
|
+
},
|
|
1563
1462
|
"node_modules/http-proxy-agent": {
|
|
1564
1463
|
"version": "7.0.2",
|
|
1565
1464
|
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
@@ -1595,6 +1494,15 @@
|
|
|
1595
1494
|
"node": ">= 4"
|
|
1596
1495
|
}
|
|
1597
1496
|
},
|
|
1497
|
+
"node_modules/is-plain-object": {
|
|
1498
|
+
"version": "5.0.0",
|
|
1499
|
+
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
|
|
1500
|
+
"integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
|
|
1501
|
+
"license": "MIT",
|
|
1502
|
+
"engines": {
|
|
1503
|
+
"node": ">=0.10.0"
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1598
1506
|
"node_modules/isexe": {
|
|
1599
1507
|
"version": "2.0.0",
|
|
1600
1508
|
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
@@ -1653,6 +1561,15 @@
|
|
|
1653
1561
|
"safe-buffer": "^5.0.1"
|
|
1654
1562
|
}
|
|
1655
1563
|
},
|
|
1564
|
+
"node_modules/launder": {
|
|
1565
|
+
"version": "1.7.1",
|
|
1566
|
+
"resolved": "https://registry.npmjs.org/launder/-/launder-1.7.1.tgz",
|
|
1567
|
+
"integrity": "sha512-mU6WRz5EusL9ZZuiZ5SO4Y6C0P9PAUR9iwdb6bzj4KDihm28DiHFw+/yk9DBH4f+Pv1wuzQ4e2jV3oQ7mkIqvw==",
|
|
1568
|
+
"license": "MIT",
|
|
1569
|
+
"dependencies": {
|
|
1570
|
+
"dayjs": "^1.11.7"
|
|
1571
|
+
}
|
|
1572
|
+
},
|
|
1656
1573
|
"node_modules/long": {
|
|
1657
1574
|
"version": "5.3.2",
|
|
1658
1575
|
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
@@ -1710,6 +1627,24 @@
|
|
|
1710
1627
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1711
1628
|
"license": "MIT"
|
|
1712
1629
|
},
|
|
1630
|
+
"node_modules/nanoid": {
|
|
1631
|
+
"version": "3.3.12",
|
|
1632
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
|
|
1633
|
+
"integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
|
|
1634
|
+
"license": "MIT",
|
|
1635
|
+
"bin": {
|
|
1636
|
+
"nanoid": "bin/nanoid.cjs"
|
|
1637
|
+
},
|
|
1638
|
+
"engines": {
|
|
1639
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1640
|
+
},
|
|
1641
|
+
"funding": [
|
|
1642
|
+
{
|
|
1643
|
+
"type": "github",
|
|
1644
|
+
"url": "https://github.com/sponsors/ai"
|
|
1645
|
+
}
|
|
1646
|
+
]
|
|
1647
|
+
},
|
|
1713
1648
|
"node_modules/node-domexception": {
|
|
1714
1649
|
"version": "1.0.0",
|
|
1715
1650
|
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
|
|
@@ -1788,6 +1723,12 @@
|
|
|
1788
1723
|
"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
|
|
1789
1724
|
"license": "MIT"
|
|
1790
1725
|
},
|
|
1726
|
+
"node_modules/parse-srcset": {
|
|
1727
|
+
"version": "1.0.2",
|
|
1728
|
+
"resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz",
|
|
1729
|
+
"integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==",
|
|
1730
|
+
"license": "MIT"
|
|
1731
|
+
},
|
|
1791
1732
|
"node_modules/partial-json": {
|
|
1792
1733
|
"version": "0.1.7",
|
|
1793
1734
|
"resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
|
|
@@ -1834,6 +1775,40 @@
|
|
|
1834
1775
|
"url": "https://github.com/sponsors/isaacs"
|
|
1835
1776
|
}
|
|
1836
1777
|
},
|
|
1778
|
+
"node_modules/picocolors": {
|
|
1779
|
+
"version": "1.1.1",
|
|
1780
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
1781
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
1782
|
+
"license": "ISC"
|
|
1783
|
+
},
|
|
1784
|
+
"node_modules/postcss": {
|
|
1785
|
+
"version": "8.5.15",
|
|
1786
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
|
|
1787
|
+
"integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
|
|
1788
|
+
"license": "MIT",
|
|
1789
|
+
"dependencies": {
|
|
1790
|
+
"nanoid": "^3.3.12",
|
|
1791
|
+
"picocolors": "^1.1.1",
|
|
1792
|
+
"source-map-js": "^1.2.1"
|
|
1793
|
+
},
|
|
1794
|
+
"engines": {
|
|
1795
|
+
"node": "^10 || ^12 || >=14"
|
|
1796
|
+
},
|
|
1797
|
+
"funding": [
|
|
1798
|
+
{
|
|
1799
|
+
"type": "opencollective",
|
|
1800
|
+
"url": "https://opencollective.com/postcss/"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"type": "tidelift",
|
|
1804
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"type": "github",
|
|
1808
|
+
"url": "https://github.com/sponsors/ai"
|
|
1809
|
+
}
|
|
1810
|
+
]
|
|
1811
|
+
},
|
|
1837
1812
|
"node_modules/proper-lockfile": {
|
|
1838
1813
|
"version": "4.1.2",
|
|
1839
1814
|
"resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
|
|
@@ -1906,6 +1881,21 @@
|
|
|
1906
1881
|
}
|
|
1907
1882
|
]
|
|
1908
1883
|
},
|
|
1884
|
+
"node_modules/sanitize-html": {
|
|
1885
|
+
"version": "2.17.5",
|
|
1886
|
+
"resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.17.5.tgz",
|
|
1887
|
+
"integrity": "sha512-ZmU1joGRrvoyctKIiuwUxqR6moLoU2Wk+2bMccN6f7UwhAmwYDvWziqPxRDDN2Qip62NqnIrVrT9akbL6Wretg==",
|
|
1888
|
+
"license": "MIT",
|
|
1889
|
+
"dependencies": {
|
|
1890
|
+
"deepmerge": "^4.2.2",
|
|
1891
|
+
"escape-string-regexp": "^4.0.0",
|
|
1892
|
+
"htmlparser2": "^10.1.0",
|
|
1893
|
+
"is-plain-object": "^5.0.0",
|
|
1894
|
+
"launder": "^1.7.1",
|
|
1895
|
+
"parse-srcset": "^1.0.2",
|
|
1896
|
+
"postcss": "^8.3.11"
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1909
1899
|
"node_modules/semver": {
|
|
1910
1900
|
"version": "7.8.0",
|
|
1911
1901
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
|
|
@@ -1945,6 +1935,15 @@
|
|
|
1945
1935
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
1946
1936
|
"license": "ISC"
|
|
1947
1937
|
},
|
|
1938
|
+
"node_modules/source-map-js": {
|
|
1939
|
+
"version": "1.2.1",
|
|
1940
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
1941
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
1942
|
+
"license": "BSD-3-Clause",
|
|
1943
|
+
"engines": {
|
|
1944
|
+
"node": ">=0.10.0"
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1948
1947
|
"node_modules/strnum": {
|
|
1949
1948
|
"version": "2.3.0",
|
|
1950
1949
|
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
|
|
@@ -2082,6 +2081,235 @@
|
|
|
2082
2081
|
"peerDependencies": {
|
|
2083
2082
|
"zod": "^3.25.28 || ^4"
|
|
2084
2083
|
}
|
|
2084
|
+
},
|
|
2085
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi": {
|
|
2086
|
+
"version": "0.1.4",
|
|
2087
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi/-/pandi-0.1.4.tgz",
|
|
2088
|
+
"integrity": "sha512-PLFRkuZLcMeplhxuuDN+TG/yBKWDtkV66L4e6XT/VM8cS6/5WpuWTp4GZiRcXvrGMFFCD8nnfhCdCBiqji8h4A==",
|
|
2089
|
+
"license": "MIT",
|
|
2090
|
+
"peerDependencies": {
|
|
2091
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2092
|
+
}
|
|
2093
|
+
},
|
|
2094
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-ask": {
|
|
2095
|
+
"version": "0.1.3",
|
|
2096
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-ask/-/pandi-ask-0.1.3.tgz",
|
|
2097
|
+
"integrity": "sha512-fZkRM9q+TJ6J5SgKIlpuQHQXCf74bJ09RPJ3EQdo1gV3upuhx1LWaDziXZM64tam8G1ju58pOq1aV2cHFF0iUg==",
|
|
2098
|
+
"license": "MIT",
|
|
2099
|
+
"peerDependencies": {
|
|
2100
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2101
|
+
"typebox": "^1.1.38"
|
|
2102
|
+
}
|
|
2103
|
+
},
|
|
2104
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-auto-compact": {
|
|
2105
|
+
"version": "0.2.2",
|
|
2106
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-auto-compact/-/pandi-auto-compact-0.2.2.tgz",
|
|
2107
|
+
"integrity": "sha512-H5QZk8IGeDF6cC43WW00NkjHbmLk5IaHiARLJSN+RZVW0f+roenTWf7+l1lVJrh4pbv+GVBV8Y8xGSMh5luhxA==",
|
|
2108
|
+
"license": "MIT",
|
|
2109
|
+
"peerDependencies": {
|
|
2110
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-bg": {
|
|
2114
|
+
"version": "0.1.4",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-bg/-/pandi-bg-0.1.4.tgz",
|
|
2116
|
+
"integrity": "sha512-Fx8ZRiHp1s6mjmJ6zuRqLymBxtFvHaedOqr4kigkSb2xI8JINm4Q4axTL96Lc4KsDelKY8rCDOAD/iIBTTnXHA==",
|
|
2117
|
+
"license": "MIT",
|
|
2118
|
+
"peerDependencies": {
|
|
2119
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-btw": {
|
|
2123
|
+
"version": "0.1.3",
|
|
2124
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-btw/-/pandi-btw-0.1.3.tgz",
|
|
2125
|
+
"integrity": "sha512-GT6U46wEi6MLI1jKXBihRWrObcKf7kqsUGyiAvfj9Ysn0aPTZl/UDCRzuABh7ELksywc9SOgcT4RifwPjYNl7g==",
|
|
2126
|
+
"license": "MIT",
|
|
2127
|
+
"peerDependencies": {
|
|
2128
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2129
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2130
|
+
"@earendil-works/pi-tui": "^0.80.3"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-clear": {
|
|
2134
|
+
"version": "0.1.3",
|
|
2135
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-clear/-/pandi-clear-0.1.3.tgz",
|
|
2136
|
+
"integrity": "sha512-11EPQ+zZn2FglbaRleDftKAcGGRh30IpZK/qaDFGKprQjFniQWPH5E7QEURx0mvRG6zHmS43EwcO1BiCx2Lm+w==",
|
|
2137
|
+
"license": "MIT",
|
|
2138
|
+
"peerDependencies": {
|
|
2139
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-container": {
|
|
2143
|
+
"version": "0.2.2",
|
|
2144
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-container/-/pandi-container-0.2.2.tgz",
|
|
2145
|
+
"integrity": "sha512-g0PrGIgbVYwQRVy2UuqYxf9Q/YD8E4B5FpVMYLUs9SeazgMLXIV5mY4Wa2h0IoxgqQ/yBkytp3WR7uIQZ0V6MQ==",
|
|
2146
|
+
"license": "MIT",
|
|
2147
|
+
"peerDependencies": {
|
|
2148
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2149
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2150
|
+
"typebox": "^1.1.38"
|
|
2151
|
+
}
|
|
2152
|
+
},
|
|
2153
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-docs": {
|
|
2154
|
+
"version": "0.1.2",
|
|
2155
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-docs/-/pandi-docs-0.1.2.tgz",
|
|
2156
|
+
"integrity": "sha512-wQdf2mcZHSbWDAI6jWTkxKI7ErZhUAMiqTvdTYOznRbx1ra0QTlK7DU6+Z2LPOIWM0mTUb28Rs9WmnuO1ItLJg==",
|
|
2157
|
+
"license": "MIT",
|
|
2158
|
+
"dependencies": {
|
|
2159
|
+
"marked": "^18.0.5"
|
|
2160
|
+
},
|
|
2161
|
+
"peerDependencies": {
|
|
2162
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2163
|
+
"typebox": "^1.1.38"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-doctor": {
|
|
2167
|
+
"version": "0.2.3",
|
|
2168
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-doctor/-/pandi-doctor-0.2.3.tgz",
|
|
2169
|
+
"integrity": "sha512-7xqIIjl9LdcMKTzin459wJJxwTViGM8hltJJ8sEgPjxvz23xLvswn7ma0HFlJBjALj5QjmXj4tWzwWYIaUBMhQ==",
|
|
2170
|
+
"license": "MIT",
|
|
2171
|
+
"peerDependencies": {
|
|
2172
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
2175
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-dynamic-workflows": {
|
|
2176
|
+
"version": "0.3.4",
|
|
2177
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-dynamic-workflows/-/pandi-dynamic-workflows-0.3.4.tgz",
|
|
2178
|
+
"integrity": "sha512-yZ6Lv4yQ1Mji79AecVib0FudIlRi2BCqeNRMc+qRY83LutVVOdGOHhnTnjxGwvtJsxbtxDQqDFrWiRpfCa+1rQ==",
|
|
2179
|
+
"license": "MIT",
|
|
2180
|
+
"dependencies": {
|
|
2181
|
+
"marked": "^18.0.5",
|
|
2182
|
+
"sanitize-html": "^2.17.5"
|
|
2183
|
+
},
|
|
2184
|
+
"peerDependencies": {
|
|
2185
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2186
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2187
|
+
"@earendil-works/pi-tui": "^0.80.3",
|
|
2188
|
+
"typebox": "^1.1.38"
|
|
2189
|
+
}
|
|
2190
|
+
},
|
|
2191
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-effort": {
|
|
2192
|
+
"version": "0.1.3",
|
|
2193
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-effort/-/pandi-effort-0.1.3.tgz",
|
|
2194
|
+
"integrity": "sha512-d754erzvrL67Nvqlgt9LRJm95VAw0pNprTusVlkqjL7PaDz52l5et0nceOyPGuv9gmccOaK9Cle/fjsOlSSs8A==",
|
|
2195
|
+
"license": "MIT",
|
|
2196
|
+
"peerDependencies": {
|
|
2197
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-exit": {
|
|
2201
|
+
"version": "0.1.4",
|
|
2202
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-exit/-/pandi-exit-0.1.4.tgz",
|
|
2203
|
+
"integrity": "sha512-CudPNV8n2yrW5oKL/Qr3Gi5sSWvZA+DV+leWfSuNMpjQt2w4BbxHnyBXCVzTa8Au9o5S0JGgKrHEgpvz/s3Pkg==",
|
|
2204
|
+
"license": "MIT",
|
|
2205
|
+
"peerDependencies": {
|
|
2206
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2207
|
+
}
|
|
2208
|
+
},
|
|
2209
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-goal": {
|
|
2210
|
+
"version": "0.2.4",
|
|
2211
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-goal/-/pandi-goal-0.2.4.tgz",
|
|
2212
|
+
"integrity": "sha512-AMi0bz3GjV8K4X0S29OdUod7o8RBmMLSL+VbmxxmB2D/6cUMCYb4Jc9Chirs1Bijrh8NhDiF/aF5dBS6SSggNA==",
|
|
2213
|
+
"license": "MIT",
|
|
2214
|
+
"peerDependencies": {
|
|
2215
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2216
|
+
"typebox": "^1.1.38"
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-improve-prompt": {
|
|
2220
|
+
"version": "0.1.0",
|
|
2221
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-improve-prompt/-/pandi-improve-prompt-0.1.0.tgz",
|
|
2222
|
+
"integrity": "sha512-KLyn4iNvgDKpSpSfVCycve1XMyZjZdgIiEeuVns+U5vpnmGMkVZDoTOHUelYrd/BDm4KQL8A0glXedky4Fc0XA==",
|
|
2223
|
+
"license": "MIT",
|
|
2224
|
+
"peerDependencies": {
|
|
2225
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2226
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2227
|
+
"@earendil-works/pi-tui": "^0.80.3"
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-local-memory": {
|
|
2231
|
+
"version": "0.2.2",
|
|
2232
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-local-memory/-/pandi-local-memory-0.2.2.tgz",
|
|
2233
|
+
"integrity": "sha512-/d83W4gqcNPLTxyvD21GW6i/EWbQ7FMnTp5Hq9Z4s3FuyeOkujMxI88GGjsDzMCZKTmM+1/4xaRldyvu1yI9nw==",
|
|
2234
|
+
"license": "MIT",
|
|
2235
|
+
"peerDependencies": {
|
|
2236
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2237
|
+
"typebox": "^1.1.38"
|
|
2238
|
+
}
|
|
2239
|
+
},
|
|
2240
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-loop": {
|
|
2241
|
+
"version": "0.2.3",
|
|
2242
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-loop/-/pandi-loop-0.2.3.tgz",
|
|
2243
|
+
"integrity": "sha512-OHgqiGQ9Q3ZsKLyNNZrt6Y/GoTUZE4g1Afj6zWqVyO67EVKIaBDz6CJYEStBB601hOa0ehZA1IfZOeG1OYr5wQ==",
|
|
2244
|
+
"license": "MIT",
|
|
2245
|
+
"peerDependencies": {
|
|
2246
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2247
|
+
"typebox": "^1.1.38"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-mdview": {
|
|
2251
|
+
"version": "0.1.3",
|
|
2252
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-mdview/-/pandi-mdview-0.1.3.tgz",
|
|
2253
|
+
"integrity": "sha512-A6vx1FYzzZPoSNqbxLtX2P2biCF7jCLVrFGR6sYNk4LtKg81UnGIyAI539HnrgsL/An7cRUVpSFS7bWPKj+J6A==",
|
|
2254
|
+
"license": "MIT",
|
|
2255
|
+
"peerDependencies": {
|
|
2256
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2257
|
+
"@earendil-works/pi-tui": "^0.80.3"
|
|
2258
|
+
}
|
|
2259
|
+
},
|
|
2260
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-plan": {
|
|
2261
|
+
"version": "0.1.4",
|
|
2262
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-plan/-/pandi-plan-0.1.4.tgz",
|
|
2263
|
+
"integrity": "sha512-qVDRY6Hcqcjy20stBwggVgKO4Glhf1dKnbN16KfWglCqRbgb1jt3T359VxRj/uvLBkhApwyRfR00pqXWFGicqQ==",
|
|
2264
|
+
"license": "MIT",
|
|
2265
|
+
"dependencies": {
|
|
2266
|
+
"@pandi-coding-agent/pandi-docs": "0.1.2"
|
|
2267
|
+
},
|
|
2268
|
+
"peerDependencies": {
|
|
2269
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2270
|
+
"@earendil-works/pi-tui": "^0.80.3",
|
|
2271
|
+
"typebox": "^1.1.38"
|
|
2272
|
+
}
|
|
2273
|
+
},
|
|
2274
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-rename": {
|
|
2275
|
+
"version": "0.3.3",
|
|
2276
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-rename/-/pandi-rename-0.3.3.tgz",
|
|
2277
|
+
"integrity": "sha512-l91xQjTgTWfljnye1EJj0os9L7A329jBRloMkI2cszUDssgeCgEZfXyqyWXmjMvdCPri7L3rEoMhvZ+zq2z6EQ==",
|
|
2278
|
+
"license": "MIT",
|
|
2279
|
+
"peerDependencies": {
|
|
2280
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2281
|
+
}
|
|
2282
|
+
},
|
|
2283
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-theme": {
|
|
2284
|
+
"version": "0.1.4",
|
|
2285
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-theme/-/pandi-theme-0.1.4.tgz",
|
|
2286
|
+
"integrity": "sha512-I+YH/hT16lRLhmC5txdfWWx0kuF22gYe6E1SQMNcBHigEHtgIrRkG+VFl/oFVSM3hwCZuk3bXTvAgWGLLxoy7A==",
|
|
2287
|
+
"license": "MIT",
|
|
2288
|
+
"peerDependencies": {
|
|
2289
|
+
"@earendil-works/pi-coding-agent": "^0.80.3"
|
|
2290
|
+
}
|
|
2291
|
+
},
|
|
2292
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-typescript-lsp": {
|
|
2293
|
+
"version": "0.1.4",
|
|
2294
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-typescript-lsp/-/pandi-typescript-lsp-0.1.4.tgz",
|
|
2295
|
+
"integrity": "sha512-nhJzvz97d37SmMFYEBry/Rmi/8kmL6/65qa3z+2G8MGBYslKZvLWlkNolNFJZIg1hBfyVWhW7cOrE07RU5N8QQ==",
|
|
2296
|
+
"license": "MIT",
|
|
2297
|
+
"peerDependencies": {
|
|
2298
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2299
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2300
|
+
"typebox": "^1.1.38"
|
|
2301
|
+
}
|
|
2302
|
+
},
|
|
2303
|
+
"packages/coding-agent/node_modules/@pandi-coding-agent/pandi-worktree": {
|
|
2304
|
+
"version": "0.2.2",
|
|
2305
|
+
"resolved": "https://registry.npmjs.org/@pandi-coding-agent/pandi-worktree/-/pandi-worktree-0.2.2.tgz",
|
|
2306
|
+
"integrity": "sha512-ekHsVcmLDKzXLOJpQLn2qA0RpJUguY3ytXKgJtqqcH0I7V2+A1HooCzsAWNZfTLYHcUfL7o6HCGazx1110UqJw==",
|
|
2307
|
+
"license": "MIT",
|
|
2308
|
+
"peerDependencies": {
|
|
2309
|
+
"@earendil-works/pi-ai": "^0.80.3",
|
|
2310
|
+
"@earendil-works/pi-coding-agent": "^0.80.3",
|
|
2311
|
+
"typebox": "^1.1.38"
|
|
2312
|
+
}
|
|
2085
2313
|
}
|
|
2086
2314
|
}
|
|
2087
2315
|
}
|
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.6",
|
|
4
4
|
"description": "pi-cante: a pi coding agent distribution bundling the pandi extension pack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -43,27 +43,28 @@
|
|
|
43
43
|
"@earendil-works/pi-agent-core": "^0.80.3",
|
|
44
44
|
"@earendil-works/pi-ai": "^0.80.3",
|
|
45
45
|
"@earendil-works/pi-tui": "^0.80.3",
|
|
46
|
-
"@pandi-coding-agent/pandi": "0.1.
|
|
47
|
-
"@pandi-coding-agent/pandi-ask": "0.1.
|
|
48
|
-
"@pandi-coding-agent/pandi-auto-compact": "0.2.
|
|
49
|
-
"@pandi-coding-agent/pandi-bg": "0.1.
|
|
50
|
-
"@pandi-coding-agent/pandi-btw": "0.1.
|
|
51
|
-
"@pandi-coding-agent/pandi-clear": "0.1.
|
|
52
|
-
"@pandi-coding-agent/pandi-container": "0.2.
|
|
53
|
-
"@pandi-coding-agent/pandi-docs": "0.1.
|
|
54
|
-
"@pandi-coding-agent/pandi-doctor": "0.2.
|
|
55
|
-
"@pandi-coding-agent/pandi-dynamic-workflows": "0.3.
|
|
56
|
-
"@pandi-coding-agent/pandi-effort": "0.1.
|
|
57
|
-
"@pandi-coding-agent/pandi-exit": "0.1.
|
|
58
|
-
"@pandi-coding-agent/pandi-goal": "0.2.
|
|
59
|
-
"@pandi-coding-agent/pandi-
|
|
60
|
-
"@pandi-coding-agent/pandi-
|
|
61
|
-
"@pandi-coding-agent/pandi-
|
|
62
|
-
"@pandi-coding-agent/pandi-
|
|
63
|
-
"@pandi-coding-agent/pandi-
|
|
64
|
-
"@pandi-coding-agent/pandi-
|
|
65
|
-
"@pandi-coding-agent/pandi-
|
|
66
|
-
"@pandi-coding-agent/pandi-
|
|
46
|
+
"@pandi-coding-agent/pandi": "0.1.4",
|
|
47
|
+
"@pandi-coding-agent/pandi-ask": "0.1.3",
|
|
48
|
+
"@pandi-coding-agent/pandi-auto-compact": "0.2.2",
|
|
49
|
+
"@pandi-coding-agent/pandi-bg": "0.1.4",
|
|
50
|
+
"@pandi-coding-agent/pandi-btw": "0.1.3",
|
|
51
|
+
"@pandi-coding-agent/pandi-clear": "0.1.3",
|
|
52
|
+
"@pandi-coding-agent/pandi-container": "0.2.2",
|
|
53
|
+
"@pandi-coding-agent/pandi-docs": "0.1.2",
|
|
54
|
+
"@pandi-coding-agent/pandi-doctor": "0.2.3",
|
|
55
|
+
"@pandi-coding-agent/pandi-dynamic-workflows": "0.3.4",
|
|
56
|
+
"@pandi-coding-agent/pandi-effort": "0.1.3",
|
|
57
|
+
"@pandi-coding-agent/pandi-exit": "0.1.4",
|
|
58
|
+
"@pandi-coding-agent/pandi-goal": "0.2.4",
|
|
59
|
+
"@pandi-coding-agent/pandi-improve-prompt": "0.1.0",
|
|
60
|
+
"@pandi-coding-agent/pandi-local-memory": "0.2.2",
|
|
61
|
+
"@pandi-coding-agent/pandi-loop": "0.2.3",
|
|
62
|
+
"@pandi-coding-agent/pandi-mdview": "0.1.3",
|
|
63
|
+
"@pandi-coding-agent/pandi-plan": "0.1.4",
|
|
64
|
+
"@pandi-coding-agent/pandi-rename": "0.3.3",
|
|
65
|
+
"@pandi-coding-agent/pandi-theme": "0.1.4",
|
|
66
|
+
"@pandi-coding-agent/pandi-typescript-lsp": "0.1.4",
|
|
67
|
+
"@pandi-coding-agent/pandi-worktree": "0.2.2",
|
|
67
68
|
"@silvia-odwyer/photon-node": "0.3.4",
|
|
68
69
|
"chalk": "5.6.2",
|
|
69
70
|
"cross-spawn": "7.0.6",
|