beecork 2.5.1 → 2.5.2

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
@@ -77,11 +77,12 @@ The agent can delegate an open-ended investigation to a **read-only sub-agent**
77
77
  (reading, searching, browsing the web) in a separate context and returns just a summary — keeping the
78
78
  main conversation clean. It cannot modify anything, run commands, or recurse.
79
79
 
80
- ### Status line
80
+ ### Pinned UI + status line
81
81
 
82
- An optional bar on the terminal's bottom row shows `model · effort · git branch · ~tokens · background
83
- tasks`. It's **off by default** while a proper pinned-input version is built; opt into the interim one
84
- with `STATUSLINE=1`.
82
+ On an interactive terminal, beecork pins a persistent input box and a rich status line
83
+ (`mode · model · effort · git branch · ~tokens · background tasks`) to the bottom, with the
84
+ conversation scrolling above (Claude-Code style). Shift+Tab rotates the mode. This is **on by default**;
85
+ opt out with `STATUSLINE=0` to use the classic inline editor. Piped/non-TTY input is unaffected either way.
85
86
 
86
87
  ### Skipping permissions (danger)
87
88
 
@@ -125,7 +126,7 @@ All variables are read from the real shell environment only (never a project fil
125
126
  | `VERIFY_COMMAND` | Command auto-run after edits (e.g. `npm run typecheck`) | — |
126
127
  | `AUTO_APPROVE` | Headless: skip approval prompts (out-of-root/risky shell are still hard-denied) | off |
127
128
  | `BEECORK_DANGEROUSLY_SKIP_PERMISSIONS` | Sandbox-only: skip the whole gate (also `--dangerously-skip-permissions`) | off |
128
- | `STATUSLINE` / `STATUSLINE_REFRESH_MS` | Bottom status bar on/off · refresh interval | on · `2000` |
129
+ | `STATUSLINE` / `STATUSLINE_REFRESH_MS` | Pinned UI + status bar (set `0` to opt out) · refresh interval | on · `2000` |
129
130
  | `NO_UPDATE_NOTIFIER` / `CI` | Disable the "update available" check | off |
130
131
  | `MAX_STEPS` | Max tool steps per turn | `50` |
131
132
  | `EXEC_TIMEOUT_MS` | `run_bash` timeout | `30000` |
package/dist/index.js CHANGED
@@ -114,10 +114,11 @@ var config = {
114
114
  // Sub-agent (explore tool)
115
115
  subAgentMaxSteps: num("SUBAGENT_MAX_STEPS", 15),
116
116
  // child explorer's step budget (bounds cost/latency)
117
- // Live status line (bottom row: model · effort · git branch · ~tokens · bg tasks). DEFAULT OFF —
118
- // the interim scroll-region version clashes with the inline input (banner loss / flicker); it's
119
- // being replaced by a proper pinned-input UI. Opt in with STATUSLINE=1.
120
- statuslineEnabled: ["1", "true", "on", "yes"].includes((process.env.STATUSLINE ?? "").trim().toLowerCase()),
117
+ // Pinned bottom UI: a persistent input box + a rich statusline (mode · model · effort · branch ·
118
+ // ~tokens · bg tasks), the conversation scrolling above. DEFAULT ON for interactive TTYs; opt out
119
+ // with STATUSLINE=0 (falls back to the classic inline editor). Non-TTY (piped/CI) is unaffected
120
+ // either way chromeEnabled() also requires a TTY.
121
+ statuslineEnabled: !["0", "false", "off", "no"].includes((process.env.STATUSLINE ?? "").trim().toLowerCase()),
121
122
  statuslineRefreshMs: num("STATUSLINE_REFRESH_MS", 2e3),
122
123
  // bar refresh interval
123
124
  // Integrations / modes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beecork",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "beecork — a from-scratch CLI coding agent: multi-model (OpenRouter), BYOK, path-confined tools, built part by part.",
5
5
  "type": "module",
6
6
  "bin": {