Openakita edit-file

Edit file by exact string replacement. Finds old_string and replaces with new_string. Safer and more token-efficient than write_file for modifying existing files. Auto-handles Windows CRLF line endings.

install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/edit-file" ~/.claude/skills/openakita-openakita-edit-file && rm -rf "$T"
manifest: skills/system/edit-file/SKILL.md
source content

Edit File

精确字符串替换式编辑文件。

Parameters

参数类型必填说明
pathstring文件路径
old_stringstring要替换的原文本(须精确匹配)
new_stringstring替换后的新文本
replace_allboolean是否替换所有匹配项(默认 false)

Examples

修改函数名:

{
  "path": "src/main.py",
  "old_string": "def old_name():",
  "new_string": "def new_name():"
}

批量替换变量名:

{
  "path": "src/config.py",
  "old_string": "old_var",
  "new_string": "new_var",
  "replace_all": true
}

Notes

  • 修改前请先用 read_file 确认文件内容
  • old_string 必须精确匹配(包括缩进和空格)
  • 如果 old_string 匹配多处且未设 replace_all,会报错
  • 自动兼容 Windows CRLF 和 Unix LF 换行符
  • 优先使用此工具而非 write_file 来编辑现有文件

Related Skills

  • read-file
    : 先读取文件确认内容
  • write-file
    : 创建新文件或完全覆盖
  • grep
    : 搜索要编辑的内容位置