fix-all
仓库创建 2013年3月8日最近提交 23 天前SkillHot 收录 22 天前
▸ 精选理由
自动定位并批量实现遗留 FIXME,节省人工排查时间
▸ 风险提示
会直接修改代码库,建议人工复核与代码审查。
这个 Skill 做什么
扫描代码库的 FIXME 注释并尝试实现与修复它们。
扫描代码库里所有 FIXME 注释,逐条实现或修复并做验证(跑测试、编译检查),并排除第三方依赖目录以免误检。想把遗留 FIXME 清理掉、减少技术债、或把临时标记变成可靠实现时用。特点是系统化定位、分批处理改动并验证,减少遗漏和回归风险。
▸ 展开 SKILL.md 英文原文
Searches the codebase for all FIXME comments and addresses them.
61
Stars
19
Forks
4
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/jeremyckahn/dotfiles/master/agy/.gemini/antigravity/skills/fix-all/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/jeremyckahn/dotfiles/master/agy/.gemini/antigravity/skills/fix-all/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Fix All FIXME Comments This skill searches the current workspace codebase for `FIXME` comments and systematically addresses, implements, and verifies them. ## Workflow 1. **Locate Comments**: Use `grep_search` (or a terminal grep command if the tool is not available) to find all occurrences of `FIXME` in the workspace. Exclude third-party dependency directories (such as `node_modules`, `.git`, `vendor`, `build`, `dist`). 2. **Review & Plan**: For each found `FIXME` comment: - Use `view_file` to read the context around the comment. - Analyze the target code and description in the comment. - Determine what change is required. 3. **Address the FIXME**: - If the task is straight
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有