設定パターン
インストール方法
bash
# リリース版インストーラ
curl -fsSL -o /tmp/install-mistermorph.sh https://raw.githubusercontent.com/quailyquaily/mistermorph/refs/heads/master/scripts/install-release.sh
sudo bash /tmp/install-mistermorph.shbash
# Go からインストール
go install github.com/quailyquaily/mistermorph/cmd/mistermorph@latest初期ファイル作成
bash
mistermorph installデフォルトでは、state は ~/.morph/、cache は ~/.cache/morph に置かれます。
workspace_dir、file_cache_dir、file_state_dir の違いは ファイルシステムのルート を参照してください。
設定の優先順位
- CLI フラグ
- 環境変数
config.yaml
最小 config.yaml
yaml
llm:
inference_provider: openai
model: gpt-5.4
api_key: ${OPENAI_API_KEY}LLM Profiles と Routes
yaml
llm:
model: gpt-5.4
profiles:
cheap:
model: gpt-4.1-mini
reasoning:
inference_provider: xai
model: grok-4.1-fast-reasoning
routes:
main_loop:
candidates:
- profile: default
weight: 1
- profile: cheap
weight: 1
fallback_profiles: [reasoning]
addressing:
profile: cheap
awareness: cheap
think: reasoningツールの有効/無効
yaml
tools:
bash:
enabled: false
url_fetch:
enabled: true
timeout: "30s"実行上限
yaml
max_steps: 20
tool_repeat_limit: 4キーの完全一覧は assets/config/config.example.yaml を参照。