원클릭으로
rtk-toggle
Toggle or inspect the rtk token-filter mode used by /front-agent for the current session. Plugin-scoped; no global hook.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Toggle or inspect the rtk token-filter mode used by /front-agent for the current session. Plugin-scoped; no global hook.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Single entry point for frontend work. Classify intent, create a plan, and run the minimal agent workflow.
Independent adversarial code review via Codex CLI to eliminate Claude self-review bias
Find reusable components with compact output before UI work
Create a task branch after plan approval
Create scoped Conventional Commits after reviewer PASS
Create an issue for failed tests or tracked follow-up work
SOC 직업 분류 기준
| name | rtk-toggle |
| description | Toggle or inspect the rtk token-filter mode used by /front-agent for the current session. Plugin-scoped; no global hook. |
Trigger: /rtk [mode]
Purpose: Let the user choose whether this plugin's internal Bash calls (tsc, eslint, git, gh, test runners, grep/find/ls) pipe through rtk for token compression.
| Mode | Behavior |
|---|---|
off | Raw commands. Default. |
standard | rtk applied to git/gh/tsc/eslint/test/grep/find/ls. |
aggressive | Same as standard plus -u (ultra-compact) flag. |
git-only | rtk applied only to git/gh commands; everything else raw. |
/rtk standard, /rtk off, etc. — write the mode and report./rtk status — print the currently resolved mode without changing it.hooks/rtk-wrap.sh)FE_COPILOT_RTK env var — hard override, never touched by this skill..fe-copilot-cache/rtk-session.flag — written by this skill and by /front-agent.off.bash hooks/rtk-wrap.sh --set <mode>
Valid modes: off | standard | aggressive | git-only. Reject others with a one-line error.
/rtk statusbash hooks/rtk-wrap.sh --mode
Report the returned value. If FE_COPILOT_RTK is set, mention that the env var is overriding the flag file.
/rtk with no argUse the AskUserQuestion tool with one question, 4 options (off / standard / aggressive / git-only). After the user answers, persist with bash hooks/rtk-wrap.sh --set <answer>.
Single compact line:
rtk mode: standard (session flag written)
No prose, no emojis, no explanation of how rtk works internally.
.fe-copilot-cache/rtk-session.flag scoped to this plugin directory.rtk-wrap.sh will silently fall back to raw commands at runtime.