OMC ask

Dispatch the ask skill from OMC plugin with argument passthrough.

1|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/Leap0920/Clean-Portfolio --skill omc-ask-leap0920
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: OMC ask
Source: https://github.com/Leap0920/Clean-Portfolio/tree/main/%25USERPROFILE%25/.openclaude/plugins/cache/omc/oh-my-claudecode/4.14.0/commands
Command: npx skills add https://github.com/Leap0920/Clean-Portfolio --skill omc-ask-leap0920

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It reduces friction when repeatedly using /oh-my-claudecode:ask by avoiding the need to load the full bundled ask skill description on every Claude Code session.

Core Features & Use Cases

  • Compatibility Command: Keeps /oh-my-claudecode:ask available while using a lightweight stub.
  • Instruction Dispatch: Reads the authoritative operational instructions from the active OMC plugin’s skills/ask/SKILL.md and follows them exactly.
  • Argument Passthrough: Treats user input as $ARGUMENTS so your request flows through unchanged.

Use case: You’re running iterative question-and-answer workflows in Claude Code and want a faster command startup without losing the full behavior defined by OMC’s bundled ask skill.

Quick Start

Tell Claude Code to run the command /oh-my-claudecode:ask followed by your question in the same message.

Frequently Asked Questions about OMC ask

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I speed up Claude Code CLI commands when reloading bundled instructions slows my workflow?

To speed up Claude Code CLI commands, use a lightweight compatibility stub that dispatches the ask behavior without reloading the full bundled instructions on every session. This reduces friction during iterative question-and-answer workflows by loading the specific skill file directly.

How do I dispatch interactive Q&A tasks in Claude Code using argument passthrough?

Dispatch interactive Q&A tasks in Claude Code by running the lightweight compatibility command followed by your question. The command treats your input as arguments and passes them unchanged to the underlying skill instruction file for execution.

What is instruction dispatch in Claude Code and how does it preserve argument passthrough?

Instruction dispatch in Claude Code is a mechanism that reads the authoritative operational instructions from a specific skill file and executes them exactly. It preserves argument passthrough by treating the user input as raw arguments so the request flows through unchanged.

Does the OMC plugin compatibility command work without loading the full skill description?

Yes, the OMC plugin compatibility command works without loading the full skill description. It applies a lightweight stub to any Claude Code session and reads the necessary operational instructions directly from the active plugin root directory.

Why does repeatedly loading bundled ask instructions slow down Claude Code sessions?

Repeatedly loading bundled ask instructions slows down Claude Code sessions because the full skill description is loaded into context on every new session. Using a lightweight compatibility stub avoids this overhead by loading the instructions only when dispatched.