@elicitkit/spec 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/SPEC.md +3 -3
- package/package.json +17 -6
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @elicitkit/spec
|
|
2
|
+
|
|
3
|
+
> The Elicitkit question spec — JSON Schema + canonical TypeScript types. This package is the product.
|
|
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/spec
|
|
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/SPEC.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Elicitkit Question Spec — v0.1
|
|
1
|
+
# Elicitkit Question Spec — v0.1
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
_Status: **Stable** — v0.1. The spec is the product; the MCP server is its reference implementation._
|
|
4
4
|
|
|
5
5
|
Key words **MUST**, **SHOULD**, **MAY** per RFC 2119.
|
|
6
6
|
|
|
@@ -212,4 +212,4 @@ A "Elicitkit-compliant" implementation MUST: round-trip the envelope (§3) and A
|
|
|
212
212
|
|
|
213
213
|
---
|
|
214
214
|
|
|
215
|
-
|
|
215
|
+
_This spec is encoded as JSON Schema in `schema/elicitkit-v0.1.schema.json` and enforced by `@elicitkit/core` and the conformance suite._
|
package/package.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elicitkit/spec",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "The Elicitkit question spec — JSON Schema + canonical TypeScript types. This package is the product.",
|
|
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
|
"./schema": "./schema/elicitkit-v0.1.schema.json"
|
|
12
15
|
},
|
|
13
|
-
"files": [
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"schema",
|
|
19
|
+
"SPEC.md"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc -p tsconfig.json"
|
|
26
|
+
}
|
|
27
|
+
}
|