From adk-deployment
Use this skill to launch the ADK 2.0 `adk web` debug UI for local agent development. Triggers on: "adk web", "launch ADK debug UI", "ADK development server", "ADK localhost", "adk web port", "debug ADK agent in browser", "ADK web playground". Generates the launch command, port config, hot-reload setup, and tips for debugging tool calls and event streams in the UI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/adk-deployment:adk-web-debug-launcherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch ADK 2.0's built-in debug UI to test, inspect, and debug agents locally.
Launch ADK 2.0's built-in debug UI to test, inspect, and debug agents locally.
cd /path/to/project # contains agent.py with root_agent
adk web # opens http://localhost:8000
The UI shows:
session.state dictadk web --port 8080
adk web --host 0.0.0.0 --port 8080 # accessible on LAN
If your project has several agent.py files in subdirs, ADK auto-discovers them:
project/
├── billing_agent/
│ └── agent.py # has root_agent
├── support_agent/
│ └── agent.py
└── ...
adk web lists all in a dropdown.
adk web --reload
Watches *.py and reloads on change. Useful for iterative prompt tweaking.
adk web --config ./agent.yaml
(See agent-config-no-code skill in adk-agent-builder.)
adk web reads .env in the working dir. Required for most agents:
GOOGLE_API_KEY=... # AI Studio key
# OR for Vertex AI:
GOOGLE_GENAI_USE_VERTEXAI=true
GOOGLE_CLOUD_PROJECT=my-project
GOOGLE_CLOUD_LOCATION=us-central1
adk web starts without import errorscloud-run-deployer for moving from adk web to productionagent-runtime-config for non-default runtime tuningProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub healthcare-ai-consulting-llc/adk-2-toolkit --plugin adk-deployment