@dzhechkov/harness-core 0.5.3 → 0.5.4

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1 -1
  3. package/package.json +18 -18
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 dzhechko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -206,7 +206,7 @@ pause or the file deliverable.
206
206
 
207
207
  ## Status
208
208
 
209
- `0.5.3` — published. **BEHAVIORAL:** `decideDesignFanResume` takes the design fan's LIVE results, not
209
+ `0.5.4` — published (0.5.3 is deprecated: it was pushed with `npm publish`, which does not expand `workspace:*`, so it cannot be installed). **BEHAVIORAL:** `decideDesignFanResume` takes the design fan's LIVE results, not
210
210
  the start-of-run checkpoint snapshot, and gained `artifacts` + `postRunListing`; `CKPT_SCHEMA_VERSION`
211
211
  is `fa-ckpt-3`, so every existing `.fa-state/checkpoints.jsonl` reads as no checkpoint and each
212
212
  in-flight feature re-runs router+design+plan once. Adds the per-sibling design checkpoint above and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/harness-core",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Shared harness logic - skill loading, additive apply, and the init/sync/verify/doctor operations.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -26,28 +26,21 @@
26
26
  ".dz-manifest.json",
27
27
  "sbom.json"
28
28
  ],
29
- "scripts": {
30
- "build": "tsc -p tsconfig.json",
31
- "test": "vitest run",
32
- "test:watch": "vitest",
33
- "typecheck": "tsc -p tsconfig.json --noEmit",
34
- "lint": "tsc -p tsconfig.json --noEmit"
35
- },
36
29
  "dependencies": {
37
- "@dzhechkov/adapter-agents-md": "workspace:*",
38
30
  "@dzhechkov/adapter-claude": "^0.2.0",
39
31
  "@dzhechkov/adapter-codex": "^0.2.0",
40
- "@dzhechkov/adapter-copilot": "workspace:*",
41
- "@dzhechkov/adapter-cursor": "workspace:*",
42
- "@dzhechkov/adapter-gemini": "workspace:*",
43
32
  "@dzhechkov/adapter-hermes": "^0.2.0",
44
33
  "@dzhechkov/adapter-openclaude": "^0.1.0",
45
34
  "@dzhechkov/adapter-opencode": "^0.2.0",
46
- "@dzhechkov/adapter-windsurf": "workspace:*",
47
- "@dzhechkov/core": "workspace:*",
48
- "@dzhechkov/memory": "workspace:*",
49
35
  "proper-lockfile": "^4.1.2",
50
- "yaml": "^2.0.0"
36
+ "yaml": "^2.0.0",
37
+ "@dzhechkov/adapter-copilot": "0.1.1",
38
+ "@dzhechkov/adapter-cursor": "0.1.1",
39
+ "@dzhechkov/adapter-gemini": "0.1.1",
40
+ "@dzhechkov/adapter-windsurf": "0.1.1",
41
+ "@dzhechkov/memory": "0.2.9",
42
+ "@dzhechkov/core": "0.2.15",
43
+ "@dzhechkov/adapter-agents-md": "0.1.1"
51
44
  },
52
45
  "peerDependenciesMeta": {
53
46
  "@ruvector/rvf": {
@@ -72,5 +65,12 @@
72
65
  "url": "https://github.com/djd1m/dz-harness-hub.git",
73
66
  "directory": "packages/@dzhechkov/harness-core"
74
67
  },
75
- "homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-core#readme"
76
- }
68
+ "homepage": "https://github.com/djd1m/dz-harness-hub/tree/main/packages/@dzhechkov/harness-core#readme",
69
+ "scripts": {
70
+ "build": "tsc -p tsconfig.json",
71
+ "test": "vitest run",
72
+ "test:watch": "vitest",
73
+ "typecheck": "tsc -p tsconfig.json --noEmit",
74
+ "lint": "tsc -p tsconfig.json --noEmit"
75
+ }
76
+ }