@fro.bot/systematic 3.6.0 → 3.6.2
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/dist/index.js +3 -1
- package/dist/pi.js +4 -5
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -10734,6 +10734,7 @@ function createWorkflowGuard(options) {
|
|
|
10734
10734
|
var MARKER_OPEN = "<SYSTEMATIC_WORKFLOW_GUARD>";
|
|
10735
10735
|
var MARKER_CLOSE = "</SYSTEMATIC_WORKFLOW_GUARD>";
|
|
10736
10736
|
var MARKER_PROTOCOL_VERSION = 2;
|
|
10737
|
+
var LEGACY_MARKER_PROTOCOL_VERSION = 1;
|
|
10737
10738
|
var MAX_MARKER_LENGTH = 4096;
|
|
10738
10739
|
var MAX_MARKER_SOURCES = 8;
|
|
10739
10740
|
var MAX_CALL_ID_LENGTH = 256;
|
|
@@ -11384,8 +11385,9 @@ function parseMarkerBody(body2) {
|
|
|
11384
11385
|
return;
|
|
11385
11386
|
try {
|
|
11386
11387
|
const parsed = JSON.parse(body2);
|
|
11387
|
-
if (parsed.protocolVersion !== MARKER_PROTOCOL_VERSION)
|
|
11388
|
+
if (parsed.protocolVersion !== MARKER_PROTOCOL_VERSION && parsed.protocolVersion !== LEGACY_MARKER_PROTOCOL_VERSION) {
|
|
11388
11389
|
return;
|
|
11390
|
+
}
|
|
11389
11391
|
if (!Array.isArray(parsed.sources) || parsed.sources.length > MAX_MARKER_SOURCES) {
|
|
11390
11392
|
return;
|
|
11391
11393
|
}
|
package/dist/pi.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Type as Type2 } from "typebox";
|
|
|
6
6
|
// src/lib/agent-resolver.ts
|
|
7
7
|
import fs2 from "node:fs";
|
|
8
8
|
|
|
9
|
-
// node_modules/.bun/js-yaml@4.3.
|
|
9
|
+
// node_modules/.bun/js-yaml@4.3.1/node_modules/js-yaml/dist/js-yaml.mjs
|
|
10
10
|
function getDefaultExportFromCjs(x) {
|
|
11
11
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
12
12
|
}
|
|
@@ -910,7 +910,7 @@ function requireOmap() {
|
|
|
910
910
|
function resolveYamlOmap(data) {
|
|
911
911
|
if (data === null)
|
|
912
912
|
return true;
|
|
913
|
-
const objectKeys =
|
|
913
|
+
const objectKeys = {};
|
|
914
914
|
const object = data;
|
|
915
915
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
916
916
|
const pair = object[index];
|
|
@@ -928,10 +928,9 @@ function requireOmap() {
|
|
|
928
928
|
}
|
|
929
929
|
if (!pairHasKey)
|
|
930
930
|
return false;
|
|
931
|
-
if (
|
|
932
|
-
objectKeys.push(pairKey);
|
|
933
|
-
else
|
|
931
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
934
932
|
return false;
|
|
933
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
935
934
|
}
|
|
936
935
|
return true;
|
|
937
936
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fro.bot/systematic",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.2",
|
|
4
4
|
"description": "Compound-engineering loops for OpenCode, Pi, and Claude Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://fro.bot/systematic",
|
|
@@ -91,28 +91,28 @@
|
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@biomejs/biome": "2.5.
|
|
94
|
+
"@biomejs/biome": "2.5.7",
|
|
95
95
|
"@earendil-works/pi-coding-agent": "0.83.0",
|
|
96
|
-
"@opencode-ai/plugin": "1.18.
|
|
97
|
-
"@opencode-ai/sdk": "1.18.
|
|
96
|
+
"@opencode-ai/plugin": "1.18.16",
|
|
97
|
+
"@opencode-ai/sdk": "1.18.16",
|
|
98
98
|
"@semantic-release/exec": "7.1.0",
|
|
99
99
|
"@tintinweb/pi-subagents": "0.14.3",
|
|
100
100
|
"@types/bun": "latest",
|
|
101
101
|
"@types/js-yaml": "4.0.9",
|
|
102
|
-
"@types/node": "26.
|
|
102
|
+
"@types/node": "26.2.0",
|
|
103
103
|
"agent-browser": "0.33.1",
|
|
104
104
|
"ajv": "8.20.0",
|
|
105
105
|
"ajv-formats": "3.0.1",
|
|
106
106
|
"conventional-changelog-conventionalcommits": "10.2.1",
|
|
107
107
|
"markdownlint-cli": "0.49.1",
|
|
108
108
|
"rimraf": "6.1.3",
|
|
109
|
-
"semantic-release": "25.0.
|
|
109
|
+
"semantic-release": "25.0.9",
|
|
110
110
|
"semantic-release-export-data": "1.2.0",
|
|
111
|
-
"typebox": "1.3.
|
|
111
|
+
"typebox": "1.3.12",
|
|
112
112
|
"typescript": "7.0.2"
|
|
113
113
|
},
|
|
114
114
|
"dependencies": {
|
|
115
|
-
"js-yaml": "^4.
|
|
115
|
+
"js-yaml": "^4.3.1",
|
|
116
116
|
"jsonc-parser": "^3.3.0",
|
|
117
117
|
"tree-sitter-bash": "0.25.1",
|
|
118
118
|
"web-tree-sitter": "0.25.10",
|