@knowledge-medium/agent-cli 0.1.0 → 0.1.1

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 (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -13,6 +13,9 @@ npm install -g @knowledge-medium/agent-cli
13
13
  # Or per-project, then invoke via npx:
14
14
  npm install --save-dev @knowledge-medium/agent-cli
15
15
  npx kmagent ping
16
+
17
+ # Or run the package directly:
18
+ npx @knowledge-medium/agent-cli ping
16
19
  ```
17
20
 
18
21
  Requires Node ≥ 24.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowledge-medium/agent-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI + local HTTP bridge for driving the Knowledge Medium app from an agent (Claude/etc.). Pairs once with a browser tab, then forwards JSON commands over loopback.",
5
5
  "keywords": [
6
6
  "cli",
@@ -29,6 +29,7 @@
29
29
  "node": ">=24.0.0"
30
30
  },
31
31
  "bin": {
32
+ "agent-cli": "./dist/cli.js",
32
33
  "kmagent": "./dist/cli.js",
33
34
  "kmagent-server": "./dist/server.js"
34
35
  },