@keydris/cli 0.1.0-dev.35125679529.1 → 0.1.0-dev.35203669027.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.
- package/README.md +21 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -4,9 +4,29 @@ Authority before action. npm distribution for the native Keydris CLI.
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npm install --global @keydris/cli --foreground-scripts
|
|
7
|
-
keydris init
|
|
8
7
|
```
|
|
9
8
|
|
|
9
|
+
## Quick setup
|
|
10
|
+
|
|
11
|
+
An operator must first create an agent and give you its UUID. Then choose the
|
|
12
|
+
agent you are running:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Claude Code
|
|
16
|
+
keydris init claude-code <agent-id>
|
|
17
|
+
keydris run -- claude
|
|
18
|
+
|
|
19
|
+
# OpenAI Codex
|
|
20
|
+
keydris init codex <agent-id>
|
|
21
|
+
keydris codex
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
`init` signs in when needed, configures the integration, discovers governed
|
|
25
|
+
origins, and starts the local proxy. Run `/hooks` once inside Codex to trust its
|
|
26
|
+
new hook entries. For governed Claude work, use `keydris run -- claude`, not
|
|
27
|
+
bare `claude`: the wrapper also routes Claude's own remote-MCP and WebFetch
|
|
28
|
+
traffic through Keydris. Use `keydris status` to verify either setup.
|
|
29
|
+
|
|
10
30
|
The JavaScript package is a launcher. npm installs the matching native Keydris
|
|
11
31
|
binary for the current operating system and architecture as an optional
|
|
12
32
|
dependency. The complete proxy, identity, Claude Code, and OpenAI Codex
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keydris/cli",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.35203669027.1",
|
|
4
4
|
"description": "Governed, per-session identity and brokered egress for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"prepublishOnly": "node ../../scripts/prepublish-check.mjs"
|
|
21
21
|
},
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@keydris/cli-win32-x64": "0.1.0-dev.
|
|
24
|
-
"@keydris/cli-win32-arm64": "0.1.0-dev.
|
|
25
|
-
"@keydris/cli-darwin-x64": "0.1.0-dev.
|
|
26
|
-
"@keydris/cli-darwin-arm64": "0.1.0-dev.
|
|
27
|
-
"@keydris/cli-linux-x64": "0.1.0-dev.
|
|
28
|
-
"@keydris/cli-linux-arm64": "0.1.0-dev.
|
|
23
|
+
"@keydris/cli-win32-x64": "0.1.0-dev.35203669027.1",
|
|
24
|
+
"@keydris/cli-win32-arm64": "0.1.0-dev.35203669027.1",
|
|
25
|
+
"@keydris/cli-darwin-x64": "0.1.0-dev.35203669027.1",
|
|
26
|
+
"@keydris/cli-darwin-arm64": "0.1.0-dev.35203669027.1",
|
|
27
|
+
"@keydris/cli-linux-x64": "0.1.0-dev.35203669027.1",
|
|
28
|
+
"@keydris/cli-linux-arm64": "0.1.0-dev.35203669027.1"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"ai",
|