ideabrowser.com — find trending startup ideas with real demand
Try itnpx skills add https://github.com/google/adk-docs --skill adk-dev-guideIf this is a long session, re-read the relevant skill before each phase —
/adk-cheatsheet before writing code, /adk-eval-guide before running evals,
/adk-deploy-guide before deploying, /adk-scaffold before scaffolding.
Context compaction may have dropped earlier skill content.
IMPORTANT: If DESIGN_SPEC.md exists in this project, it is your primary source of truth.
Read it FIRST to understand:
The spec is your contract. All implementation decisions should align with it. When in doubt, refer back to DESIGN_SPEC.md.
Before writing any code:
DESIGN_SPEC.md thoroughlyImplement the agent logic:
make playground (or adk web .) for interactive testing during developmentFor ADK API patterns and code examples, use /adk-cheatsheet.
This is the most important phase. Evaluation validates agent behavior end-to-end using evalsets and scoring metrics.
MANDATORY: Activate /adk-eval-guide before running evaluation. It contains the evalset schema, config format, and critical gotchas. Do NOT skip this.
Tests (pytest) are NOT evaluation. They test code correctness but say nothing about whether the agent behaves correctly. Always run adk eval.
adk eval (or make eval if the project has a Makefile)Expect 5-10+ iterations here.
Once evaluation thresholds are met:
/adk-deploy-guide for deployment optionsIMPORTANT: Never deploy without explicit human approval.
When executing code modifications, your paramount objective is surgical precision. You must alter only the code segments directly targeted by the user's request, while strictly preserving all surrounding and unrelated code.
Mandatory Pre-Execution Verification:
Before finalizing any code replacement, verify:
model, version, api_key), comments, and formatting outside the identified target remain identical.Example:
root_agent = Agent(
name="recipe_suggester",
model="gemini-1.5-flash", # UNINTENDED - model was not requested to change
instruction="You are a recipe suggester."
)
root_agent = Agent(
name="recipe_suggester", # OK, related to new purpose
model="gemini-3-flash-preview", # PRESERVED
instruction="You are a recipe suggester." # OK, the direct target
)
Model Selection — CRITICAL:
gemini-3-flash-preview, keep it as gemini-3-flash-preview. Do NOT "upgrade" or "fix" model names.gemini-3-flash-preview, gemini-3-pro-preview.gemini-2.0-flash, gemini-1.5-flash, etc.) unless the user explicitly requests them.Location Matters More Than Model:
GOOGLE_CLOUD_LOCATION issue (e.g., needing global instead of us-central1).gemini-3-flash-preview) require specific locations. Check the error message for hints.ADK Built-in Tool Imports (Precision Required):
# CORRECT - imports the tool instance
from google.adk.tools.load_web_page import load_web_page
# WRONG - imports the module, not the tool
from google.adk.tools import load_web_page
Pass the imported tool directly to tools=[load_web_page], not tools=[load_web_page.load_web_page].
Running Python Commands:
uv to execute Python commands (e.g., uv run python script.py)make install (or uv sync) before executing scriptsMakefile and README.md for available commands (if present)Breaking Infinite Loops:
terraform import instead of retrying creationterraform CLI) instead of calling problematic toolsTroubleshooting:
/adk-cheatsheet first — it covers most common patternspython -c "import google.adk; print(google.adk.__path__[0])" — use uv run python if using uv)references/docs-index.md in the cheatsheet skill for WebFetch URLsWhen you need specific infrastructure files but don't want to scaffold the current project directly, use the /adk-scaffold skill to create a temporary reference project in /tmp/ and copy over what you need.
See /adk-scaffold for full CLI commands and options.
Projects created via the Agent Starter Pack CLI include a Makefile with these commands.
To create or enhance a project, see the /adk-scaffold skill for full instructions.
For non-scaffolded projects, use the ADK CLI equivalents.
| Make (scaffolded) | ADK CLI equivalent | Purpose |
|---|---|---|
make playground | adk web . | Interactive local testing |
make test | pytest | Run unit and integration tests |
make eval | adk eval <agent_dir> <evalset> | Run evaluation against evalsets |
make lint | ruff check . | Check code quality |
make setup-dev-env | — (scaffolded only) | Set up dev infrastructure (Terraform) |
make deploy | — (scaffolded only) | Deploy to dev (requires human approval) |
Troubleshooting hint: If you encounter repeated errors, unexpected tool failures, or instructions in these skills that seem incomplete or reference features you can't find, the skills may be outdated. Run:
npx skills check -gIf it reports outdated skills, tell the user to update:
npx skills update -gDo NOT run this check on every session — only when you suspect stale skills are causing problems.