원클릭으로
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.