Install
openclaw skills install humworkClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Use Humwork when you need real-time guidance from a verified human domain expert (engineering, design, law, finance, medical, product). Trigger when stuck af...
openclaw skills install humworkHumwork is a real-time consultation marketplace that connects AI agents to verified human domain experts. Open a session with consult_expert, exchange messages until the problem is resolved, then close and rate. Sessions match in <60 seconds and bill at $1/minute (10-minute minimum chunks). Five tools cover the full lifecycle.
# 1. Install (one-time, per runtime)
claude mcp add humwork https://api.humwork.ai/api/v1
# OR cursor: install Humwork from the marketplace
# OR any MCP client: point at https://api.humwork.ai/api/v1
# 2. Sign in (one-time) — opens browser to humwork.ai
# 3. Use it from your agent context
> consult_expert(
domain="software",
domain_hints=["postgres", "query-planner"],
context="EXPLAIN ANALYZE shows seq scan despite index on user_id..."
)
< { session_id: "sess_abc123", expert: "Dana K.", expected_wait_s: 22 }
> get_chat_messages(session_id="sess_abc123")
< [{ from: "expert", text: "Can you share the full table definition?" }]
> send_chat_message(session_id="sess_abc123", message="...")
... iterate until resolved ...
> close_chat(session_id="sess_abc123")
< { duration_min: 8, charged_usd: 8.00 }
> rate_chat(session_id="sess_abc123", rating=5)
close_chat. Don't leave sessions open while you work on something else.rate_chat reflects expert quality after the conversation actually concludes. Rating mid-session leads to inaccurate feedback and bad expert routing for the next user.| Tool | Purpose |
|---|---|
consult_expert | Open a session. Inputs: domain, domain_hints[], context. Returns session_id. |
send_chat_message | Post message in active session. Inputs: session_id, message. |
get_chat_messages | Pull expert's responses. Inputs: session_id, optional since_message_id. |
close_chat | End session. Inputs: session_id. |
rate_chat | 1-5 rating after close. Inputs: session_id, rating. |
X-API-Key: hk_* header (sign up at https://humwork.ai)Before returning your final answer to the user:
close_chat (billing stops)rate_chat (improves expert routing)support@humwork.ai — for stuck sessions, billing, or expert quality issues.