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
Copy file name to clipboardExpand all lines: .agents/skills/adk-agent-builder/SKILL.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,27 +5,37 @@ description: Central hub for building, testing, and iterating on ADK agents. Tri
5
5
6
6
# ADK Agent Builder
7
7
8
-
This file serves as a directory of specialized reference guides for developing agents with ADK. To avoid context pollution, read only the relevant reference file based on your current task.
8
+
This file serves as a directory of specialized reference guides for developing
9
+
agents with ADK. To avoid context pollution, read only the relevant reference
10
+
file based on your current task.
9
11
10
12
## Core Concepts Directory
11
13
12
14
Refer to these files for foundational knowledge:
15
+
13
16
-**Getting Started & Basic Agents**: [getting-started.md](references/getting-started.md)
14
17
- Environment setup, API key configuration, and minimal agent definitions.
Copy file name to clipboardExpand all lines: .agents/skills/adk-sample-creator/SKILL.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ Each sample should have a `README.md` with the following structure:
89
89
90
90
-**Overview**: What the sample does.
91
91
-**Sample Inputs**: Examples of inputs to test with. Each prompt must be wrapped in backticks. If a prompt has an explanation, always add a blank line between the prompt and the explanation, and indent the explanation by two spaces.
92
-
-**Graph**: Visualization of the graph flow (Mermaid recommended for workflows).
92
+
-**Graph**: Visualization of the graph flow (Mermaid recommended). For Workflow root agents, visualize the graph flow of nodes. For LlmAgent root agents that orchestrate tools or sub-agents, visualize the topology of the agent and its tools/sub-agents instead of internal workflow nodes.
93
93
-**How To**: Explanation of key techniques used (e.g., `ctx.run_node`).
94
94
-**Related Guides**: Links to relevant developer guides in `docs/guides/` that explain the concepts or classes used.
echo "❌ Do not import from the cli package outside of the cli package. If you need to reuse the code elsewhere, please move the code outside of the cli package."
234
-
echo "The following files contain the forbidden pattern:"
235
-
echo "$FILES_WITH_FORBIDDEN_IMPORT"
236
-
exit 1
237
-
else
238
-
echo "✅ No instances of importing from the cli package found in relevant changed Python files."
239
-
fi
240
-
else
241
-
echo "✅ No relevant Python files found."
242
-
fi
184
+
uv venv .venv
185
+
source .venv/bin/activate
186
+
uv sync --extra test
243
187
244
-
- name: Check for hardcoded googleapis.com endpoints
0 commit comments