ワンクリックで
no-deep-flag-review
Review deep UI/mode flag passing into domain or renderer internals; suggest strategy/boundary fixes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review deep UI/mode flag passing into domain or renderer internals; suggest strategy/boundary fixes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create, repair, validate, visually QA, and package Codex-compatible v2 animated pets from character art, generated images, company or prospect brand cues, or visual references. Use for any new Codex pet, custom mascot, non-pixel pet style, brand-inspired pet, existing-pet repair, or 8x11 spritesheet workflow requiring all 9 standard animation rows, 16 look directions, deterministic assembly, QA artifacts, and spriteVersionNumber 2 packaging.
Rewrite current branch into N semantic commits with a legacy backup branch and optional rebase onto origin/main.
Merge origin/main into current branch while preserving branch intent, context, and ownership decisions.
Chain branch onboarding, code-health, and non-test analysis into a branch-scoped remediation plan.
Summarize current branch diff from fork point with intent, scope, risks, and context for follow-on work.
Audit codebase architecture: module dependencies, layering, circular imports, ownership, and structural decay.
| name | no-deep-flag-review |
| description | Review deep UI/mode flag passing into domain or renderer internals; suggest strategy/boundary fixes. |
Enforce one-time branching at the system boundary. Keep lower layers mode-agnostic by injecting behavior (callable, strategy object, delegate) instead of passing raw control flags.
mode, variant, viewType, isX, enum-like mode values.probe-deep-search for repo-wide flag discovery, call-chain tracing, and exact code extraction before concluding how deep a mode flag propagates.critic subagent.architect only when the fix direction requires meaningful redesign tradeoffs across boundaries or public interfaces.critic pass focused on evidence: flag propagation depth, repeated branching, and the smallest viable boundary-only fix direction.if/elif/switch based on mode-like control flags.CARD_VIEW, TABLE_VIEW, etc.).if mode == A: strategy = ...; elif mode == B: strategy = ...mode parameter.strategy/delegate/callable.rg -n "if .*mode|elif .*mode|switch\\s*\\(.*mode|case .*MODE" <target_paths>rg -n "(mode|variant|view|is_[a-z_]+)\\s*[:=]" <target_paths>High, Medium, Low.Location (file and line)Violation (how deep flag passing occurs)Why it matters (shotgun-surgery/OCP risk)Minimal fix direction (boundary branch + strategy injection)Mode-addition impact (what breaks when adding new mode)If no violation is found, state: No deep flag passing violation found. and include residual uncertainty.