@elicitkit/cli 0.1.1 → 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/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# @elicitkit/cli
|
|
2
|
+
|
|
3
|
+
> Elicitkit CLI — the shell-out reach. Pipe an AskSet in, get typed answers out; or render a panel to open in a browser.
|
|
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/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npx @elicitkit/cli --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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elicitkit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Elicitkit CLI — the shell-out reach. Pipe an AskSet in, get typed answers out; or render a panel to open in a browser.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@elicitkit/
|
|
23
|
-
"@elicitkit/
|
|
22
|
+
"@elicitkit/renderers": "0.1.2",
|
|
23
|
+
"@elicitkit/core": "0.1.2"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|