flockbay-cli 0.10.8 → 0.10.11
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 +3 -12
- package/dist/codex/flockbayMcpStdioBridge.cjs +0 -1
- package/dist/codex/flockbayMcpStdioBridge.mjs +0 -1
- package/dist/{index-lah0k5ZB.mjs → index-BFrewNd0.mjs} +355 -254
- package/dist/{index-DzloCl3J.cjs → index-DPKYbnzO.cjs} +123 -22
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/lib.cjs +1 -1
- package/dist/lib.mjs +1 -1
- package/dist/{runCodex-B4ZqM_xX.cjs → runCodex-CvAd5bmX.cjs} +104 -32
- package/dist/{runCodex-CxCQnG4-.mjs → runCodex-W8SKl0LG.mjs} +104 -32
- package/dist/{runGemini-Ck1we_ey.cjs → runGemini-D6_72V4C.cjs} +138 -5
- package/dist/{runGemini-F5MibO9S.mjs → runGemini-nUkt_4To.mjs} +138 -5
- package/dist/{types-DiE1MW0X.mjs → types-BRqZoK_2.mjs} +3 -3
- package/dist/{types-Cwt6oNZm.cjs → types-dGdQDjIz.cjs} +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Code on the go controlling Claude/Codex sessions from your mobile device.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Code anywhere.
|
|
6
6
|
|
|
7
7
|
Flockbay CLI is the command-line tool for running and controlling Flockbay sessions (including daemon and Codex mode).
|
|
8
8
|
|
|
@@ -41,16 +41,7 @@ This will:
|
|
|
41
41
|
- `--claude-env KEY=VALUE` - Set environment variable for Claude Code (e.g., for [claude-code-router](https://github.com/musistudio/claude-code-router))
|
|
42
42
|
- `--claude-arg ARG` - Pass additional argument to Claude CLI
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
- `FLOCKBAY_SERVER_URL` - API base URL (default: https://api.flockbay.com)
|
|
47
|
-
- `FLOCKBAY_WEBAPP_URL` - Web app base URL (default: https://flockbay.com)
|
|
48
|
-
- `FLOCKBAY_HOME_DIR` - Home directory for local CLI state (default: `~/.flockbay`)
|
|
49
|
-
- `FLOCKBAY_DISABLE_CAFFEINATE` - Disable macOS sleep prevention (set to `true`, `1`, or `yes`)
|
|
50
|
-
- `FLOCKBAY_EXPERIMENTAL` - Enable experimental features (set to `true`, `1`, or `yes`)
|
|
51
|
-
|
|
52
|
-
Legacy env vars are still supported for compatibility:
|
|
53
|
-
- `FLOCKBAY_SERVER_URL`, `FLOCKBAY_WEBAPP_URL`, `FLOCKBAY_HOME_DIR`, `FLOCKBAY_DISABLE_CAFFEINATE`, `FLOCKBAY_EXPERIMENTAL`
|
|
44
|
+
Run `flockbay --help` for the complete list of options.
|
|
54
45
|
|
|
55
46
|
## Requirements
|
|
56
47
|
|
|
@@ -62,4 +53,4 @@ Legacy env vars are still supported for compatibility:
|
|
|
62
53
|
|
|
63
54
|
## License
|
|
64
55
|
|
|
65
|
-
|
|
56
|
+
Proprietary. Copyright (c) 2024-2026 Flockbay. All rights reserved.
|
|
@@ -12,7 +12,6 @@ function clampTimeoutMs(timeoutMs) {
|
|
|
12
12
|
return Math.max(1e3, Math.min(INTERACTIVE_TOOL_TIMEOUT_MS, Math.floor(timeoutMs)));
|
|
13
13
|
}
|
|
14
14
|
function getToolCallTimeoutMs(name, args) {
|
|
15
|
-
if (name === "ask_user_question") return INTERACTIVE_TOOL_TIMEOUT_MS;
|
|
16
15
|
const timeoutMs = typeof args?.timeoutMs === "number" ? args.timeoutMs : void 0;
|
|
17
16
|
const bakeTimeoutMs = typeof args?.bakeTimeoutMs === "number" ? args.bakeTimeoutMs : void 0;
|
|
18
17
|
if (name === "unreal_fast_preview") {
|
|
@@ -10,7 +10,6 @@ function clampTimeoutMs(timeoutMs) {
|
|
|
10
10
|
return Math.max(1e3, Math.min(INTERACTIVE_TOOL_TIMEOUT_MS, Math.floor(timeoutMs)));
|
|
11
11
|
}
|
|
12
12
|
function getToolCallTimeoutMs(name, args) {
|
|
13
|
-
if (name === "ask_user_question") return INTERACTIVE_TOOL_TIMEOUT_MS;
|
|
14
13
|
const timeoutMs = typeof args?.timeoutMs === "number" ? args.timeoutMs : void 0;
|
|
15
14
|
const bakeTimeoutMs = typeof args?.bakeTimeoutMs === "number" ? args.bakeTimeoutMs : void 0;
|
|
16
15
|
if (name === "unreal_fast_preview") {
|