@schuttdev/kon 0.3.1 → 0.3.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 +39 -0
- package/dist/index.js +1 -1
- package/package.json +4 -2
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @schuttdev/kon
|
|
2
|
+
|
|
3
|
+
Lightweight client CLI for [Kon](https://github.com/Kaden-Schutt/kon) — gives Claude access to tools on your machine from any platform.
|
|
4
|
+
|
|
5
|
+
Runs inside Claude's code execution sandbox and proxies commands over HTTPS to a [gigai](https://www.npmjs.com/package/@schuttdev/gigai) server on your machine.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @schuttdev/kon
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
kon connect # establish session with gigai server
|
|
17
|
+
kon list # list available tools
|
|
18
|
+
kon help <tool-name> # show tool usage
|
|
19
|
+
kon <tool-name> [args...] # execute a tool
|
|
20
|
+
kon status # connection info
|
|
21
|
+
kon connect <server-name> # switch between servers
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Any unrecognized subcommand is treated as a tool name:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
kon read ~/notes.txt
|
|
28
|
+
kon bash git status
|
|
29
|
+
kon grep "TODO" ~/project
|
|
30
|
+
kon obsidian search-notes "meeting"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Setup
|
|
34
|
+
|
|
35
|
+
This package is installed automatically when you pair with a gigai server. See the [full documentation](https://github.com/Kaden-Schutt/kon) for setup instructions.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schuttdev/kon",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"description": "Lightweight gigai client for Claude code execution",
|
|
6
7
|
"bin": {
|
|
7
8
|
"kon": "dist/index.js"
|
|
@@ -10,7 +11,8 @@
|
|
|
10
11
|
".": "./dist/index.js"
|
|
11
12
|
},
|
|
12
13
|
"files": [
|
|
13
|
-
"dist"
|
|
14
|
+
"dist",
|
|
15
|
+
"README.md"
|
|
14
16
|
],
|
|
15
17
|
"scripts": {
|
|
16
18
|
"build": "tsup",
|