@elicitkit/cli 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.
Files changed (3) hide show
  1. package/README.md +23 -0
  2. package/dist/bin.js +0 -0
  3. package/package.json +8 -8
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/dist/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elicitkit/cli",
3
- "version": "0.1.0",
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",
@@ -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/core": "workspace:*",
27
- "@elicitkit/renderers": "workspace:*"
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
+ }