adk-issue
Installation
SKILL.md
ADK Issue Resolution Orchestrator
This skill orchestrates the analysis, triage, and resolution of GitHub issues for the google/adk-python repository. When a user provides a GitHub issue number or link, follow this two-phase workflow by delegating/calling the specific sub-skills:
Phase 1: Triage and Analysis (Read-Only)
- Delegate to
adk-issue-analyze: Follow the instructions in theadk-issue-analyzeskill (located at.agents/skills/adk-issue-analyze/SKILL.md) to fetch the issue, inspect the codebase, evaluate justification, search for existing PRs, and present a structured analysis report. - CRITICAL: Do NOT modify any code, create new branches, or write any implementation yet.
- Ask for Approval: Present the report and explicitly ask the user:
"Would you like me to create and implement a fix for this issue in the workspace? (Note: The changes and tests will be created in a new branch but NOT committed, so you can review and iterate on them.)"
- Wait for Approval: Do not proceed to Phase 2 until the user explicitly approves.
Phase 2: Implementation (After User Approval)
- Delegate to
adk-issue-fix: Once the user approves, follow the instructions in theadk-issue-fixskill (located at.agents/skills/adk-issue-fix/SKILL.md) to create the branch, implement the fix, add/update tests, update docs, and update samples.