A CLI and Python package for managing Agent Studio projects locally. It provides a Git-like workflow for synchronizing project configurations between your local filesystem and the Agent Studio platform.
Changes may be pushed frequently while the platform evolves. If you encounter issues, please ensure you are running the latest version of the ADK before reporting them.
Request access to the PolyAI ADK
Once approved, the PolyAI team will provide the credentials required to use the ADK.
Before using the ADK you must:
- have access to a PolyAI Agent Studio workspace
- obtain an ADK API key from the PolyAI team
Access to both is granted through the Early Access Program.
Store your API key as an environment variable named: POLY_ADK_KEY
For example:
export POLY_ADK_KEY=<your-key>pip install polyai-adkOnce installed, use the poly command to manage your projects:
poly init # Initialize a project (interactive)
poly pull # Pull latest configuration
poly push # Push local changes
poly status # View project status
poly diff # View local changes
poly branch # Manage branches
poly format # Format resources
poly validate # Validate configuration
poly review # Create a review gist
poly docs # Output reference documentationInstall the ADK from PyPI:
pip install polyai-adkOnce installed, the poly CLI command becomes available.
poly init # Initialize a project (interactive)
poly pull # Pull latest configuration
poly push # Push local changes
poly status # View project status
poly diff # View local changes
poly branch # Manage branches
poly format # Format resources
poly validate # Validate configuration
poly review # Create a review gistRun:
poly --helpto see all available commands.
Each command also supports --help for detailed syntax:
poly push --helpRun poly --help to see all available commands and options. Each command also supports --help for detailed syntax (e.g. poly push --help).
Initialize a new Agent Studio project locally. Runs interactively by default, prompting for region, account, and project. You can also pass these directly:
poly init
poly init --region us-1 --account_id 123 --project_id my_project
poly init --base-path /path/to/projects
poly init --format # format resources after initPull the latest project configuration from Agent Studio:
poly pull
poly pull --force # overwrite all local changes
poly pull --format # format resources after pullingPush local changes to Agent Studio:
poly push
poly push --dry-run # preview what would be pushed
poly push --skip-validation # skip local validation before pushing
poly push --force # overwrite remote changes
poly push --format # format resources before pushingView changed, new, and deleted files in your project:
poly statusShow diffs between your local project and the remote version:
poly diff # all changes
poly diff file1.yaml # specific filesRevert local changes:
poly revert --all # revert everything
poly revert file1.yaml file2.yaml # revert specific filesManage branches (default branch is main):
poly branch list
poly branch current
poly branch create my-feature
poly branch switch my-feature
poly branch switch my-feature --force # discard uncommitted changesFormat project resources (Python via ruff, YAML/JSON via in-process formatting). Use --check to only report files that would change; use --ty to also run type checking.
poly format # all resources
poly format file1.py # specific files
poly format --check # check only, no writesValidate project configuration locally:
poly validateCreate a GitHub gist for reviewing changes, similar to a pull request:
poly review # local vs remote
poly review --before main --after feature-branch # compare branches
poly review --delete # delete all review gistsStart an interactive chat session with your agent:
poly chat
poly chat --environment live
poly chat --channel webchat
poly chat --metadata # show functions, flows, and state each turnOutput ADK documentation
poly docs
poly docs -all
poly docs {documentation (e.g topics)}
poly docs --output doc_file.mdPlease report bugs or request features via the GitHub Issues page.
See CONTRIBUTING.md for development setup, code style, and contribution guidelines.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.
