Getting Started
Install
Section titled “Install”# Build from sourcegit clone https://github.com/hop-top/aps.gitcd apsmake buildOr download a release binary from GitHub Releases.
Create a profile
Section titled “Create a profile”aps profile new myagent --display-name "My AI Agent" --email "agent@example.com"Choose an isolation level
Section titled “Choose an isolation level”# Process isolation (default, fastest)aps profile new myagent
# Platform isolation — macOS/Linux user-level sandboxaps profile new myagent --isolation-level platform
# Container isolation — strongest, requires Dockeraps profile new myagent --isolation-level containerRun a command under a profile
Section titled “Run a command under a profile”# Run any command isolated under the profileaps myagent -- echo "Hello from agent!"
# Git with profile's own configaps myagent -- git status
# Interactive shellaps myagentGenerate documentation
Section titled “Generate documentation”aps docsDocs will be written to ~/.agents/docs/.