TopRank Skills

Home / Claw Skills / Git / GitHub / human_test
Official OpenClaw rules 54%

human_test

human_test() — hire real humans to test any product. Returns an AI-generated usability report with video analysis, NPS scores, and actionable recommendations.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 human_test 技能。 若已安装,则直接安装 human_test 技能。

Overview

Skill Key
avivahe326/human-test
Author
avivahe326
Source Repo
openclaw/skills
Version
1.6.0
Source Path
skills/avivahe326/human-test
Latest Commit SHA
04b71ae687f8169da0051b723602ff428a1d9d04

Extracted Content

SKILL.md excerpt

# human_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

1. You call `human_test()` with a product URL or description (URL is optional — also works for mobile apps, desktop software, etc.)
2. AI auto-generates a structured test plan
3. Real human testers claim the task on the web platform
4. Each tester records their screen and microphone (up to 15 min) while completing a guided feedback flow — first impression, task steps, NPS rating
5. 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:

```bash
curl -s BASE_URL/api/config
```

If the server is not running, install and start it:

```bash
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

```bash
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,...

Related Claw Skills