From 8f5428150d18ed732b66379c0acb806a9121c3cb Mon Sep 17 00:00:00 2001 From: Kathy Wu Date: Tue, 24 Feb 2026 14:34:52 -0800 Subject: [PATCH] fix: Update sample skills agent to use weather-skill instead of weather_skill Co-authored-by: Kathy Wu PiperOrigin-RevId: 874796345 --- contributing/samples/skills_agent/agent.py | 2 +- .../skills/{weather_skill => weather-skill}/SKILL.md | 0 .../{weather_skill => weather-skill}/references/weather_info.md | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename contributing/samples/skills_agent/skills/{weather_skill => weather-skill}/SKILL.md (100%) rename contributing/samples/skills_agent/skills/{weather_skill => weather-skill}/references/weather_info.md (100%) diff --git a/contributing/samples/skills_agent/agent.py b/contributing/samples/skills_agent/agent.py index 6cd69ffb..9caf0ad7 100644 --- a/contributing/samples/skills_agent/agent.py +++ b/contributing/samples/skills_agent/agent.py @@ -41,7 +41,7 @@ greeting_skill = models.Skill( ) weather_skill = load_skill_from_dir( - pathlib.Path(__file__).parent / "skills" / "weather_skill" + pathlib.Path(__file__).parent / "skills" / "weather-skill" ) my_skill_toolset = SkillToolset(skills=[greeting_skill, weather_skill]) diff --git a/contributing/samples/skills_agent/skills/weather_skill/SKILL.md b/contributing/samples/skills_agent/skills/weather-skill/SKILL.md similarity index 100% rename from contributing/samples/skills_agent/skills/weather_skill/SKILL.md rename to contributing/samples/skills_agent/skills/weather-skill/SKILL.md diff --git a/contributing/samples/skills_agent/skills/weather_skill/references/weather_info.md b/contributing/samples/skills_agent/skills/weather-skill/references/weather_info.md similarity index 100% rename from contributing/samples/skills_agent/skills/weather_skill/references/weather_info.md rename to contributing/samples/skills_agent/skills/weather-skill/references/weather_info.md