pi-goal-list-loop-audit 0.35.69 → 0.35.70
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 +14 -0
- package/extensions/goal-loop-subagents.ts +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.35.70 — optional-provider boundary and recovery alignment (2026-08-26)
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
GLLA now delegates the managed subagent agent-directory lookup to pi's
|
|
7
|
+
host resolver, honoring custom `PI_CODING_AGENT_DIR` values instead of
|
|
8
|
+
assuming `~/.pi/agent`. The core extension remains independent of the
|
|
9
|
+
optional `@tintinweb/pi-subagents` provider.
|
|
10
|
+
|
|
11
|
+
### Tests
|
|
12
|
+
Added a genuine no-provider load smoke test that forbids the optional
|
|
13
|
+
provider import while loading the extension, plus custom-agent-directory
|
|
14
|
+
coverage. The existing context-overflow recovery path remains the single
|
|
15
|
+
configured fallback route; no hardcoded free model was introduced.
|
|
16
|
+
|
|
3
17
|
## 0.35.69 — metricless-loop cadence (2026-08-26)
|
|
4
18
|
|
|
5
19
|
### Added
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
// to add embedded copies here.
|
|
26
26
|
|
|
27
27
|
import * as fs from "node:fs";
|
|
28
|
-
import * as os from "node:os";
|
|
29
28
|
import * as path from "node:path";
|
|
29
|
+
import { getAgentDir } from "@earendil-works/pi-coding-agent";
|
|
30
30
|
|
|
31
31
|
/** Frontmatter marker identifying files this module wrote. Files without it
|
|
32
32
|
* are user-owned: never modified, never deleted. */
|
|
@@ -178,9 +178,11 @@ const EMBEDDED_DEFAULTS: Record<string, EmbeddedAgentDefault> = {
|
|
|
178
178
|
export const OVERRIDABLE_AGENT_TYPES = Object.keys(EMBEDDED_DEFAULTS);
|
|
179
179
|
|
|
180
180
|
/** Default global agent dir (pi-subagents reads $PI_CODING_AGENT_DIR/agents,
|
|
181
|
-
* default ~/.pi/agent/agents).
|
|
181
|
+
* default ~/.pi/agent/agents). Delegate to pi's runtime resolver so custom
|
|
182
|
+
* `PI_CODING_AGENT_DIR` and future app-specific config-dir names stay aligned
|
|
183
|
+
* with the host rather than being silently ignored by glla. */
|
|
182
184
|
export function defaultAgentDir(): string {
|
|
183
|
-
return
|
|
185
|
+
return getAgentDir();
|
|
184
186
|
}
|
|
185
187
|
|
|
186
188
|
/** Build the override .md file content. With `model`, the pin is written;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-goal-list-loop-audit",
|
|
3
|
-
"version": "0.35.
|
|
3
|
+
"version": "0.35.70",
|
|
4
4
|
"description": "Mission control for autonomous pi: interview-drafted goals, an audited task queue, and forever-loops (metric, spec, project-audit) that run for hours. A detached extension-less auditor process re-verifies every completion with raw evidence without holding the main pi turn; confirmed drafts, decision pauses and consent gates keep you in charge.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"author": "dracon",
|