用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/sapegin/dotfiles --skill agent-comments命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | agent-comments |
| description | Scan project for agent code comments and fix them. |
| disable-model-invocation | true |
Find and fix every AI: comment in the current project.
From the project root (or the path the user gave):
agent-comments
Empty output means there is nothing to fix — say so and stop.
Each comment is a block:
path/to/file.ts:42
The instruction text
Blocks are separated by a blank line. The first line is file:line; the rest is the instruction.
Work through every comment before re-scanning.
AI: comment only after an actionable instruction has been fixed.Prefer fixing comments in dependency order when one fix clearly unblocks another (types before callers, shared helpers before usages).
Re-run agent-comments after all fixes. Repeat the fix loop until the scanner reports no comments or every remaining comment has been deliberately skipped. If skipped comments remain, report that the scanner is still non-empty and why each comment was retained.
Then run the project’s usual validation (tsc, linter, tests) when available. Fix failures caused by your changes.
Summarize:
file:line — one line on what changedIf nothing was found initially, one sentence is enough.