CLI Command Reference
Agento provides a fast, instant-boot CLI entrypoint with focused subcommands for launching sessions, managing codebase guardrails, scaffolding plugins, and handling updates.
Syntax Overview
Section titled “Syntax Overview”agento [command] [options]Commands
Section titled “Commands”agento (Interactive Workspace)
Section titled “agento (Interactive Workspace)”Launches the OpenTUI terminal interface in the current directory.
agentoIf run inside a Git repository, Agento automatically binds to the project root and loads project-specific LINTO rules and configuration.
agento linto init [path]
Section titled “agento linto init [path]”Scaffolds a .linto/ directory containing starter rule definitions and creates linto.d.ts for authoring type-safe programmatic rules.
# Scaffold .linto/ in the current repository rootagento linto init
# Scaffold .linto/ in a specific target directoryagento linto init ./packages/coreagento plugin init <name> [targetDir]
Section titled “agento plugin init <name> [targetDir]”Scaffolds a new Agento plugin with TypeScript configuration, starter AI SDK tools, pre-flight checks, human approval gates, developer documentation (README.md), and AI coding assistant rules (AGENTS.md).
# Scaffold in ./agento-plugin-postgres/agento plugin init postgres
# Scaffold with scoped npm name in a custom directoryagento plugin init @myorg/agento-plugin-db ./plugins/dbOutput:
Creating Agento plugin: @myorg/agento-plugin-db in ./plugins/db...
Created: + package.json + tsconfig.json + .gitignore + README.md + AGENTS.md + src/index.ts + src/tools/example.ts + src/subsystems/example.tsagento update [--apply]
Section titled “agento update [--apply]”Checks the official release endpoint for binary updates.
# Check if an update is availableagento update
# Download and apply the update immediatelyagento update --applyagento version
Section titled “agento version”Prints the current version of the installed Agento binary.
agento versionagento --help
Section titled “agento --help”Displays the command-line help menu and available options.
agento --help