@skill-harness/core 0.1.0 → 0.1.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/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # @skill-harness/core
2
+
3
+ The engine behind [skill-harness](https://github.com/mojomanyana/skill-harness):
4
+ spec parsing, discovery, run orchestration, LLM-judge grading, scoring, results.
5
+
6
+ Internal API — use the `skill-harness` CLI. See the repo for docs.
7
+
8
+ ESM, Node ≥ 20.
package/dist/workspace.js CHANGED
@@ -7,7 +7,7 @@ const GIT_TIMEOUT_MS = 30_000;
7
7
  function gitBaseline(cwd) {
8
8
  execFileSync("git", ["init", "-q"], { cwd, timeout: GIT_TIMEOUT_MS });
9
9
  execFileSync("git", ["add", "-A"], { cwd, timeout: GIT_TIMEOUT_MS });
10
- execFileSync("git", ["-c", "user.email=sc@local", "-c", "user.name=skill-check", "commit", "-q", "--allow-empty", "-m", "baseline"], { cwd, timeout: GIT_TIMEOUT_MS });
10
+ execFileSync("git", ["-c", "user.email=sh@local", "-c", "user.name=skill-harness", "commit", "-q", "--allow-empty", "-m", "baseline"], { cwd, timeout: GIT_TIMEOUT_MS });
11
11
  }
12
12
  /**
13
13
  * Create an isolated temp-dir working directory for one scenario. `none` is an
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@skill-harness/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "description": "skill-harness engine — spec, discover, run, LLM-judge grade, score, results (internal API)",
4
5
  "type": "module",
5
6
  "license": "MIT",
6
7
  "main": "./dist/index.js",
7
8
  "types": "./dist/index.d.ts",
8
9
  "exports": { ".": "./dist/index.js" },
9
- "files": ["dist/**/*.js", "dist/**/*.d.ts", "LICENSE"],
10
+ "keywords": ["agent-skills", "skill", "llm", "testing", "eval", "grading", "pi", "ci", "harness"],
11
+ "files": ["dist/**/*.js", "dist/**/*.d.ts", "LICENSE", "README.md"],
10
12
  "repository": { "type": "git", "url": "git+https://github.com/mojomanyana/skill-harness.git" },
11
13
  "publishConfig": { "access": "public" },
12
14
  "engines": { "node": ">=20" },