@polderlabs/bizar-omp 0.4.2 → 0.4.3
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 +133 -62
- package/dist/cli/agents-ink.d.ts +3 -1
- package/dist/cli/agents-ink.d.ts.map +1 -1
- package/dist/cli/agents-ink.js +125 -5
- package/dist/cli/agents-ink.js.map +1 -1
- package/dist/cli/agents.d.ts.map +1 -1
- package/dist/cli/agents.js +9 -23
- package/dist/cli/agents.js.map +1 -1
- package/dist/cli/directory-selector.d.ts +19 -0
- package/dist/cli/directory-selector.d.ts.map +1 -0
- package/dist/cli/directory-selector.js +103 -0
- package/dist/cli/directory-selector.js.map +1 -0
- package/dist/cli/main.js +33 -3
- package/dist/cli/main.js.map +1 -1
- package/dist/cli/setup-ui.d.ts +38 -0
- package/dist/cli/setup-ui.d.ts.map +1 -0
- package/dist/cli/setup-ui.js +90 -0
- package/dist/cli/setup-ui.js.map +1 -0
- package/docs/assets/bizar-omp-banner.svg +20 -0
- package/docs/assets/sponsored-by-polderlabs.svg +9 -0
- package/docs/compatibility/baseline.json +1 -1
- package/docs/releases/0.4.2.md +1 -1
- package/docs/releases/0.4.3.md +6 -0
- package/docs/releases/native-stable.md +1 -1
- package/docs/releases/support-matrix.md +1 -1
- package/package.json +1 -1
- package/skills/bizar-omp/SKILL.md +2 -2
|
@@ -11,7 +11,7 @@ Use this skill when working in an OMP session with the BizarHarness plugin insta
|
|
|
11
11
|
|
|
12
12
|
Bizar is a native OMP engineering extension. It owns workflow intent, acceptance criteria, evidence freshness, route classification, dispatch admission, and integration eligibility. OMP remains the owner of sessions, providers, models, credentials, tools, native agents, task isolation, transcripts, and conversation state. Bizar does not start a second agent runtime or replace OMP's task system.
|
|
13
13
|
|
|
14
|
-
`
|
|
14
|
+
The supported full installation is `npx --yes @polderlabs/bizar-omp@<version> setup`. It globally installs the exact package version, installs and enables that same version through OMP's plugin manager, applies the autonomous preset, writes a recoverable receipt, and provides the `omb` and `bizar-omp` commands. Use `omp plugin install @polderlabs/bizar-omp@<version>` only for an extension-only installation or when developing a separate command installation. OMP's plugin manager cannot place npm executables on the shell `PATH`.
|
|
15
15
|
|
|
16
16
|
Use the native Bizar tools for the typed lifecycle:
|
|
17
17
|
|
|
@@ -45,7 +45,7 @@ The semantic roles include `bizar_orchestrator` for the main conversation and `b
|
|
|
45
45
|
|
|
46
46
|
- `omp` is the normal direct OMP launcher. Bizar must not take over its terminal or start tmux from an extension callback.
|
|
47
47
|
- `omb` is the explicit durable launcher supplied by this package. It starts OMP inside tmux from the first process, so terminal probes and raw input have one owner. Plain `omb` reconnects to the most recently active live Bizar session in the current directory, or creates that directory's stable default session when none exists.
|
|
48
|
-
- `omb new [initial message]` always creates a fresh session. `omb --session <id>` creates or reconnects to an additional named session, and `omb --new` creates a generated session id. `omb agents` opens the full-screen Ink session hub with a workspace rail, grouped session list, selected-session inspector, and modal settings/help/delete views. In that hub, Enter attaches, `n`
|
|
48
|
+
- `omb new [initial message]` always creates a fresh session. `omb --session <id>` creates or reconnects to an additional named session, and `omb --new` creates a generated session id. `omb agents` opens the full-screen Ink session hub with a workspace rail, grouped session list, selected-session inspector, and modal settings/help/delete/new-session views. In that hub, Enter attaches, `n` opens the new-session selector, `e` renames, `d` deletes after confirmation, `s` opens persistent launcher settings, Up/Down or `j`/`k` selects, `r` refreshes, `?` opens help, and `q` exits. The selector fuzzy-searches and browses directories, offers recent project paths, supports direct absolute paths, and collects the optional initial task and session name in the same TUI. The hub reads each host's native OMP session journal and prefers its configured or auto-generated title. While auto-titling is pending, it uses a deterministic first-task/project label and keeps the project/id as secondary identity. The hub only inspects Bizar-owned tmux sessions and does not replace OMP's native Agent Hub.
|
|
49
49
|
- `omb` enables tmux mouse mode by default so wheel scrolling stays in the pane instead of becoming prompt-history input; this can be changed in the hub Settings overlay. It avoids nested tmux sessions and runs noninteractive modes directly. `Ctrl-d` and `Ctrl-c` privately detach the Bizar client and return to the agents hub without sending EOF or interrupt input into OMP; `Ctrl-b d` remains available. The tmux host and background work continue. If the host pane exits, a later `omb` respawns the dead pane before reconnecting. Closing the client does not stop the tmux host.
|
|
50
50
|
|
|
51
51
|
The install preset enables asynchronous task execution and sets `display.pinnedAgents=full`, so every active task agent is visible in the live session and Agent Hub. Role definitions are not live sessions and are not spawned at install time; only agents actually delegated by the orchestrator appear in the hub. It also hides thinking blocks and model tool activity (`hideThinkingBlock` and `display.hideToolActivity`) while preserving the model's reasoning and task execution.
|