@fro.bot/systematic 3.5.9 → 3.6.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.
Files changed (2) hide show
  1. package/dist/pi.js +4 -5
  2. package/package.json +8 -8
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.0/node_modules/js-yaml/dist/js-yaml.mjs
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 (objectKeys.indexOf(pairKey) === -1)
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.5.9",
3
+ "version": "3.6.1",
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.6",
94
+ "@biomejs/biome": "2.5.7",
95
95
  "@earendil-works/pi-coding-agent": "0.83.0",
96
- "@opencode-ai/plugin": "1.18.10",
97
- "@opencode-ai/sdk": "1.18.10",
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.1.2",
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.8",
109
+ "semantic-release": "25.0.9",
110
110
  "semantic-release-export-data": "1.2.0",
111
- "typebox": "1.3.9",
111
+ "typebox": "1.3.12",
112
112
  "typescript": "7.0.2"
113
113
  },
114
114
  "dependencies": {
115
- "js-yaml": "^4.1.1",
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",