yoi/crates/yoi
2026-06-26 17:42:21 +09:00
..
src feat: add backend runtime console target 2026-06-26 17:42:21 +09:00
Cargo.toml refactor: rename pod crate to worker 2026-06-26 00:05:57 +09:00
README.md refactor: rename pod crate to worker 2026-06-26 00:05:57 +09:00

yoi

Role

yoi is the product CLI facade. It owns the installed binary name, top-level argument parsing, normal TUI launch, and product subcommands such as yoi worker and yoi memory lint.

Boundaries

Owns:

  • product command shape and user-facing CLI entry points
  • profile/default selection for ordinary startup
  • wiring library crates into the executable
  • headless maintenance commands that are part of the product surface

Does not own:

  • Worker runtime internals (worker)
  • socket client mechanics (client)
  • model turn orchestration (llm-engine)
  • TUI rendering/runtime implementation (tui)

Design notes

Keeping product CLI ownership here prevents lower crates from depending on the binary name or parsing top-level arguments. Runtime launch should use typed command boundaries, not shell-command strings.

See also