@1claw/cli 0.7.0 → 0.8.0
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 +8 -0
- package/dist/src/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -115,6 +115,14 @@ echo "sk_live_..." | 1claw secret set <path> --stdin # From stdin
|
|
|
115
115
|
1claw agent delete <id> # Delete an agent
|
|
116
116
|
1claw agent token <id> # Generate agent JWT (api_key only)
|
|
117
117
|
1claw agent token <id> --quiet # Raw token (for piping)
|
|
118
|
+
1claw agent enroll my-agent \
|
|
119
|
+
--email human@example.com # Self-enroll (no auth needed)
|
|
120
|
+
1claw agent create my-agent \
|
|
121
|
+
--shroud \ # Enable Shroud LLM proxy
|
|
122
|
+
--tx-to-allowlist 0x... \ # Transaction guardrails
|
|
123
|
+
--tx-max-value 0.1 \
|
|
124
|
+
--tx-daily-limit 1.0 \
|
|
125
|
+
--tx-allowed-chains sepolia,base
|
|
118
126
|
```
|
|
119
127
|
|
|
120
128
|
All agents automatically receive an Ed25519 SSH keypair for future A2A messaging. The public key is shown in `agent get` output.
|
package/dist/src/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { configCommand } from "./commands/config.js";
|
|
|
13
13
|
import { setOutputFormat, setApiUrl } from "./config.js";
|
|
14
14
|
export function createProgram() {
|
|
15
15
|
const program = new Command("1claw")
|
|
16
|
-
.version("0.
|
|
16
|
+
.version("0.8.0")
|
|
17
17
|
.description("1Claw CLI — HSM-backed secret management for AI agents and humans");
|
|
18
18
|
// Auth
|
|
19
19
|
program.addCommand(loginCommand);
|