بنقرة واحدة
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.