aos-agent
v0.84.3
Published
AOS Agent CLI with read, bash, edit, write tools and session management
Downloads
292
Maintainers
Readme
AOS Agent
AOS Agent is a terminal coding agent with an interactive TUI, non-interactive print mode, built-in file and shell tools, model selection, and resumable sessions.
This package is the installable standalone product in the AOS Agent baseline. Upstream source provenance and legal notices are maintained separately in ../../UPSTREAM.md and ../../LICENSE.
Install from this repository
Build the workspace once, then install this package into an npm prefix:
npm install --ignore-scripts
npm run build
npm install --global --ignore-scripts ./packages/coding-agentThe build also generates the local AOS-owned model registry under .artifacts/aos-model-registry/; its source policy and reproducibility contract are documented in ../ai/AOS-MODEL-REGISTRY.md.
Start the agent with:
aosVerify a non-interactive installation with:
aos --helpThe default user data directory is ~/.aos-agent/agent. The project-local configuration directory is .aos-agent/. Use aos --offline to disable startup update, package, and install-telemetry network operations.
Basic usage
aos "Explain this repository"
aos --continue "Continue the previous task"
aos --print "Summarize the current directory"
aos --model openai/gpt-4o "Review this change"
aos --no-extensions --offline --helpAuthentication can be supplied through provider-specific environment variables or the built-in auth commands:
aos auth check --provider openai
aos auth print-api-key --provider openaiRun aos --help for the complete option and provider list.
Configuration and extensions
Global settings live under ~/.aos-agent/agent/; project settings and resources live under .aos-agent/. The agent supports user-provided extensions, skills, prompt templates, and themes. Review any third-party package before installing it, and use --no-extensions/--no-skills for a source-only startup check.
Extension API and package manifest details are documented in the accompanying docs/ directory.
Package contents
dist/— generated build output; it is created bynpm run buildand is not source-controlled in this baseline.src/— CLI and agent implementation.docs/andexamples/— usage and integration references.package.json— package identityaos-agentand executableaos.
License
This package is MIT-licensed as part of the imported upstream baseline. Preserve the repository-level license, package attribution, and all third-party notices when copying or redistributing it.
