Agent skill · Frontend

ask-user-question

Ask users questions via the UI. Use when you need clarification, user preferences, or confirmation before proceeding. The user CANNOT see CLI output - this tool is the ONLY way to communicate with them.

MemTensorgithub.com/MemTensorGitHub ↗
claude-codeships scriptsApache-2.0
Install
npx skills add MemTensor/MemOS --skill ask-user-question --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 4
SKILL.md size: 4 KB
Bundled scripts: yes
Path: apps/openwork-memos-integration/apps/desktop/skills/ask-user-question/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 10,587 · +166 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Ask User Question Use this MCP tool to ask users questions and get their responses. This is the **ONLY** way to communicate with the user - they cannot see CLI/terminal output. ## Critical Rule The user **CANNOT** see your text output or CLI prompts! If you write "Let me ask you..." and then just output text - **THE USER WILL NOT SEE IT**. You MUST call this tool to display a modal in the UI. ## When to Use - Clarifying questions before starting ambiguous tasks - Asking user preferences (e.g., "How would you like files organized?") - Confirming actions before executing (especially destructive/irreversible ones) - Getting approval for sensitive actions (financial, messaging, deletion, etc.) - Any situation where you need user input to proceed ## Parameters ```json { "questions": [{ "question": "Your question to the user", "header": "Short label (max 12 chars)", "options": [ { "label": "Option 1", "description": "What this does" }, { "label": "Option 2", "description": "What this does" } ], "multiSelect": false }] } ``` - `question` (required): The question text to display - `header` (optional): Short category label, shown as modal title (max 12 chars) - `options` (optional): Array

What's inside
Steps it walks through
  1. Critical Rule
  2. When to Use
  3. Parameters
  4. Examples
  5. Asking about organization preferences
  6. Confirming a destructive action
  7. Simple yes/no confirmation
  8. Response Format
  9. Wrong vs Correct
Ships with 3 files
  • package.json
  • src/index.ts
  • tsconfig.json
More from MemOS
All skills →
About this skill
What does the ask-user-question skill do?

Ask users questions via the UI. Use when you need clarification, user preferences, or confirmation before proceeding. The user CANNOT see CLI output - this tool is the ONLY way to communicate with them.

How do I install it?

Run `npx skills add MemTensor/MemOS --skill ask-user-question --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From MemTensor/MemOS, a repository with 10,587 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going