@caupulican/pi-adaptative 0.81.8 → 0.81.9
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/CHANGELOG.md +2 -0
- package/docs/bug-ledger.md +3 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/docs/bug-ledger.md
CHANGED
|
@@ -129,3 +129,6 @@ updates. Sign the "Found by" column.
|
|
|
129
129
|
| 100 | medium | coding-agent / model resolver | `packages/coding-agent/src/core/model-resolver.ts:424` | R12 bare CLI model-id resolution used the first provider-order match, ignoring ambiguity and the single authenticated provider that could actually serve the requested id. | 2026-07-06 roadmap sweep | **fixed (pending commit)** — bare exact-id matches now collect all candidates, prefer a single authenticated match, and otherwise return an ambiguity error listing provider/id references. |
|
|
130
130
|
| 101 | medium | ai / oauth | `packages/ai/src/utils/oauth/index.ts:135` | R13 concurrent expired-token callers each refreshed the same OAuth provider independently, racing one-use rotating refresh tokens and risking spurious failures or orphaned credentials. | 2026-07-06 roadmap sweep | **fixed (pending commit)** — OAuth refreshes are memoized per provider while in flight, shared by concurrent callers, and cleared on settle so failures retry later. |
|
|
131
131
|
| 102 | medium | ai / openai-codex | `packages/ai/src/providers/openai-codex-responses.ts:245` | R14 OpenAI Codex SSE and WebSocket paths emitted successful `done` events even when terminal response status mapped to `error`/`aborted`, producing out-of-contract done reasons for cancelled or failed responses. | 2026-07-06 roadmap sweep | **fixed (pending commit)** — terminal Codex responses with error/aborted stop reasons now throw into the provider error path, emitting `error` events instead of `done`. |
|
|
132
|
+
| 103 | high | agent / compaction extraction | `packages/agent/src/compaction/extraction.ts` | C6 checkpoint v2 extraction needed the content contract to preserve where work is, open failures, and working set while dropping resolved/transient errors and avoiding duplicate file appendices. | 2026-07-06 compaction reliability Phase 0 | **fixed (pending commit)** — extraction now emits recency-ordered working-set facts, open error facts with supersession, deterministic fallback parity, and compaction summaries rely on the facts block instead of a post-gate file appendix. |
|
|
133
|
+
| 104 | high | agent / compaction verification | `packages/agent/src/compaction/verification.ts` | C7 checkpoint v2 prompts and gates needed to make the extraction content contract enforceable: working-set files and open errors had no dedicated recall gates, and prompt sections still carried the old Blocked/Open shape. | 2026-07-06 compaction reliability Phase 0 | **fixed (pending commit)** — prompts now use Working Set/Open Problems sections with drop instructions, verification gates working-set and open-error recall, deterministic fallback passes its own gate, and a facts-transcription invariant covers gate satisfiability. |
|
|
134
|
+
| 105 | high | agent / compaction update path | `packages/agent/src/compaction/compaction.ts:519` | C8 checkpoint v2 update prompts needed explicit merge rules so stale Working Set entries and prior Open Problems resolved by new turns do not persist across checkpoints. | 2026-07-06 compaction reliability Phase 0 | **fixed (pending commit)** — update prompts now carry explicit Open Problems resolution and Working Set refresh instructions, with regression coverage asserting the previous checkpoint and new facts reach the update request. |
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-custom-provider",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.9",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-custom-provider",
|
|
9
|
-
"version": "0.81.
|
|
9
|
+
"version": "0.81.9",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sdk": "^0.52.0"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-sandbox",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.9",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-sandbox",
|
|
9
|
-
"version": "0.81.
|
|
9
|
+
"version": "0.81.9",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@anthropic-ai/sandbox-runtime": "^0.0.26"
|
|
12
12
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-with-deps",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.9",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-with-deps",
|
|
9
|
-
"version": "0.81.
|
|
9
|
+
"version": "0.81.9",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"ms": "^2.1.3"
|
|
12
12
|
},
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caupulican/pi-adaptative",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.9",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@caupulican/pi-adaptative",
|
|
9
|
-
"version": "0.81.
|
|
9
|
+
"version": "0.81.9",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@caupulican/pi-agent-core": "^0.81.
|
|
13
|
-
"@caupulican/pi-ai": "^0.81.
|
|
14
|
-
"@caupulican/pi-tui": "^0.81.
|
|
12
|
+
"@caupulican/pi-agent-core": "^0.81.9",
|
|
13
|
+
"@caupulican/pi-ai": "^0.81.9",
|
|
14
|
+
"@caupulican/pi-tui": "^0.81.9",
|
|
15
15
|
"@ff-labs/fff-node": "0.9.6",
|
|
16
16
|
"@silvia-odwyer/photon-node": "0.3.4",
|
|
17
17
|
"chalk": "5.6.2",
|
|
@@ -475,11 +475,11 @@
|
|
|
475
475
|
}
|
|
476
476
|
},
|
|
477
477
|
"node_modules/@caupulican/pi-agent-core": {
|
|
478
|
-
"version": "0.81.
|
|
479
|
-
"resolved": "https://registry.npmjs.org/@caupulican/pi-agent-core/-/pi-agent-core-0.81.
|
|
478
|
+
"version": "0.81.9",
|
|
479
|
+
"resolved": "https://registry.npmjs.org/@caupulican/pi-agent-core/-/pi-agent-core-0.81.9.tgz",
|
|
480
480
|
"license": "MIT",
|
|
481
481
|
"dependencies": {
|
|
482
|
-
"@caupulican/pi-ai": "^0.81.
|
|
482
|
+
"@caupulican/pi-ai": "^0.81.9",
|
|
483
483
|
"ignore": "7.0.5",
|
|
484
484
|
"typebox": "1.1.38",
|
|
485
485
|
"yaml": "2.9.0"
|
|
@@ -489,8 +489,8 @@
|
|
|
489
489
|
}
|
|
490
490
|
},
|
|
491
491
|
"node_modules/@caupulican/pi-ai": {
|
|
492
|
-
"version": "0.81.
|
|
493
|
-
"resolved": "https://registry.npmjs.org/@caupulican/pi-ai/-/pi-ai-0.81.
|
|
492
|
+
"version": "0.81.9",
|
|
493
|
+
"resolved": "https://registry.npmjs.org/@caupulican/pi-ai/-/pi-ai-0.81.9.tgz",
|
|
494
494
|
"license": "MIT",
|
|
495
495
|
"dependencies": {
|
|
496
496
|
"@anthropic-ai/sdk": "0.91.1",
|
|
@@ -512,8 +512,8 @@
|
|
|
512
512
|
}
|
|
513
513
|
},
|
|
514
514
|
"node_modules/@caupulican/pi-tui": {
|
|
515
|
-
"version": "0.81.
|
|
516
|
-
"resolved": "https://registry.npmjs.org/@caupulican/pi-tui/-/pi-tui-0.81.
|
|
515
|
+
"version": "0.81.9",
|
|
516
|
+
"resolved": "https://registry.npmjs.org/@caupulican/pi-tui/-/pi-tui-0.81.9.tgz",
|
|
517
517
|
"license": "MIT",
|
|
518
518
|
"dependencies": {
|
|
519
519
|
"get-east-asian-width": "1.6.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caupulican/pi-adaptative",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.9",
|
|
4
4
|
"description": "Adaptive fork of Pi coding agent for self-evolving agent harness experiments",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
"prepublishOnly": "npm run clean && npm run build && npm run shrinkwrap"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@caupulican/pi-agent-core": "^0.81.
|
|
45
|
-
"@caupulican/pi-ai": "^0.81.
|
|
46
|
-
"@caupulican/pi-tui": "^0.81.
|
|
44
|
+
"@caupulican/pi-agent-core": "^0.81.9",
|
|
45
|
+
"@caupulican/pi-ai": "^0.81.9",
|
|
46
|
+
"@caupulican/pi-tui": "^0.81.9",
|
|
47
47
|
"@ff-labs/fff-node": "0.9.6",
|
|
48
48
|
"@silvia-odwyer/photon-node": "0.3.4",
|
|
49
49
|
"chalk": "5.6.2",
|