一键导入
coder
Coding assistant capabilities including file investigation, reading, searching, editing, and command execution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Coding assistant capabilities including file investigation, reading, searching, editing, and command execution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
File-based planning system.
Agent delegation and orchestration capabilities to split tasks and run them in parallel.
Git version control operations for repositories.
Office document reading capabilities using the markitdown library.
Operating System file manipulation capabilities (list, bulk create, bulk move, regex move).
System administration tools for local OS info and remote SSH connection management.
| name | coder |
| description | Coding assistant capabilities including file investigation, reading, searching, editing, and command execution. |
| allowed-tools | ["investigate_and_save_report","read_code_file","search_in_files","edit_code_file","apply_edit_blocks","run_terminal_command","create_file"] |
This skill provides the agent with capabilities to act as a coding assistant, exploring projects, reading code, and making edits.
Investigates a folder structure and writes a markdown summary named ".test.Agent.md" in that folder.
folder_path: The absolute path of the folder to investigate.Read a code file incrementally.
file_path: Absolute path to the file.start_line: Starting line number (1-based, inclusive). Default is 1.end_line: Ending line number (1-based, inclusive). Default is -1 (end of file).Use grep to search for patterns in files within a directory.
folder_path: The directory to search in.pattern: The text or regex pattern to search for.Edit a code file by replacing an exact text block.
file_path: Absolute path to the file.old_string: The exact string to find and replace.new_string: The string to replace it with.Apply multiple search/replace edits to a file in a single pass. This is PREFERRED over edit_code_file for complex changes.
file_path: Absolute path to the file.edits: A string containing one or more edit blocks using the SEARCH/REPLACE format.Create a new file with optional content, overwrite existing file, or append.
file_path: Absolute path to the file.content: Optional text content to write.overwrite: If True (default), overwrite existing file.append: If True, append content to existing file.Run terminal commands.
command: The full shell command to execute.To edit files efficiently and correctly using apply_edit_blocks, follow this distinct workflow. This method prevents "SEARCH block not found" errors by ensuring you have the exact text.
read_code_file) to find the approximate location of the code you want to change.sed to extract exactly those lines.sed -n '10,15p' <filename>SEARCH block, guaranteeing a match.<<<<<<< SEARCH block.======= ... >>>>>>> REPLACE block.apply_edit_blocks.apply_edit_blockssed or cat to get the raw text is safer than remembering it. Note: Avoid using cat -a on Windows or macOS, as the -a flag is not available. Use sed or plain cat instead.SEARCH block to ensure it is unique within the file.SEARCH/REPLACE blocks in one tool call to perform several edits at once.Goal: Change a print statement on line 42.
Check Content:
sed -n '40,45p' main.py
Output:
if x > 0:
print("Positive")
return True
Call Tool:
{
"file_path": "/abs/main.py",
"edits": "<<<<<<< SEARCH\n if x > 0:\n print(\"Positive\")\n return True\n=======\n if x > 0:\n print(\"Found positive value\")\n return True\n>>>>>>> REPLACE"
}