Adk tool scaffold
Skill ComeOnOliver/skillshub/skills/rominirani/antigravity-skills/adk-tool-scaffold
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill adk-tool-scaffoldAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.9 KB, 234 tokens by cl100k_base, as published. Nobody here has run it
ADK Tool Scaffold Skill
This skill automates the creation of standard BaseTool implementations for the Agent Development Kit.
Instructions
-
Identify the Tool Name: Extract the name of the tool the user wants to build (e.g., "StockPrice", "EmailSender").
-
Review the Example: Check
examples/WeatherTool.pyto understand the expected structure of an ADK tool (imports, inheritance, schema). -
Run the Scaffolder: Execute the python script to generate the initial file.
python scripts/scaffold_tool.py <ToolName> -
Refine: After generation, you must edit the file to:
- Update the
executemethod with real logic. - Define the JSON schema in
get_schema.
- Update the
Example Usage
User: "Create a tool to search Wikipedia." Agent:
- Runs
python scripts/scaffold_tool.py WikipediaSearch - Editing
WikipediaSearchTool.pyto add therequestslogic andqueryargument schema.