@skill-harness/core 0.1.0 → 0.1.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/README.md +8 -0
  2. package/package.json +4 -2
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/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@skill-harness/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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" },