ワンクリックで
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.