Agent Skills
› pydantic/monty
› fastmod
fastmod
GitHub使用 fastmod 或 sed 对代码库进行大规模批量替换,避免逐个修改重复内容,提升效率。
Trigger Scenarios
需要进行大量重复性的代码文本替换
希望自动化执行批量代码更新以避免手动操作
Install
npx skills add pydantic/monty --skill fastmod -g -y
SKILL.md
Frontmatter
{
"name": "fastmod",
"description": "Use fastmod to make mass code updates to avoid many repetitive changes."
}
fastmod
Instructions
You can occasionally use fastmod or sed to make mass updates to the codebase and avoid wasting tokens changing each case one at a time.
Before making many repetitive changes to the codebase, consider using fastmod --accept-all.
THINK HARD about how best to use fastmod as it can dramatically improve your productivity.
Examples
Example of switching the py_type function to take heap: &Heap instead of a generic H: HeapAccess parameter:
fastmod --accept-all 'fn py_type<H: HeapAccess>\((.+?), heap: &H\b' 'fn py_type($1, heap: &Heap'
Version History
- 026b383 Current 2026-08-20 09:39


