@modelprofile.com/flexharness 5.3.2 → 5.4.0
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 +18 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.d.ts +1 -0
- package/dist_ts/classes.flexharness.js +109 -38
- package/dist_ts/interfaces.d.ts +5 -0
- package/dist_ts/utils.harnessoptions.d.ts +1 -0
- package/dist_ts/utils.harnessoptions.js +7 -1
- package/package.json +4 -4
- package/readme.hints.md +1 -0
- package/readme.md +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +126 -45
- package/ts/interfaces.ts +5 -0
- package/ts/utils.harnessoptions.ts +14 -0
package/changelog.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-09-02 - 5.4.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- add configurable reversion maintenance timeout (reversion)
|
|
8
|
+
- Add a top-level reversionMaintenanceTimeoutMs harness option with bounded positive safe-integer validation up to 30 minutes.
|
|
9
|
+
- Use the new timeout for turn-reversion inspection, recovery, finalization, and release maintenance signals before falling back to the legacy generation lease cleanup timeout and 30 second default.
|
|
10
|
+
- Update documentation and tests for the new timeout behavior and refreshed dependency expectations.
|
|
11
|
+
|
|
12
|
+
## 2026-09-01 - 5.3.3
|
|
13
|
+
|
|
14
|
+
### Fixes
|
|
15
|
+
|
|
16
|
+
- use provider-compatible object schemas for project tools (project-management)
|
|
17
|
+
- Flatten task, goal, and scratchpad schemas to object roots without union combinators while preserving action-specific validation.
|
|
18
|
+
- Reject invalid project tool action shapes before state mutation.
|
|
19
|
+
- Preserve valid empty scratchpad set and append operations.
|
|
20
|
+
|
|
3
21
|
## 2026-08-31 - 5.3.2
|
|
4
22
|
|
|
5
23
|
### Fixes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/flexharness',
|
|
6
|
-
version: '5.
|
|
6
|
+
version: '5.4.0',
|
|
7
7
|
description: 'Provider-neutral model-session runtime with durable history, permissions, typed events, and pluggable local or remote tool execution.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSwrQkFBK0I7SUFDckMsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHVJQUF1STtDQUNySixDQUFBIn0=
|
|
@@ -14,6 +14,7 @@ export declare class FlexHarness<TScope = unknown> {
|
|
|
14
14
|
private readonly callbackLimits;
|
|
15
15
|
private readonly promptQueueLimits;
|
|
16
16
|
private readonly reversionLimits;
|
|
17
|
+
private readonly reversionMaintenanceTimeoutMs;
|
|
17
18
|
private readonly turnReversionProvider;
|
|
18
19
|
private readonly reversionPolicy;
|
|
19
20
|
private readonly externalErrorProjector?;
|