@arnilo/prism-coding-agent 0.0.11 → 0.0.13
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/dist/ask-user-decision.d.ts +1 -1
- package/dist/ask-user-decision.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.13] - 2026-07-24
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Released with exact 0.0.13 graph.
|
|
8
|
+
|
|
2
9
|
## [Unreleased]
|
|
3
10
|
|
|
11
|
+
## [0.0.12] - 2026-07-22
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Released with exact 0.0.12 graph.
|
|
16
|
+
|
|
17
|
+
|
|
4
18
|
## [0.0.11] - 2026-07-22
|
|
5
19
|
|
|
6
20
|
### Docs
|
|
@@ -151,7 +151,7 @@ export declare function createAskUserDecisionResumeValidator(limits?: Pick<Resol
|
|
|
151
151
|
/**
|
|
152
152
|
* Thin agent-path adapter: same validation as workflow resume, for hosts that
|
|
153
153
|
* persist `AskUserDecisionSuspendData` outside `AgentRunInterruption` (core kinds
|
|
154
|
-
* unchanged in 0.0.
|
|
154
|
+
* unchanged in 0.0.12). Call after operator supplies an answer.
|
|
155
155
|
*/
|
|
156
156
|
export declare function validateAskUserDecisionAgentResume(input: {
|
|
157
157
|
readonly request: AskUserDecisionSuspendData;
|
|
@@ -461,7 +461,7 @@ export function createAskUserDecisionResumeValidator(limits) {
|
|
|
461
461
|
/**
|
|
462
462
|
* Thin agent-path adapter: same validation as workflow resume, for hosts that
|
|
463
463
|
* persist `AskUserDecisionSuspendData` outside `AgentRunInterruption` (core kinds
|
|
464
|
-
* unchanged in 0.0.
|
|
464
|
+
* unchanged in 0.0.12). Call after operator supplies an answer.
|
|
465
465
|
*/
|
|
466
466
|
export function validateAskUserDecisionAgentResume(input) {
|
|
467
467
|
return validateAskUserDecisionResume(input.request, input.answer, input.maxCustomTextBytes === undefined
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arnilo/prism-coding-agent",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "Optional coding-agent tools (shell, read, write, edit, repo_list, repo_search, opt-in Git/check/ask-user-decision, and durable plan/checkpoint helpers) package for Prism.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"diff": "^9.0.0"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@arnilo/prism": "0.0.
|
|
32
|
-
"@arnilo/prism-workflows": "0.0.
|
|
31
|
+
"@arnilo/prism": "0.0.13",
|
|
32
|
+
"@arnilo/prism-workflows": "0.0.13"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@arnilo/prism": "file:../..",
|