Stats
Actions
Tags
How this command is triggered — by the user, by Claude, or both
Slash command
/rlm-claude-code:simpleThe summary Claude sees in its command listing — used to decide when to auto-load this command
Bypass RLM mode for a simple operation. ## Usage `/simple [command]` — Execute command without RLM orchestration ## When to Use Use `/simple` when you know the task doesn't need RLM's context decomposition: - Quick file reads: `/simple show package.json` - Simple commands: `/simple run npm test` - Git operations: `/simple git status` - Acknowledgments: `/simple yes, continue` ## How It Works The `/simple` prefix tells RLM to skip complexity analysis and execute directly through standard Claude Code. This: 1. Avoids the ~50ms complexity classifier overhead 2. Skips context externaliz...
Bypass RLM mode for a simple operation.
/simple [command] — Execute command without RLM orchestration
Use /simple when you know the task doesn't need RLM's context decomposition:
/simple show package.json/simple run npm test/simple git status/simple yes, continueThe /simple prefix tells RLM to skip complexity analysis and execute directly through standard Claude Code. This:
/simple cat README.md
/simple git diff HEAD~1
/simple npm install lodash
/simple ls -la src/
Don't use /simple for:
These benefit from RLM's context decomposition and recursive analysis.
npx claudepluginhub narailabs/rlm-claude-code/simpleBypasses RLM orchestration layer to execute a simple command directly, avoiding complexity analysis and context decomposition.