# Read env first (CC 2.1.120+), then check explicit override EFFORT = os.environ.get("CLAUDE_EFFORT") # "low" | "medium" | "high" | "xhigh" | None for token in "$ARGUMENTS".split(): if token.startswith("--effort="): EFFORT = token.split("=", 1)[1] # explicit override wins EFFORT = EFFORT or "high" # default when CC < 2.1.120 and no flag
Backwards-compatible: on CC < 2.1.120 the env var is unset, so the explicit --effort=... token is the only path. /ork:doctor warns when xhigh is requested without Opus 4.7.
/ork:help already pointed users at this in its leading tip.| You want to… | Use | Why |
|---|---|---|
| find one skill quickly | /skills | type-to-filter is fastest for known names |
| browse by category | /ork:help | shows BUILD / GIT / PLAN / MEMORY / QUALITY etc. |
| understand why a skill applies | /ork:help | shows trigger keywords + examples |