一键导入
edit-target-prompts
Read, edit, and diff .claude prompt assets (skills, agents, rules) in the target repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read, edit, and diff .claude prompt assets (skills, agents, rules) in the target repo.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | edit-target-prompts |
| description | Read, edit, and diff .claude prompt assets (skills, agents, rules) in the target repo. |
| user_invocable | true |
| arguments | [{"name":"action","description":"Action: list, read <name>, edit <name>, diff <name>","required":true}] |
This skill is the only way to read or modify .claude/ files in the target repo. Direct Read/Edit/Write calls to files under the target repo's .claude/ directory are forbidden — use this skill instead.
Every prompt asset change must be:
git reset --hard HEAD~1 discardsUse pixi run target-dot-claude-list to discover available assets. You can also use paths relative to .claude/ (e.g., rules/some-rule.md, skills/run/SKILL.md).
pixi run target-dot-claude-list
pixi run target-dot-claude-list --json
pixi run target-dot-claude-read skill
pixi run target-dot-claude-read rules/pipeline-structure.md
To edit, you must:
target-dot-claude-readtarget-dot-claude-edit:echo "new content" | pixi run target-dot-claude-edit skill
In practice as Claude Code, the workflow is:
Bash("pixi run target-dot-claude-read skill") — read current contentBash("pixi run target-dot-claude-edit skill <<'PROMPT_EOF'\n<new content>\nPROMPT_EOF") — write and get diffecho "proposed content" | pixi run target-dot-claude-diff skill
The supervisor edits the researcher's .claude/ files via pixi run dot-claude-edit.
The researcher edits the target's .claude/ files via pixi run target-dot-claude-edit.
Both use the same harness_core.prompt_editor functions underneath — logged, diffed, auto-committed.