mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-24 21:31:19 +00:00
User-facing name is now OpenClaw (the system speaks); internal code name is system-agent. Gateway methods crestodian.* -> openclaw.chat/openclaw.setup.*, agent tool -> openclaw, reserved agent ids openclaw + retired crestodian. openclaw setup routes: onboarding flags -> onboard, -m/--yes -> system agent, bare configured interactive -> OpenClaw chat, unconfigured -> onboarding. Hidden crestodian CLI and /crestodian TUI aliases kept; docs moved to docs/cli/openclaw.md with redirect stub. macOS/Android strings in lockstep. Refs #107237
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
/** Named queue lanes for work that must not interleave with the main command stream. */
|
|
export const enum CommandLane {
|
|
Main = "main",
|
|
SystemAgent = "system-agent",
|
|
Cron = "cron",
|
|
CronNested = "cron-nested",
|
|
SkillWorkshopReview = "skill-workshop-review",
|
|
Subagent = "subagent",
|
|
Nested = "nested",
|
|
}
|