一键导入
coding
Navigate large codebases and make surgical edits while following project conventions. Use for refactors, feature work, and bug fixes spanning multiple files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Navigate large codebases and make surgical edits while following project conventions. Use for refactors, feature work, and bug fixes spanning multiple files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Inspect, filter, and summarize JSON, CSV, and log data using jq, awk, and pandas.
Read and edit Microsoft Word documents (.docx). Use for document editing and content extraction.
Branch, commit, rebase, and resolve conflicts. Use for PR prep, conventional commit messages, and history cleanup.
Author and edit README, CHANGELOG, and other markdown documentation, following the project's existing style.
Extract text, merge, split, and search PDF documents. Use whenever the user mentions a PDF file.
Read, write, and transform CSV and XLSX files. Use for Excel, tabular data, bulk row edits, and column transforms.
| name | coding |
| description | Navigate large codebases and make surgical edits while following project conventions. Use for refactors, feature work, and bug fixes spanning multiple files. |
search_files to find relevant symbols, functions, or patterns.edit_file with multi-line old_text for unique matches. Use write_file only for new files or full rewrites.Find where a function is defined:
search_files(pattern="def my_function", path="/project/src")
Find all callers of a function:
search_files(pattern="my_function(", path="/project")
Read a file in sections (large file):
read_file(path="/project/src/module.py", limit=100) # first 100 lines
read_file(path="/project/src/module.py", offset=100, limit=100) # next 100
Multi-line edit (unique match): Use enough surrounding context so old_text appears exactly once in the file.
Check for syntax errors (Python):
python3 -m py_compile /path/to/file.py && echo OK
Check for syntax errors (Go):
go vet ./...
Check for syntax errors (Rust):
cargo check
Check for syntax errors (Node):
node --check /path/to/file.js
references/python.md — Python idioms, test commands, common gotchasreferences/javascript.md — JS/TS idioms, test commands, ESM vs CJSreferences/go.md — Go idioms, test commands, module layoutreferences/rust.md — Rust idioms, test commands, cargo workflow