fix(skills): normalize load_skill_from_dir relative path resolution#4687
fix(skills): normalize load_skill_from_dir relative path resolution#4687pandego wants to merge 2 commits intogoogle:mainfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves an issue with skill directory path resolution where relative paths, especially those prefixed with an agent's name, could lead to incorrect or duplicated path segments when the execution environment's current working directory was already within the agent's scope. By introducing a dedicated path resolution utility, the changes ensure consistent and correct interpretation of skill directory paths, preventing "missing directory" errors and improving the robustness of skill loading and validation. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a fix for relative path resolution when loading skills, specifically addressing issues with duplicated path segments. The new _resolve_skill_dir_path function is a good approach to centralize this logic. However, I've identified a potential correctness issue in the order of path candidate evaluation and a potentially risky check that could lead to incorrect path resolution in some edge cases. My feedback includes a suggestion to make the path resolution logic safer and more predictable.
Closes #4684
Problem
load_skill_from_dircurrently resolves relative paths from the current working directory only. In Agent Engine flows, code may execute from the agent directory while examples/path inputs include the agent directory prefix (for examplemy-agent/skills/my-skill), producing a duplicated segment and a missing directory error.Solution
_resolve_skill_dir_pathto normalize skill directory resolution for relative paths.load_skill_from_dir,validate_skill_dir, andread_skill_propertiesto keep behavior consistent.Testing Plan
uv run pytest tests/unittests/skills/test__utils.pyChecklist