First commands¶
Once the ADK is installed, the fastest way to get oriented is to inspect the CLI directly.
View top-level help¶
Run poly --help to see every available command:
Each command also accepts --help for its own flags and options:
Core commands¶
The ADK provides the following core commands:
-
poly init
Initialize a new Agent Studio project locally.
-
poly pull
Pull the latest project configuration from Agent Studio.
-
poly push
Push local changes back to Agent Studio.
-
poly status
View changed, new, and deleted files in your project.
-
poly diff
Show differences between the local project and the remote version.
-
poly branch
Manage project branches.
-
poly format
Format project resources.
-
poly validate
Validate project configuration locally.
-
poly review
Create a GitHub gist for reviewing changes.
-
poly chat
Start an interactive chat session with your agent.
-
poly revert
Revert local changes.
Explore any command¶
To learn what a command does and what flags it accepts, run it with --help:
Next step¶
Continue to the command reference for a complete listing, or go straight to the tutorial to see a real workflow.
-
CLI reference
See a more detailed overview of the available commands. Open CLI reference
-
Build an agent
Follow the step-by-step workflow for using the ADK in practice. Open the tutorial