一键导入
ralphex-settings
View or change ralphex settings (base_branch, codex_model, codex_reasoning_effort)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
View or change ralphex settings (base_branch, codex_model, codex_reasoning_effort)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ralphex-settings |
| description | View or change ralphex settings (base_branch, codex_model, codex_reasoning_effort) |
| disable-model-invocation | true |
| allowed-tools | Bash(*) |
Manage the ralphex configuration stored in .claude/ralphex.local.md.
Check if .claude/ralphex.local.md exists. If it does, read it and parse the YAML frontmatter to extract the current values of base_branch, codex_model, and codex_reasoning_effort. If it does not exist, use these defaults: base_branch = main, codex_model = gpt-5.4, codex_reasoning_effort = high.
Show the user their current settings:
**Current ralphex settings:**
- base_branch: {value}
- codex_model: {value}
- codex_reasoning_effort: {value}
Ask the user which settings they want to change using AskUserQuestion.
For each selected setting, ask for the new value using AskUserQuestion:
base_branch: suggest the current value plus main, master, develop as options.codex_model: suggest gpt-5.4, gpt-5.4-mini, gpt-5.5 as options.codex_reasoning_effort: offer low, medium, high, xhigh as options with high first.Write the updated settings to .claude/ralphex.local.md with YAML frontmatter:
---
base_branch: {value}
codex_model: {value}
codex_reasoning_effort: {value}
---
Confirm the changes to the user by showing the new settings.