mirror of
https://github.com/qwibitai/nanoclaw.git
synced 2026-07-06 18:52:03 +08:00
13a37def89
Make the agent provider a first-class, operator-chosen property instead of a Claude-only assumption. Trunk gains the seams; the actual non-default payloads (Codex first) install from the `providers` branch. Setup - A provider registry feeds a hard-wired setup picker (Claude | Codex). Picking a non-default provider installs its payload (setup/add-codex.sh, channel-style), runs a vault-only auth walkthrough (--step provider-auth), and records the pick on the first agent before its first spawn. - Picking Claude changes nothing — default installs are byte-for-byte unaffected. Provider as a DB property - Provider lives on container_configs.provider (materialized to container.json, read by resolveProviderName). Creation stays provider-agnostic; the picked provider is applied via the picked-provider seam. The deprecated agent_groups.agent_provider path is not used. Switching + memory - Switch a live group with `ncl groups config update --provider` + restart. - Memory never migrates at runtime — each provider keeps its own store. The /migrate-memory skill carries a group's memory across a switch in either direction (flat CLAUDE.local.md <-> memory/ scaffold). group-init seeds an imported-agent-memory note for non-default providers; the runner's memory definition reads it first turn. See docs/provider-migration.md. No install-wide default, no runtime provider guard — switching is operator-by- convention, consistent with the no-install-gating posture. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
149 lines
4.8 KiB
TypeScript
149 lines
4.8 KiB
TypeScript
/**
|
|
* A drop-in alternative to `@clack/prompts`' `p.select` that renders
|
|
* unselected option labels at full brightness instead of dim gray.
|
|
*
|
|
* Why this exists: clack styles inactive options with `styleText("dim", …)`
|
|
* inline in its render function. There is no configuration hook to override
|
|
* it, and the feedback was clear — non-selected options in the setup flow
|
|
* were "too light, need stronger font weight". So we write our own render
|
|
* against `@clack/core`'s `SelectPrompt`, keeping the visual shell of clack
|
|
* (diamond header, `│` gutter, cyan in-progress / green on submit) but
|
|
* leaving the label un-dimmed. Only the bullet and hint stay dim, which
|
|
* gives enough contrast for the cursor to read as "active".
|
|
*
|
|
* Not a full clack-feature clone: no search, no maxItems paging, no custom
|
|
* bar characters. Just the bits the NanoClaw setup menus actually use.
|
|
*/
|
|
import { SelectPrompt } from '@clack/core';
|
|
import { isCancel } from '@clack/prompts';
|
|
import { styleText } from 'node:util';
|
|
|
|
import { brandBody } from './theme.js';
|
|
|
|
const BULLET_ACTIVE = '●';
|
|
const BULLET_INACTIVE = '○';
|
|
const BAR = '│';
|
|
const CAP_BOT = '└';
|
|
const DIAMOND = '◆';
|
|
const DIAMOND_CANCEL = '■';
|
|
const DIAMOND_SUBMIT = '◇';
|
|
|
|
type PromptState = 'initial' | 'active' | 'error' | 'cancel' | 'submit';
|
|
|
|
function stateColor(state: PromptState): 'cyan' | 'green' | 'red' | 'yellow' {
|
|
switch (state) {
|
|
case 'submit':
|
|
return 'green';
|
|
case 'cancel':
|
|
return 'red';
|
|
case 'error':
|
|
return 'yellow';
|
|
default:
|
|
return 'cyan';
|
|
}
|
|
}
|
|
|
|
function headerIcon(state: PromptState): string {
|
|
switch (state) {
|
|
case 'submit':
|
|
return styleText('green', DIAMOND_SUBMIT);
|
|
case 'cancel':
|
|
return styleText('red', DIAMOND_CANCEL);
|
|
default:
|
|
return styleText('cyan', DIAMOND);
|
|
}
|
|
}
|
|
|
|
export interface BrightSelectOption<T> {
|
|
value: T;
|
|
label?: string;
|
|
hint?: string;
|
|
}
|
|
|
|
export interface BrightSelectOptions<T> {
|
|
message: string;
|
|
options: BrightSelectOption<T>[];
|
|
initialValue?: T;
|
|
}
|
|
|
|
/**
|
|
* Discard any stdin buffered while no prompt was reading — keypresses made
|
|
* during spinners and installs otherwise get consumed by the next select the
|
|
* instant it opens, submitting it before it ever renders for the user (a
|
|
* stray `↓`+`Enter` silently picks option 2). Raw-mode reads only see kernel
|
|
* tty data via the event loop, so the drain needs a real (short) window.
|
|
*/
|
|
export function flushStdin(windowMs = 50): Promise<void> {
|
|
return new Promise((resolve) => {
|
|
const stdin = process.stdin;
|
|
if (!stdin.isTTY) return resolve();
|
|
const wasRaw = stdin.isRaw === true;
|
|
stdin.setRawMode?.(true);
|
|
const discard = (): void => {};
|
|
stdin.on('data', discard);
|
|
stdin.resume();
|
|
setTimeout(() => {
|
|
stdin.off('data', discard);
|
|
stdin.pause();
|
|
if (!wasRaw) stdin.setRawMode?.(false);
|
|
resolve();
|
|
}, windowMs);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Matches the return shape of `p.select` — resolves to the selected value
|
|
* on submit, or to clack's cancel symbol on Ctrl-C / Esc. Callers pass
|
|
* the result through `ensureAnswer(...)` the same way they do for
|
|
* `p.select`.
|
|
*/
|
|
export async function brightSelect<T>(
|
|
opts: BrightSelectOptions<T>,
|
|
): Promise<T | symbol> {
|
|
const { message, options, initialValue } = opts;
|
|
|
|
await flushStdin();
|
|
return new SelectPrompt({
|
|
options: options as Array<{ value: T; label?: string; hint?: string }>,
|
|
initialValue,
|
|
render() {
|
|
const st = this.state as PromptState;
|
|
const color = stateColor(st);
|
|
const bar = styleText(color, BAR);
|
|
const grayBar = styleText('gray', BAR);
|
|
|
|
const lines: string[] = [];
|
|
lines.push(grayBar);
|
|
lines.push(`${headerIcon(st)} ${message}`);
|
|
|
|
if (st === 'submit' || st === 'cancel') {
|
|
const selected =
|
|
options.find((o) => o.value === this.value)?.label ??
|
|
String(this.value ?? '');
|
|
const shown =
|
|
st === 'cancel'
|
|
? styleText(['strikethrough', 'dim'], selected)
|
|
: styleText('dim', brandBody(selected));
|
|
lines.push(`${grayBar} ${shown}`);
|
|
return lines.join('\n');
|
|
}
|
|
|
|
const cursor = (this as unknown as { cursor: number }).cursor;
|
|
options.forEach((opt, idx) => {
|
|
const label = opt.label ?? String(opt.value);
|
|
const hint = opt.hint ? ` ${styleText('dim', `(${opt.hint})`)}` : '';
|
|
const isActive = idx === cursor;
|
|
const marker = isActive
|
|
? styleText('green', BULLET_ACTIVE)
|
|
: styleText('dim', BULLET_INACTIVE);
|
|
const shownLabel = isActive ? brandBody(label) : label;
|
|
lines.push(`${bar} ${marker} ${shownLabel}${hint}`);
|
|
});
|
|
lines.push(styleText(color, CAP_BOT));
|
|
return lines.join('\n');
|
|
},
|
|
}).prompt() as Promise<T | symbol>;
|
|
}
|
|
|
|
export { isCancel };
|