用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/plmbr/nui --skill ask-user命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create a nui ADL agent definition from the current conversation and save it to ~/.nui/agents/
Save durable facts to nui persistent memory (~/.nui/memory/) when the user asks
Render charts inline in nui chat via show_visualization — never use dataviz Skill or Write
基于 SOC 职业分类
正在显示 SKILL.md
| name | ask-user |
| description | Ask the human structured questions via nui HITL instead of plain chat text |
When you need any input, clarification, preference, or approval from the human, use the nui-hitl MCP tool ask_user. Do not ask those questions only in assistant text — the human answers through the nui UI prompt card.
ask_userUse the MCP tool ask_user on server nui-hitl with a questions array. Each question object can include:
question — the prompt text (required)header — short label shown in the UI (optional)options — array of { "label": "...", "description": "..." } for multiple choice (optional)Example:
{
"title": "Recipe preferences",
"questions": [
{
"header": "Region",
"question": "Which South American country or region should the recipe focus on?",
"options": [
{ "label": "Peru", "description": "Andean / coastal Peruvian" },
{ "label": "Argentina", "description": "Grilled meats, empanadas" },
{ "label": "Brazil", "description": "Feijoada, moqueca, etc." }
]
},
{
"header": "Diet",
"question": "Any dietary restrictions?",
"options": [
{ "label": "None" },
{ "label": "Vegetarian" },
{ "label": "Gluten-free" }
]
}
]
}
Wait for the tool result (answers from the human), then continue with the task using those answers.
For yes/no gates before risky actions, use request_approval on nui-hitl instead of ask_user.
ask_user is available