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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Code on the go controlling Claude/Codex sessions from your mobile device.
4
4
 
5
- Free. Open source. Code anywhere.
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
- ## Environment Variables
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
- MIT
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") {