From core-instructions
コア指示ファイル(鉄則・実行プロセス・サブエージェントポリシー)を~/.claude/instructions/core/にインストールし、~/.claude/CLAUDE.mdに読み込みセクションを追加する。
How this skill is triggered — by the user, by Claude, or both
Slash command
/core-instructions:setup-instructionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
このスキルは以下の指示ファイルをグローバル設定にインストールします。
このスキルは以下の指示ファイルをグローバル設定にインストールします。
| ファイル | 内容 |
|---|---|
rules.md | 鉄則・必須作業 |
process.md | 提案基準・完了チェックリスト |
subagent-policy.md | サブエージェント利用ポリシー |
AskUserQuestion でどのファイルをインストールするか確認してください:
mkdir -p ~/.claude/instructions/core
選択されたファイルを ${CLAUDE_PLUGIN_ROOT}/instructions/ から ~/.claude/instructions/core/ へコピー:
# 例: すべてコピー
cp "${CLAUDE_PLUGIN_ROOT}/instructions/"*.md ~/.claude/instructions/core/
# 例: 個別コピー
cp "${CLAUDE_PLUGIN_ROOT}/instructions/rules.md" ~/.claude/instructions/core/
cp "${CLAUDE_PLUGIN_ROOT}/instructions/process.md" ~/.claude/instructions/core/
cp "${CLAUDE_PLUGIN_ROOT}/instructions/subagent-policy.md" ~/.claude/instructions/core/
~/.claude/CLAUDE.md を Read して、以下のセクションが存在しない場合のみ追加:
## 核心原則(必須)
- [鉄則](./instructions/core/rules.md)
- [実行プロセス](./instructions/core/process.md)
- [サブエージェントポリシー](./instructions/core/subagent-policy.md)
重要: 既にセクションが存在する場合は追加しない(重複防止)。既存のセクションがある場合は新しいファイル名に置き換える。
インストールしたファイルと追加した CLAUDE.md セクションを報告してください。
${CLAUDE_PLUGIN_ROOT} は Claude Code プラグインシステムがフック実行時に設定する環境変数find ~/.claude/plugins/cache/arkatom-plugins -name 'rules.md' でパスを特定してくださいGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub arkatom/claude-plugins --plugin core-instructions