بنقرة واحدة
help
Guide on using oh-my-qwencode plugin
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Guide on using oh-my-qwencode plugin
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Diagnose and fix oh-my-qwencode installation issues
Run deep investigation of architecture, bugs, performance issues, or dependencies and return structured findings with file:line evidence. Use when a user says 'analyze', 'investigate', 'why does', 'what's causing', or needs root cause analysis before making changes. Routes to architect agent or Qwen Code MCP for thorough cross-file reasoning.
Ask Claude via local CLI and capture a reusable artifact
Ask Gemini via local CLI and capture a reusable artifact
Full autonomous execution from idea to working code
Fix build and TypeScript errors with minimal changes
| name | help |
| description | Guide on using oh-my-qwencode plugin |
You don't need to learn any commands! OMQ enhances Qwen Code with intelligent behaviors that activate automatically.
| When You... | I Automatically... |
|---|---|
| Give me a complex task | Parallelize and delegate to specialist agents |
| Ask me to plan something | Start a planning interview |
| Need something done completely | Persist until verified complete |
| Work on UI/frontend | Activate design sensibility |
| Say "stop" or "cancel" | Intelligently stop current operation |
You can include these words naturally in your request for explicit control:
| Keyword | Effect | Example |
|---|---|---|
| ralph | Persistence mode | "ralph: fix all the bugs" |
| ralplan | Iterative planning | "ralplan this feature" |
| ulw | Max parallelism | "ulw refactor the API" |
| plan | Planning interview | "plan the new endpoints" |
ralph includes ultrawork: When you activate ralph mode, it automatically includes ultrawork's parallel execution. No need to combine keywords.
Just say:
I'll figure out what to stop based on context.
If you haven't configured OMQ yet:
/omq-setup
This is the only command you need to know. It downloads the configuration and you're done.
If you only need lightweight directory guidance scaffolding for AGENTS.md files, use:
omq agents-init .
That command is intentionally narrower than full setup: it only bootstraps AGENTS.md files for the target directory and its immediate child directories.
Your old commands still work! /ralph, /ultrawork, /plan, etc. all function exactly as before.
But now you don't NEED them - everything is automatic.
Analyze your oh-my-qwencode usage and get tailored recommendations to improve your workflow.
Note: This replaces the former
/learn-about-omcskill.
~/.omq/state/token-tracking.jsonl.omq/state/session-history.json# Check for token tracking data
TOKEN_FILE="$HOME/.omq/state/token-tracking.jsonl"
SESSION_FILE=".omq/state/session-history.json"
CONFIG_FILE="$HOME/.qwen/.omq-config.json"
echo "Analyzing OMQ Usage..."
echo ""
# Check what data is available
HAS_TOKENS=false
HAS_SESSIONS=false
HAS_CONFIG=false
if [[ -f "$TOKEN_FILE" ]]; then
HAS_TOKENS=true
TOKEN_COUNT=$(wc -l < "$TOKEN_FILE")
echo "Token records found: $TOKEN_COUNT"
fi
if [[ -f "$SESSION_FILE" ]]; then
HAS_SESSIONS=true
SESSION_COUNT=$(cat "$SESSION_FILE" | jq '.sessions | length' 2>/dev/null || echo "0")
echo "Sessions found: $SESSION_COUNT"
fi
if [[ -f "$CONFIG_FILE" ]]; then
HAS_CONFIG=true
DEFAULT_MODE=$(cat "$CONFIG_FILE" | jq -r '.defaultExecutionMode // "not set"')
echo "Default execution mode: $DEFAULT_MODE"
fi
if [[ "$HAS_TOKENS" == "true" ]]; then
echo ""
echo "TOP AGENTS BY USAGE:"
cat "$TOKEN_FILE" | jq -r '.agentName // "main"' | sort | uniq -c | sort -rn | head -10
echo ""
echo "MODEL DISTRIBUTION:"
cat "$TOKEN_FILE" | jq -r '.modelName' | sort | uniq -c | sort -rn
fi
Based on patterns found, output recommendations:
If high Opus usage (>40%) and no ecomode:
If no team usage:
If no security-reviewer usage:
If defaultExecutionMode not set:
Format a summary with:
📊 Your OMQ Usage Analysis
TOKEN SUMMARY:
- Total records: 1,234
- By Reasoning Effort: high 45%, medium 40%, low 15%
TOP AGENTS:
1. executor (234 uses)
2. architect (89 uses)
3. explore (67 uses)
UNDERUTILIZED FEATURES:
- ecomode: 0 uses (could save ~30% on routine tasks)
- team: 0 uses (great for coordinated workflows)
RECOMMENDATIONS:
1. Set defaultExecutionMode: "ecomode" to save tokens
2. Try /team for PR review workflows
3. Use explore agent before architect to save context
If no data found:
📊 Limited Usage Data Available
No token tracking found. To enable tracking:
1. Ensure ~/.omq/state/ directory exists
2. Run any OMQ command to start tracking
Tip: Run /omq-setup to configure OMQ properly.
Version: 4.2.3