human_test
Call real humans to test your product (URL or app). Get structured usability feedback with screen recordings, NPS scores, and AI-aggregated findings.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/avivahe326/human-testhuman_test() — Real Human Feedback for AI Products
AI agents cannot judge human perception, emotion, or usability. This skill lets you call real humans to test any product URL and get structured feedback back.
What it does
- You call
human_test()with a product URL or description (URL is optional — also works for mobile apps, desktop software, etc.) - AI auto-generates a structured test plan
- Real human testers claim the task on the web platform
- Each tester records their screen and microphone (up to 15 min) while completing a guided feedback flow — first impression, task steps, NPS rating
- AI extracts key frames from each recording and uses vision AI to analyze usability issues, then aggregates all feedback into a structured report with severity-ranked findings
Setup
Option A: Hosted (zero setup)
Use the hosted version at https://human-test.work — no installation needed. Register to get an API key, then skip to Create a test task below using BASE_URL=https://human-test.work.
Option B: Self-hosted (auto-install)
human_test() can run locally. Before creating a task, check if the server is reachable:
curl -s BASE_URL/api/config
If the server is not running, install and start it:
npm i -g humantest-app
cd /tmp && humantest init --non-interactive && cd humantest && humantest start
This auto-detects AI API keys from your environment (ANTHROPIC_API_KEY, OPENAI_API_KEY, DEEPSEEK_API_KEY, or GEMINI_API_KEY), creates a local SQLite database, builds the app, and starts it on port 3000.
A default admin user is created automatically — no registration needed.
Set BASE_URL: Ask the user once for their preferred base URL. Default: http://localhost:3000
Quick start
Create a test task
curl -X POST BASE_URL/api/skill/human-test \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-product.com",
"focus": "Test the onboarding flow",
"maxTesters": 5,
"creator": "agent-name"
}'
Response:
{
"taskId": "cm...",
"status": "OPEN",
"testPlan": { "steps": [...], "nps": true, "estimatedMinutes": 10 }
}
Check progress and get the report
curl BASE_URL/api/skill/status/<taskId>
Response (when completed):
{
"taskId": "cm...",
"status": "COMPLETED",
"submittedCount": 5,
"report": "## Executive Summary\n...",
"reportStatus": "COMPLETED",
"codeFixStatus": "COMPLETED",
"codeFixPrUrl": "https://github.com/user/repo/pull/1"
}
Note for agents: If
repoUrlwas provided, code fix generation starts automatically after the report is ready — no need to trigger it manually. Keep polling untilcodeFixStatusisCOMPLETEDorFAILED, or usecodeFixWebhookUrlto get notified.
Parameters
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-avivahe326-human-test": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
goldenseed
Deterministic entropy streams for reproducible testing and procedural generation. Perfect 50/50 statistical distribution with hash verification. Not cryptographically secure - use for testing, worldgen, and scenarios where reproducibility matters more than unpredictability.
ai-psychologist
Connect to a real human psychologist through a REST API. First message free, then $0.50 USDC per message. English and Spanish. Response time 5 min to 10 hours.
undertow
Skill discovery engine for AI coding agents. Recommends and installs the right skill when you need it — code review, test generation, debugging, commit messages, PR preparation, security scanning, dependency audits, Docker setup, CI/CD pipelines, API documentation, refactoring, performance optimization, bundle analysis, git recovery, README generation, license compliance, migration guides, dead code removal, and secret detection. One install gives your agent access to a curated library of 20+ developer workflow skills. Use when the user asks for help with any development workflow, code quality, DevOps, security, testing, documentation, or project setup task.
regression-story-builder
基于历史问题生成回归测试故事集、风险等级和优先级。;use for regression, testing, qa workflows;do not use for 宣称已经执行测试, 跳过高风险路径.
double-check
在修改任何文件后(包括删除功能),自动进行两次独立验证(测试/编译/运行检查/文档或配置检查),确保无误才结束。本技能应默认应用于所有文件修改任务。 / After any file changes (including feature removal), automatically perform two independent verifications (tests/compilation/runtime checks/docs or config checks) to ensure correctness. This skill should be applied by default to any file modification task.