@modelprofile.com/flexharness 4.1.0 → 4.1.1
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 +9 -0
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.flexharness.js +8 -667
- package/dist_ts/classes.stores.js +2 -198
- package/dist_ts/utils.harnessoptions.d.ts +21 -0
- package/dist_ts/utils.harnessoptions.js +267 -0
- package/dist_ts/utils.slashcommands.d.ts +1 -0
- package/dist_ts/utils.slashcommands.js +5 -1
- package/dist_ts/utils.storecodecs.d.ts +9 -0
- package/dist_ts/utils.storecodecs.js +201 -0
- package/dist_ts/utils.tooloutput.d.ts +2 -0
- package/dist_ts/utils.tooloutput.js +56 -0
- package/dist_ts/utils.transfer.d.ts +24 -0
- package/dist_ts/utils.transfer.js +195 -0
- package/dist_ts/utils.validation.d.ts +13 -0
- package/dist_ts/utils.validation.js +158 -0
- package/package.json +1 -1
- package/readme.hints.md +7 -0
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.flexharness.ts +47 -818
- package/ts/classes.stores.ts +10 -243
- package/ts/utils.harnessoptions.ts +372 -0
- package/ts/utils.slashcommands.ts +5 -0
- package/ts/utils.storecodecs.ts +246 -0
- package/ts/utils.tooloutput.ts +72 -0
- package/ts/utils.transfer.ts +210 -0
- package/ts/utils.validation.ts +204 -0
package/changelog.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-08-16 - 4.1.1
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- extract harness boundary utilities (harness)
|
|
8
|
+
- Move option normalization, validation, transfer bounds, tool output normalization, and store codecs into dedicated internal modules.
|
|
9
|
+
- Centralize reserved slash-command name policy and reusable store codec helpers.
|
|
10
|
+
- Update package manager metadata to pnpm 11.22.0.
|
|
11
|
+
|
|
3
12
|
## 2026-08-15 - 4.1.0
|
|
4
13
|
|
|
5
14
|
### Features
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@modelprofile.com/flexharness',
|
|
6
|
-
version: '4.1.
|
|
6
|
+
version: '4.1.1',
|
|
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=
|