@elicitkit/conformance 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 +17 -0
- package/package.json +17 -10
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @elicitkit/conformance
|
|
2
|
+
|
|
3
|
+
> The Elicitkit conformance suite — the source of truth for what "Elicitkit-compliant" means. A spec-derived fixture corpus + a portable runner any implementation points at.
|
|
4
|
+
|
|
5
|
+
Part of **[Elicitkit](https://github.com/elicitkit/elicitkit)** — typed questions for AI agents. An open standard over MCP: a portable spec (Ask · AskSet · Answer), a TypeScript reference implementation, and an 84-fixture conformance suite.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm i @elicitkit/conformance
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Links
|
|
14
|
+
|
|
15
|
+
- Repository & docs: https://github.com/elicitkit/elicitkit
|
|
16
|
+
- Spec: https://github.com/elicitkit/elicitkit/blob/main/packages/spec/SPEC.md
|
|
17
|
+
- License: Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elicitkit/conformance",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "The Elicitkit conformance suite — the source of truth for what \"Elicitkit-compliant\" means. A spec-derived fixture corpus + a portable runner any implementation points at.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
|
-
".": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
11
14
|
"./corpus": "./dist/corpus.js"
|
|
12
15
|
},
|
|
13
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@elicitkit/renderers": "0.1.2",
|
|
21
|
+
"@elicitkit/core": "0.1.2"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
14
26
|
"scripts": {
|
|
15
27
|
"build": "tsc -p tsconfig.json",
|
|
16
28
|
"test": "tsc -p tsconfig.json && node test/smoke.mjs"
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
"@elicitkit/core": "workspace:*",
|
|
20
|
-
"@elicitkit/renderers": "workspace:*"
|
|
21
|
-
},
|
|
22
|
-
"publishConfig": { "access": "public" }
|
|
23
|
-
}
|
|
29
|
+
}
|
|
30
|
+
}
|