Request judgment from random humans when uncertain about subjective decisions. Crowdsourced opinions on tone, style, ethics, and reality checks. CRITICAL - Responses take minutes to hours (or may never arrive).
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install ask-a-human或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install ask-a-human⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/ask-a-human/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: ask-a-human description: Request judgment from random humans when uncertain about subjective decisions. Crowdsourced opinions on tone, style, ethics, and reality checks. CRITICAL - Responses take minutes to hours (or may never arrive). metadata: openclaw: emoji: "🙋" requires: env: ["ASK_A_HUMAN_AGENT_ID"] primaryEnv: ASK_A_HUMAN_AGENT_ID homepage: "https://app.ask-a-human.com" ---
This skill connects you to a global pool of random humans who answer questions from AI agents. Use it when you need diverse perspectives on subjective decisions.
Submitting a question does NOT give you an answer. It starts a process:
Do NOT use this if you need an immediate answer. Use your own judgment or ask the owner directly instead.
Request judgment from random humans when:
This IS:
This is NOT:
The strangers answering have no context beyond what you provide in the question. Write self-contained questions.
Use the exec tool to make API calls. The base URL is https://api.ask-a-human.com.
curl -X POST https://api.ask-a-human.com/agent/questions \
-H "Content-Type: application/json" \
-H "X-Agent-ID: $ASK_A_HUMAN_AGENT_ID" \
-d '{
"prompt": "Your question with full context",
"type": "multiple_choice",
"options": ["Option A", "Option B", "Option C"],
"min_responses": 5,
"timeout_seconds": 3600
}'
Parameters:
prompt (required): The question to ask. Include all necessary context.type: Either "text" (open-ended) or "multiple_choice" (predefined options)options: Array of choices for multiple_choice questions (2-10 items)audience: Target audience tags: ["technical", "product", "ethics", "creative", "general"]min_responses: Minimum responses needed (default: 5)timeout_seconds: How long to wait (default: 3600 = 1 hour)Response:
{
"question_id": "q_abc123def456",
"status": "OPEN",
"expires_at": "2026-02-02T15:30:00Z"
}
IMPORTANT: Store the question_id in your memory. You need it to check responses.
curl https://api.ask-a-human.com/agent/questions/q_abc123def456 \
-H "X-Agent-ID: $ASK_A_HUMAN_AGENT_ID"
Response:
{
"question_id": "q_abc123def456",
"status": "PARTIAL",
"prompt": "Your original question",
"type": "multiple_choice",
"options": ["Option A", "Option B", "Option C"],
"current_responses": 3,
"required_responses": 5,
"responses": [
{"selected_option": 0, "confidence": 4},
{"selected_option": 1, "confidence": 5},
{"selected_option": 0, "confidence": 3}
],
"summary": {
"Option A": 2,
"Option B": 1
}
}
Status values:
OPEN: Waiting for responses, none received yetPARTIAL: Some responses received, still collectingCLOSED: All requested responses receivedEXPIRED: Timeout reachedThis is the most important section. Choose the right pattern for your situation.
Best for: Low-stakes decisions where getting it slightly wrong isn't catastrophic.
1. Encounter a subjective decision
2. Submit question to ask-a-human, get question_id
3. Store in memory: "Asked about email tone, question_id=q_abc123"
4. Proceed immediately with your best guess
5. During next heartbeat or idle moment, check if answers arrived
6. If answers contradict your guess, note this for future similar decisions
Example internal reasoning:
I need to decide the tone for this error message. I'll ask the humans but proceed
with "apologetic" as my best guess. I'm storing question_id=q_abc123 to check later.
[Later, during heartbeat]
Let me check q_abc123... The humans said "direct, not apologetic" (4 out of 5).
I'll remember this preference for future error messages.
Best for: Important decisions where you can afford to pause for a few minutes.
1. Submit question
2. Tell the user: "I've asked some humans for their opinion. I'll wait up to 5 minutes."
3. Poll every 30-60 seconds (use exponential backoff: 30s, 45s, 67s, 100s...)
4. If answers arrive, proceed with crowd consensus
5. If timeout, proceed with fallback (own judgment)
Polling schedule (exponential backoff):
Example:
I'm uncertain about the headline for this blog post. Let me ask the humans.
[Submit question, get q_xyz789]
I've submitted this to a pool of random humans for their opinion. I'll check back
in about 30 seconds.
[30 seconds later, check responses]
Status: OPEN, 0 responses yet. Checking again in 45 seconds.
[45 seconds later]
Status: PARTIAL, 2 responses. "Headline B" leading. Checking again in 67 seconds.
[67 seconds later]
Status: PARTIAL, 4 responses. "Headline B" has 3 votes, "Headline A" has 1.
This is enough consensus. I'll proceed with Headline B.
Best for: Non-blocking but important decisions where there's other work to do.
1. Submit question
2. Mark the task as "pending human input" in your memory
3. Continue with completely unrelated work
4. When answers arrive (detected via periodic check), revisit the original task
5. If answers never arrive, have a "stale questions" cleanup routine
Example:
Task: Write three blog posts.
For Post 1, I need to decide the angle. Submitting to humans (q_post1_angle).
For now, I'll start on Post 2 which has a clear direction.
[Work on Post 2...]
Let me check my pending questions... q_post1_angle now has 5 responses!
The humans prefer "practical tutorial" over "thought leadership" (4-1).
Now I can complete Post 1 with that direction.
After a reasonable timeout (5-10 minutes for interactive, longer for background):
Example reasoning:
I waited 5 minutes for human input on the email tone, but received no responses.
The human pool may be empty right now. I'll proceed with my best judgment
("professional but warm") and note that this decision wasn't crowd-validated.
If you already made the decision:
...
安装 Ask a Human 后,可以对 AI 说这些话来触发它
Help me get started with Ask a Human
Explains what Ask a Human does, walks through the setup, and runs a quick demo based on your current project
Use Ask a Human to request judgment from random humans when uncertain about subjective...
Invokes Ask a Human with the right parameters and returns the result directly in the conversation
What can I do with Ask a Human in my marketing & growth workflow?
Lists the top use cases for Ask a Human, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/ask-a-human/ 目录(个人级,所有项目可用),或 .claude/skills/ask-a-human/(项目级)。重启 AI 客户端后,用 /ask-a-human 主动调用,或让 AI 根据上下文自动发现并使用。
Ask a Human 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Ask a Human 可免费安装使用。请查阅仓库了解许可证信息。
Request judgment from random humans when uncertain about subjective decisions. Crowdsourced opinions on tone, style, ethics, and reality checks. CRITICAL - Responses take minutes to hours (or may never arrive).
Ask a Human 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Ask a Human
Identifies repetitive steps in your workflow and sets up Ask a Human to handle them automatically