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 +6 -5
- package/dist/index.js +5 -4
- package/package.json +1 -1
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
|
-
###
|
|
80
|
+
### Pinned UI + status line
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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` |
|
|
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
|
-
//
|
|
118
|
-
//
|
|
119
|
-
//
|
|
120
|
-
|
|
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
|