lazyclaw 3.88.0 → 3.99.4
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 +26 -3
- package/browse.mjs +0 -0
- package/cli.mjs +830 -38
- package/config_features.mjs +241 -0
- package/cron.mjs +359 -0
- package/package.json +7 -1
- package/providers/claude_cli.mjs +221 -0
- package/providers/registry.mjs +72 -15
- package/sandbox.mjs +127 -0
- package/skills_install.mjs +239 -0
- package/workspace.mjs +158 -0
package/README.md
CHANGED
|
@@ -24,12 +24,35 @@ Requires **Node 18+**. Works on macOS / Linux / WSL. Windows native PowerShell m
|
|
|
24
24
|
## First run
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
lazyclaw onboard #
|
|
27
|
+
lazyclaw onboard # arrow-key picker; defaults to claude-cli (no key)
|
|
28
28
|
lazyclaw status # current provider/model + masked key
|
|
29
29
|
lazyclaw doctor # validate config + provider registry
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
`onboard` writes `~/.lazyclaw/config.json`. Move it with `LAZYCLAW_CONFIG_DIR=/elsewhere`. For automation: `--non-interactive --provider X --model Y --api-key Z`.
|
|
32
|
+
`onboard` writes `~/.lazyclaw/config.json`. Move it with `LAZYCLAW_CONFIG_DIR=/elsewhere`. For automation: `--non-interactive --provider X --model Y [--api-key Z]`.
|
|
33
|
+
|
|
34
|
+
### Subscription mode (no API key)
|
|
35
|
+
|
|
36
|
+
If you already have **Claude Code** installed and signed in (Pro / Max / Team subscription), pick the **`claude-cli`** provider during onboard. lazyclaw shells out to the local `claude` binary, so requests bill against your existing subscription quota instead of pay-per-token API credit. No `sk-ant-` key needed.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
lazyclaw onboard --non-interactive --provider claude-cli --model claude-opus-4-7
|
|
40
|
+
lazyclaw status
|
|
41
|
+
# → { provider: "claude-cli", model: "claude-opus-4-7", hasApiKey: false }
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Same flow for `ollama` (local models, also keyless).
|
|
45
|
+
|
|
46
|
+
### Pay-per-token mode (API key)
|
|
47
|
+
|
|
48
|
+
Pick `anthropic` / `openai` / `gemini` and supply the matching key:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
lazyclaw onboard --non-interactive --provider openai \
|
|
52
|
+
--model gpt-4.1 --api-key sk-...
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
`onboard` only prompts for an api-key when the picked provider's `requiresApiKey` is true (the picker labels each row `[subscription]` / `[api key]` / `[no key]` so the choice is explicit).
|
|
33
56
|
|
|
34
57
|
## Interactive chat
|
|
35
58
|
|
|
@@ -48,7 +71,7 @@ What you see on launch (TTY only):
|
|
|
48
71
|
│ | |__ _ _____ _ _ │
|
|
49
72
|
│ | / _` |_ / || | '_| │
|
|
50
73
|
│ |_\__,_/__\_, |_| │
|
|
51
|
-
│ LazyClaw |__/ 3.
|
|
74
|
+
│ LazyClaw |__/ 3.92.0 │
|
|
52
75
|
╰──────────────────────────────╯
|
|
53
76
|
|
|
54
77
|
provider · anthropic
|
package/browse.mjs
ADDED
|
Binary file
|