Tooling¶
The PolyAI ADK fits naturally into a local developer workflow and can be used alongside standard editors, terminals, and AI-assisted coding tools.
The ADK is especially useful when paired with tools that help developers inspect, edit, generate, and review local project files efficiently.
Recommended tooling¶
There are two well-supported paths for working with the ADK. They are not mutually exclusive — many developers use both.
PolyAI ADK extension for VS Code and Cursor¶
The PolyAI ADK extension brings ADK-aware editing into VS Code and Cursor. It is the recommended path if you prefer an IDE-first workflow.
The extension helps with:
- navigating and editing flows, functions, topics, entities, and agent settings with resource-aware tooling
- catching common mistakes while you edit, before you push
- driving
polycommands without leaving the editor - pairing with your IDE's built-in AI features (Cursor's agent, VS Code Copilot, etc.) to generate and update project files
Install the extension¶
The extension is published on Open VSX, so it works in both VS Code and Cursor.
- Open the Extensions view in VS Code or Cursor.
- Search for
PolyAI ADKand install it, or install it directly from the Open VSX listing. - Open a project that has been pulled down with
poly pull.
Once installed, the extension auto-detects local ADK projects and exposes resource-aware navigation, validation, and commands.
Claude Code¶
Claude Code is a good alternative when you want an agentic CLI workflow — useful for generating a project from a brief, applying patterns across many files, or running longer build tasks end-to-end.
The repository includes a .claude/ directory with project-specific instructions and examples.
Claude Code is particularly useful for:
- generating project resources from structured requirements
- updating flows and functions at scale
- applying patterns reused across previous projects
- speeding up repetitive implementation work
Loading ADK rules into Claude Code¶
Before starting a session with Claude Code or another external coding tool, generate a documentation file and pass it as context:
Reference rules.md in your session prompt. This gives the coding tool accurate knowledge of ADK resource types, constraints, and conventions.
Use both where useful
The IDE extension and Claude Code cover different modes of work. You can edit in VS Code or Cursor day-to-day and still reach for Claude Code when you want an agent to generate or refactor a large slice of the project on your behalf.
Other local tools¶
The ADK also fits well with standard local development tooling such as:
- a terminal
- Git
- Python
uv- code editors such as VS Code or IntelliJ-based IDEs
-
AI coding tools
Useful for generating and updating ADK project files from structured inputs.
-
Editors and IDEs
Helpful for navigating project structure, editing resources, and reviewing changes.
-
Terminal workflow
The
polyCLI is the core interface for local project work.
How tooling fits into the workflow¶
A common pattern looks like this:
- use the ADK to pull or initialize a project locally
- open the project in your editor or IDE
- use an AI coding tool or standard editing workflow to make changes
- inspect and validate those changes locally
- push them back to Agent Studio
Best practices¶
- use the CLI as the source of truth for project operations
- keep AI-assisted generation grounded in real project requirements
- validate generated output before pushing
- review changes in Agent Studio before merging
- treat tooling as an accelerator, not a substitute for review
Tooling should reduce friction, not reduce scrutiny
Faster editing and generation are valuable, but project review, validation, and testing still matter.
Related pages¶
-
Installation
Set up the ADK locally before using it with development tools. Open installation
-
CLI reference
Review the commands that drive the local workflow. Open CLI reference