@systemfsoftware/omp-agent-discipline 0.0.0 → 1.0.3
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 +28229 -65
- package/package.json +21 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@systemfsoftware/omp-agent-discipline",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"author": "Ryan Lee <drdgvhbh@gmail.com>",
|
|
6
6
|
"description": "OMP agent discipline: mechanical enforcement of rules prose can't hold (xd:// retry guard, ...)",
|
|
7
7
|
"type": "module",
|
|
@@ -16,15 +16,21 @@
|
|
|
16
16
|
"@oh-my-pi/pi-coding-agent": "^17.0.5"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
+
"@effect/platform": "^0.97.0",
|
|
20
|
+
"@effect/platform-node": "^0.97.0",
|
|
21
|
+
"@effect/vitest": "0.30.0",
|
|
19
22
|
"@oh-my-pi/pi-coding-agent": "^17.0.5",
|
|
20
23
|
"@types/node": "^24",
|
|
24
|
+
"effect": "^3.22.0",
|
|
21
25
|
"rimraf": "^6.1.3",
|
|
22
26
|
"tsdown": "^0.22.9",
|
|
23
27
|
"typescript": "^7",
|
|
24
28
|
"vitest": "^4",
|
|
29
|
+
"@systemfsoftware/effect-gherkin-spec": "^0.3.4",
|
|
25
30
|
"@systemfsoftware/omp-utils": "^0.0.0",
|
|
26
|
-
"@systemfsoftware/
|
|
27
|
-
"@systemfsoftware/
|
|
31
|
+
"@systemfsoftware/oxlint-config": "^0.1.0",
|
|
32
|
+
"@systemfsoftware/tsconfig": "^1.2.3",
|
|
33
|
+
"@systemfsoftware/effect-memfs": "^1.0.4"
|
|
28
34
|
},
|
|
29
35
|
"omp": {
|
|
30
36
|
"extensions": [
|
|
@@ -32,14 +38,23 @@
|
|
|
32
38
|
]
|
|
33
39
|
},
|
|
34
40
|
"inlinedDependencies": {
|
|
41
|
+
"@effect/platform": "0.97.0",
|
|
42
|
+
"@effect/platform-node": "0.97.1",
|
|
43
|
+
"@effect/platform-node-shared": "0.50.1",
|
|
35
44
|
"@jsr/std__collections": "1.3.0",
|
|
36
|
-
"@jsr/std__toml": "1.0.11"
|
|
45
|
+
"@jsr/std__toml": "1.0.11",
|
|
46
|
+
"effect": "3.22.0"
|
|
47
|
+
},
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://github.com/systemfsoftware/systemfsoftware.git",
|
|
51
|
+
"directory": "omp/plugins/omp-agent-discipline"
|
|
37
52
|
},
|
|
38
53
|
"scripts": {
|
|
39
|
-
"clean": "rimraf dist",
|
|
40
54
|
"build": "rimraf dist && tsdown",
|
|
41
|
-
"
|
|
55
|
+
"clean": "rimraf dist",
|
|
42
56
|
"postbuild": "pnpm verify-dist",
|
|
57
|
+
"verify-dist": "node ../../scripts/check-dist-builtins.mjs --dist dist/index.js --expect crypto path fs os assert assert/strict",
|
|
43
58
|
"typecheck": "tsc --noEmit --incremental",
|
|
44
59
|
"test": "vitest run",
|
|
45
60
|
"lint": "oxlint . ${AGENT:+--format=unix --quiet}"
|