用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nearai/ironclaw --skill coding命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | coding |
| version | 1.0.0 |
| description | Best practices for code editing, search, and file operations |
| activation | {"keywords":["edit","implement","refactor","bug","function","class","module","compile","rename"],"exclude_keywords":["memory","routine","schedule"],"patterns":["(?i)(add|remove|update|modify|create|delete|rename|move)\\s.*(file|function|class|method|variable|import)","(?i)(fix|debug|investigate|trace|find)\\s.*(bug|error|issue|crash|fail)"],"tags":["development","coding"],"max_context_tokens":1900} |
apply_patch over write_file for modifying existing files. It sends only the changed portion, preventing accidental full-file rewrites.read_file before editing. Understand the context before changing code. Never edit a file you haven't read.glob for file discovery instead of shell with find or ls. It's faster, safer, and returns structured results sorted by modification time.grep for content search instead of shell with grep or rg. It provides structured output modes (content, file paths, counts) and pagination.list_dir for directory exploration instead of shell with ls.read_file, then move to the next change.grep to search for all occurrences of the same pattern before committing a fix.shell to run the project's test command.A fix is not done when the code looks right — it is done when you have watched it work and watched everything around it keep working.