원클릭으로
use
Force a specific orchestrator role or model for this conversation. Bypasses frontdoor routing to use a deterministic current role.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Force a specific orchestrator role or model for this conversation. Bypasses frontdoor routing to use a deterministic current role.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Process research URLs (papers, blogs, repos) through a structured intake pipeline. Extracts claims, deduplicates against a persistent index, cross-references existing work, expands literature, updates active handoffs, proposes handoff stubs, and produces a structured report. Use when ingesting new research material into the EPYC compendium.
Index the EPYC orchestrator x_* request overrides exposed through Hermes command skills.
Control the orchestrator stack lifecycle from Hermes via a thin wrapper over the existing stack launcher.
Lint, query, and maintain the project knowledge base. Use when auditing KB health, searching for compiled knowledge, or checking governance hygiene. Do not use when ingesting new research (use research-intake).
Use when reviewing a diff, commit, PR, dependency change, agent/tool change, or codebase surface for security risk. Runs a two-pass STRIDE + OWASP Top 10 + OWASP LLM + supply-chain review with exploit-path-gated findings and P0-P3 severity.
Cap or restore the escalation tier for this conversation. Controls how far the orchestrator can escalate from frontdoor to specialist models.
| name | use |
| description | Force a specific orchestrator role or model for this conversation. Bypasses frontdoor routing to use a deterministic current role. |
| version | 1.0.0 |
| metadata | {"hermes":{"tags":["routing","orchestrator","model-selection"]}} |
Override the orchestrator's automatic routing to force a specific model tier or role.
/use architect — Route to the current architect-tier role/use biggest — Route to the largest current hot role/use frontdoor — Stay on the current frontdoor role, no escalation/use worker — Route to the general worker role/use auto — Remove all overrides, return to normal MemRL-driven routingEach command maps to an extension field on the /v1/chat/completions request:
| Command | API Parameter | Value |
|---|---|---|
/use architect | x_orchestrator_role | "architect_general" |
/use biggest | x_orchestrator_role | "architect_general" |
/use frontdoor | x_orchestrator_role | "frontdoor" |
/use worker | x_orchestrator_role | "worker_general" |
/use auto | (remove all x_* fields) | — |
x_orchestrator_role, x_force_model, and x_max_escalation are strings;
boolean x_* overrides must be JSON booleansx_force_model takes precedence over x_orchestrator_roleGET /v1/models; verify concrete role names
before adding new command aliases