원클릭으로
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 직업 분류 기준
| 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 /makeitreal: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 /makeitreal: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.
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.