用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pydantic/monty --skill fastmod命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Review the current branch against its merge base for bugs, CPython divergence, sandbox escapes, resource-limit escapes, performance regressions, verbose comments and missing ./limitations/ or docs/ updates. Use for a general pre-merge review of a branch or PR.
How to write prose that reads like human technical documentation rather than LLM output. Use whenever writing or editing docstrings, comments, limitations/ docs, READMEs, commit messages or PR descriptions, and when prose reads as smooth, salesy or generic.
Security review of the current branch against its merge base — sandbox escapes, memory errors, panics and resource-limit bypasses. Use when reviewing changes for security risk, or before merging anything touching heap.rs, path_security.rs, the wire protocol or the pool.
基于 SOC 职业分类
正在显示 SKILL.md
| name | fastmod |
| description | Use fastmod to make mass code updates to avoid many repetitive changes. |
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.
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'