@elicitkit/http 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 +23 -0
- package/dist/bin.js +0 -0
- package/package.json +8 -8
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @elicitkit/http
|
|
2
|
+
|
|
3
|
+
> Elicitkit HTTP surface — the 'any automation, no MCP' reach. Zero-dependency node:http server over the same core + renderers.
|
|
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/http
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npx @elicitkit/http --help
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Links
|
|
20
|
+
|
|
21
|
+
- Repository & docs: https://github.com/elicitkit/elicitkit
|
|
22
|
+
- Spec: https://github.com/elicitkit/elicitkit/blob/main/packages/spec/SPEC.md
|
|
23
|
+
- License: Apache-2.0
|
package/dist/bin.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elicitkit/http",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Elicitkit HTTP surface — the 'any automation, no MCP' reach. Zero-dependency node:http server over the same core + renderers.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"files": [
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsc -p tsconfig.json",
|
|
23
|
-
"test": "tsc -p tsconfig.json && node test/smoke.mjs"
|
|
24
|
-
},
|
|
25
21
|
"dependencies": {
|
|
26
|
-
"@elicitkit/
|
|
27
|
-
"@elicitkit/
|
|
22
|
+
"@elicitkit/renderers": "0.1.2",
|
|
23
|
+
"@elicitkit/core": "0.1.2"
|
|
28
24
|
},
|
|
29
25
|
"publishConfig": {
|
|
30
26
|
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc -p tsconfig.json",
|
|
30
|
+
"test": "tsc -p tsconfig.json && node test/smoke.mjs"
|
|
31
31
|
}
|
|
32
|
-
}
|
|
32
|
+
}
|