You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplify the ADK assistant context file:
- Replace the "ADK Knowledge, Architecture, and Style" section, which
enumerated each skill with its description (duplicating metadata already
surfaced to skill-aware assistants) and pointed at several skill paths
under .agents/skills/ that do not exist there, with a single pointer to
.agents/skills/.
- Remove the "AI Coding Assistant Context" title and its meta intro, which
added no actionable context.
- Move "Project Overview" to the top so the file leads with substance.
Co-authored-by: Haran Rajkumar <haranrk@google.com>
PiperOrigin-RevId: 936991617
Copy file name to clipboardExpand all lines: AGENTS.md
+4-30Lines changed: 4 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,33 +1,3 @@
1
-
# AI Coding Assistant Context
2
-
3
-
This document provides context for AI coding assistants (Antigravity, Gemini CLI, etc.) to understand the ADK Python project and assist with development.
4
-
5
-
## ADK Knowledge, Architecture, and Style
6
-
7
-
For all matters regarding ADK development, please use the appropriate skill:
8
-
9
-
-**`adk-architecture`**: Use this skill whenever you need to understand the architecture, event flow, or state management of the ADK system, or when designing or modifying core components and public APIs.
10
-
- Read `.agents/skills/adk-architecture/SKILL.md` for full instructions.
11
-
-**`adk-style`**: Use this skill whenever writing code, tests, or reviewing PRs for the ADK project to ensure compliance with styling and coding conventions. Also use it for committing, bug fixing, and testing rules.
12
-
- Read `.agents/skills/adk-style/SKILL.md` for full instructions.
13
-
-**`adk-git`**: Use this skill for any git operation (commit, push, pull, rebase, etc.). It provides guidelines for Conventional Commits and branch naming.
14
-
- Read `.agents/skills/adk-git/SKILL.md` for full instructions.
15
-
-**`adk-sample-creator`**: Use this skill when creating new samples demonstrating features or agent patterns, or when adding examples to subdirectories under `contributing/`.
16
-
- Read `.agents/skills/adk-sample-creator/SKILL.md` for full instructions.
17
-
-**`adk-review`**: Use this skill to review local changes for errors, style compliance, unintended outcomes, and to check if associated design docs, guides, samples, or tests need updates.
18
-
- Read `.agents/skills/adk-review/SKILL.md` for full instructions.
19
-
-**`adk-issue`**: Use this skill when analyzing, triaging, and resolving GitHub issues for the adk-python repository (orchestrating both triage and fix implementation). Do NOT use this skill if the "/adk-issue-analyze" command is explicitly requested.
20
-
- Read `.agents/skills/adk-issue/SKILL.md` for full instructions.
21
-
-**`adk-issue-analyze`**: Use this skill to fetch, inspect, and analyze a GitHub issue in a strictly read-only manner. Use this skill when the "/adk-issue-analyze" command is explicitly called.
22
-
- Read `.agents/skills/adk-issue-analyze/SKILL.md` for full instructions.
23
-
-**`adk-issue-fix`**: Use this skill to implement the code changes, unit tests, and documentation updates for an approved GitHub issue fix. Use this skill when the "/adk-issue-fix" command is explicitly called.
24
-
- Read `.agents/skills/adk-issue-fix/SKILL.md` for full instructions.
25
-
-**`adk-pr-analyze`**: Use this skill to fetch, inspect, and analyze a GitHub pull request in a strictly read-only manner. Use this skill when the "/adk-pr-analyze" command is explicitly called.
26
-
- Read `.agents/skills/adk-pr-analyze/SKILL.md` for full instructions.
27
-
-**`adk-pr-triage`**: Use this skill to orchestrate triaging and reviewing GitHub pull requests (PRs) (orchestrating both analysis and user review/checkout). Do NOT use this skill if the "/adk-pr-analyze" command is explicitly requested.
28
-
- Read `.agents/skills/adk-pr-triage/SKILL.md` for full instructions.
29
-
30
-
31
1
## Project Overview
32
2
33
3
The Agent Development Kit (ADK) is an open-source, code-first Python toolkit for building, evaluating, and deploying sophisticated AI agents.
@@ -45,6 +15,10 @@ The Agent Development Kit (ADK) is an open-source, code-first Python toolkit for
45
15
46
16
For details on how the Runner works and the invocation lifecycle, please refer to the `adk-architecture` skill and the referenced documentation therein.
47
17
18
+
## ADK Knowledge, Architecture, and Style
19
+
20
+
Skills related to ADK development are in `.agents/skills/`.
21
+
48
22
## Project Architecture
49
23
50
24
For detailed architecture patterns, component descriptions, and core interfaces, please refer to the **`adk-architecture`** skill at `.agents/skills/adk-architecture/SKILL.md`.
0 commit comments