polpo-ai 0.10.5 → 0.10.7

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -222,6 +222,8 @@ Loops also have first-class governance fields:
222
222
  - `hooks`: deterministic tool actions at lifecycle points such as `loop:start`, `tool:before`, `tool:after`, and `loop:end`.
223
223
  - `loop_trace`: durable runtime events including `permission.result`, `policy.result`, `approval.required`, tool calls, transitions, and step outcomes.
224
224
 
225
+ When a permission or policy requires approval, the runtime stores a checkpoint on the loop run. Approving the gate moves the run to `approval_approved`; `POST /loop-runs/:id/resume` continues from the saved context and remaining steps without replaying completed steps.
226
+
225
227
  You can also keep loops as code and compile them to the same canonical contract:
226
228
 
227
229
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polpo-ai",
3
- "version": "0.10.5",
3
+ "version": "0.10.7",
4
4
  "description": "The open backend for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -66,10 +66,10 @@
66
66
  "nanoid": "^5.1.2",
67
67
  "yaml": "^2.7.0",
68
68
  "zod": "^4.3.6",
69
- "@polpo-ai/core": "0.10.5",
70
- "@polpo-ai/server": "0.10.5",
71
- "@polpo-ai/vault-crypto": "0.10.5",
72
- "@polpo-ai/llm": "0.10.5"
69
+ "@polpo-ai/core": "0.10.7",
70
+ "@polpo-ai/llm": "0.10.7",
71
+ "@polpo-ai/vault-crypto": "0.10.7",
72
+ "@polpo-ai/server": "0.10.7"
73
73
  },
74
74
  "optionalDependencies": {
75
75
  "better-sqlite3": "^12.6.2",
@@ -77,7 +77,7 @@
77
77
  "nodemailer": "^8.0.1",
78
78
  "playwright-core": "^1.52.0",
79
79
  "postgres": "^3.4.0",
80
- "@polpo-ai/drizzle": "0.10.5"
80
+ "@polpo-ai/drizzle": "0.10.7"
81
81
  },
82
82
  "devDependencies": {
83
83
  "@types/better-sqlite3": "^7.6.13",