What problem does it solve? Developers working with the LobeHub CLI (@lobehub/cli) need accurate knowledge of its command groups, authentication flow, workspace scoping, and coding conventions to use or extend the tool without reading the entire codebase. ## Core Features & Use Cases - Command Reference: Covers all command groups including agent, generate, kb, doc, file, memory, topic, message, skill, plugin, model, provider, search, and workspace, with detailed per-command options in the references directory. - Development Guide: Explains how to add new Commander.js commands, register them in the entry point, follow output conventions (--json, --yes, --limit), and write tests. - Auth & Environment Setup: Documents OIDC Device Code Flow login, encrypted credential storage, dev-mode isolation via LOBEHUB_CLI_HOME, and workspace scope resolution order. - Use Case: A developer adding a new lh task command can follow the documented pattern to create the command file, wire up the tRPC client, and test against a local dev server. ## Quick Start Ask the assistant to explain how to add a new command to the LobeHub CLI or how to run a specific command like lh agent run against a local dev server.