@oh-my-pi/pi-coding-agent 16.1.4 → 16.1.5
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 +6 -0
- package/dist/cli.js +2799 -2799
- package/dist/types/session/agent-session.d.ts +1 -3
- package/package.json +12 -12
- package/src/internal-urls/docs-index.generated.txt +1 -1
- package/src/session/agent-session.ts +5 -4
|
@@ -384,12 +384,10 @@ export declare class AgentSession {
|
|
|
384
384
|
get modelRegistry(): ModelRegistry;
|
|
385
385
|
get asyncJobManager(): AsyncJobManager | undefined;
|
|
386
386
|
getAgentId(): string | undefined;
|
|
387
|
-
/** Advance the tool-choice queue and return the next directive for the upcoming LLM call. */
|
|
388
|
-
nextToolChoice(): ToolChoice | undefined;
|
|
389
387
|
/**
|
|
390
388
|
* The per-turn tool-choice directive for the agent loop's `getToolChoice`. Priority:
|
|
391
389
|
* 1. a HARD forced choice from the queue (genuine forces: user-force, eager-todo, …) —
|
|
392
|
-
* consuming
|
|
390
|
+
* consuming (advances the queue generator);
|
|
393
391
|
* 2. else, when a non-forcing preview is pending, a {@link SoftToolRequirement} — a
|
|
394
392
|
* PEEK (advances/pops nothing), so the agent-loop injects the reminder once per head
|
|
395
393
|
* and escalates to a forced `resolve` only if the model declines. A compliant turn
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
4
|
-
"version": "16.1.
|
|
4
|
+
"version": "16.1.5",
|
|
5
5
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
"@agentclientprotocol/sdk": "0.25.0",
|
|
49
49
|
"@babel/parser": "^7.29.7",
|
|
50
50
|
"@mozilla/readability": "^0.6.0",
|
|
51
|
-
"@oh-my-pi/hashline": "16.1.
|
|
52
|
-
"@oh-my-pi/omp-stats": "16.1.
|
|
53
|
-
"@oh-my-pi/pi-agent-core": "16.1.
|
|
54
|
-
"@oh-my-pi/pi-ai": "16.1.
|
|
55
|
-
"@oh-my-pi/pi-catalog": "16.1.
|
|
56
|
-
"@oh-my-pi/pi-mnemopi": "16.1.
|
|
57
|
-
"@oh-my-pi/pi-natives": "16.1.
|
|
58
|
-
"@oh-my-pi/pi-tui": "16.1.
|
|
59
|
-
"@oh-my-pi/pi-utils": "16.1.
|
|
60
|
-
"@oh-my-pi/pi-wire": "16.1.
|
|
61
|
-
"@oh-my-pi/snapcompact": "16.1.
|
|
51
|
+
"@oh-my-pi/hashline": "16.1.5",
|
|
52
|
+
"@oh-my-pi/omp-stats": "16.1.5",
|
|
53
|
+
"@oh-my-pi/pi-agent-core": "16.1.5",
|
|
54
|
+
"@oh-my-pi/pi-ai": "16.1.5",
|
|
55
|
+
"@oh-my-pi/pi-catalog": "16.1.5",
|
|
56
|
+
"@oh-my-pi/pi-mnemopi": "16.1.5",
|
|
57
|
+
"@oh-my-pi/pi-natives": "16.1.5",
|
|
58
|
+
"@oh-my-pi/pi-tui": "16.1.5",
|
|
59
|
+
"@oh-my-pi/pi-utils": "16.1.5",
|
|
60
|
+
"@oh-my-pi/pi-wire": "16.1.5",
|
|
61
|
+
"@oh-my-pi/snapcompact": "16.1.5",
|
|
62
62
|
"@opentelemetry/api": "^1.9.1",
|
|
63
63
|
"@opentelemetry/context-async-hooks": "^2.7.1",
|
|
64
64
|
"@opentelemetry/exporter-trace-otlp-proto": "^0.218.0",
|