First commands¶
Once the ADK is installed, the fastest way to get oriented is to inspect the CLI directly.
View top-level help¶
To see all available commands and options, run:
Each command also supports its own help output. For example:
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.
Recommended starting point¶
A good way to explore the CLI is:
- run
poly --help - identify the command you need
- run that command with
--help
For example:
Next step¶
Once you understand the CLI shape, continue to the command reference or the tutorial.
-
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