@knosi/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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/index.mjs +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ Press Ctrl+C to stop.
|
|
|
26
26
|
|
|
27
27
|
| Flag | Description | Default |
|
|
28
28
|
|------|-------------|---------|
|
|
29
|
-
| `--url <url>` | Second Brain server URL | `https://
|
|
29
|
+
| `--url <url>` | Second Brain server URL | `https://www.knosi.xyz` |
|
|
30
30
|
| `--model <model>` | Override Claude model | (from task) |
|
|
31
31
|
| `--once` | Process one round then exit | `false` |
|
|
32
32
|
| `--claude-bin <path>` | Path to Claude CLI binary | `claude` |
|
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -20,7 +20,7 @@ function getArg(flag) {
|
|
|
20
20
|
return idx !== -1 && idx + 1 < args.length ? args[idx + 1] : undefined;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
const serverUrl = getArg("--url") || "https://
|
|
23
|
+
const serverUrl = getArg("--url") || "https://www.knosi.xyz";
|
|
24
24
|
const isOnce = args.includes("--once");
|
|
25
25
|
const claudeBinArg = getArg("--claude-bin") || "claude";
|
|
26
26
|
|