بنقرة واحدة
config
Use when a Make It Real project needs optional settings reviewed or changed through semantic operator choices.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when a Make It Real project needs optional settings reviewed or changed through semantic operator choices.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when a feature request needs Make It Real PRD, architecture, responsibility boundaries, contracts, design-pack artifacts, or Kanban work decomposition before implementation.
Use when a feature request needs Make It Real PRD, architecture, responsibility boundaries, contracts, design-pack artifacts, or Kanban work decomposition before implementation.
Use when an approved Make It Real plan should advance into gated Kanban execution, agent orchestration, verification, and live-wiki synchronization.
Use when an approved Make It Real plan should advance into gated Kanban execution, agent orchestration, verification, and live-wiki synchronization.
Use when a Make It Real run needs manual verification, blocked-gate diagnosis, contract checks, evidence review, or Done-readiness inspection.
Use when a Claude Code project needs Make It Real initialization, hook setup, run-state wiring, or first-time harness configuration before planning or launch.
| name | config |
| description | Use when a Make It Real project needs optional settings reviewed or changed through semantic operator choices. |
Read or update project-local Make It Real options. The normal user-facing action
is /mir:config; keep internal config file paths and engine subcommands out of
ordinary workflow narration unless the user asks.
Treat config as a semantic operator workflow, not a raw settings editor. The
operator should be able to say "wiki off", "dashboard quiet", "restore defaults",
or invoke /mir:config with no arguments and answer a Claude Code question.
makeitreal-engine config get "${CLAUDE_PROJECT_DIR:-$PWD}" to inspect current settings.| Setting | Current value | What it affects |
|---|---|---|
| Live Wiki | on/off | whether verified work syncs to the live wiki |
| Dashboard auto-open | on/off | whether the browser dashboard opens automatically |
| Refresh on status | on/off | whether status refreshes preview files |
| Refresh on launch | on/off | whether launch refreshes preview files |
| Refresh on verify | on/off | whether verify refreshes preview files |
Then use AskUserQuestion with these choices:
Quiet dashboard - Stop auto-opening the dashboard and skip status-time refreshes.
Restore defaults - Turn all optional features back on.
Toggle live wiki - Enable or disable live wiki sync.
Adjust dashboard refresh - Choose which dashboard refresh triggers are enabled.
Advanced view - Show exact engine flags and config path.
No change - Leave settings as they are.
If arguments are present, classify the semantic operator intent. Do not pass raw $ARGUMENTS through. Use only the deterministic engine actions below.
| Operator wording | Engine action |
|---|---|
| "quiet", "dashboard quiet", "stop popping open dashboard" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --profile quiet |
| "default", "restore defaults", "turn everything back on" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --profile default |
| "wiki off", "disable wiki", "no live wiki" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --live-wiki disabled |
| "wiki on", "enable wiki" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --live-wiki enabled |
| "auto-open off", "do not open browser" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-auto-open disabled |
| "auto-open on", "open dashboard automatically" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-auto-open enabled |
| "status refresh off" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-status disabled |
| "status refresh on" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-status enabled |
| "launch refresh off" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-launch disabled |
| "launch refresh on" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-launch enabled |
| "verify refresh off" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-verify disabled |
| "verify refresh on" | makeitreal-engine config set "${CLAUDE_PROJECT_DIR:-$PWD}" --dashboard-refresh-on-verify enabled |
features.* keys directly unless they explicitly ask for advanced/manual configuration.preview/index.html remains mandatory because Ready gating depends on it.dashboardRefresh.skipped result; it must not weaken gates or evidence.wiki sync as the normal toggle mechanism.Lead with a user-facing settings table and a short sentence describing what
changed. Put raw features.liveWiki.enabled, features.dashboard.*, engine
flags, and the config path under "Advanced diagnostics" only when useful.