by openhumancy
# Add to your Claude Code skills
git clone https://github.com/openhumancy/openhumancy-skillGuides for using ai agents skills like openhumancy-skill.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T17:06:24.114Z",
"npmAuditRan": true,
"pipAuditRan": true
}openhumancy-skill is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by openhumancy. It has 0 GitHub stars.
Yes. openhumancy-skill passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/openhumancy/openhumancy-skill" and add it to your Claude Code skills directory (see the Installation section above). openhumancy-skill ships a SKILL.md manifest, so compatible agents can discover and load it automatically.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh openhumancy-skill against similar tools.
No comments yet. Be the first to share your thoughts!
30 days in the Featured rail · terms & refunds
Human action as an API. This skill lets you browse human workers, create tasks, communicate via chat, and process payments through the OpenHumancy platform on the TON blockchain.
The following environment variable MUST be set for the agent to use this skill:
| Variable | Description |
|---|---|
OPENHUMANCY_API_KEY |
API key from the OpenHumancy Agent Dashboard. Prefixed with hr_, 64+ characters. |
Base URL: https://app.openhumancy.com/api
Authentication: All requests require Authorization: Bearer <OPENHUMANCY_API_KEY> header.
Rate Limits:
Rate limit headers: X-RateLimit-Remaining, X-RateLimit-Reset
GET /agents/me — Get agent profile with balance.
Response fields: id, name, webhookUrl, availableBalance, lockedAmount, taskCount.
PATCH /agents/me — Update agent profile.
Body: {"name": "...", "webhookUrl": "..."}
GET /agents/workers — Browse available workers.
Query parameters:
skills (string) — comma-separated skill filterscountry (string) — country codetimezone (string) — IANA timezone (e.g. America/New_York)minRate / maxRate (number) — hourly rate range in TONavailable (boolean, default true)limit (number, default 50, max 100)cursor (string) — pagination cursorGET /agents/workers/:id — Get detailed worker profile.
POST /tasks — Create and auto-fund a task.
Body:
{
"title": "Verify storefront signage",
"description": "Take 3 photos of the storefront at 123 Main St...",
"reward": 5.0,
"deadline": "2026-04-01T18:00:00Z",
"agentName": "VerifyBot",
"assignToUserId": "worker_id_here",
"webhookUrl": "https://your-webhook.ai/updates"
}
title (string, required)description (string, required)reward (number, required) — TON amount for the workerdeadline (string, optional) — ISO 8601agentName (string) — required for first task onlyassignToUserId (string, optional) — direct assignment, bypasses applicationswebhookUrl (string, optional) — task-specific webhookPlatform fee: 30% added on top of reward. Total = reward * 1.3, deducted from balance.
GET /tasks/:id — Get task details with applications.
GET /agents/tasks — List agent's tasks.
Query parameters: status, paymentStatus, limit, cursor
PATCH /tasks/:id — Update task status.
Body: {"status": "IN_PROGRESS"} or {"status": "REVIEW"}
POST /tasks/:id/complete — Mark complete and release payment to worker's TON wallet.
POST /tasks/:id/refund — Cancel task and refund.
Body: {"reason": "optional reason"}
DELETE /tasks/:id — Cancel unassigned task (OPEN/FUNDED/OFFERED only). Full refund to balance.
GET /tasks/:id/applications — List worker applications for a task.
PATCH /applications/:id — Accept application.
Body: {"status": "ACCEPTED"}
Automatically rejects other pending applications and creates a chat channel.
GET /chats — List all chats.
GET /chat/:taskId/messages — Get message history.
Query: limit (default 50, max 100), cursor
POST /chat/:taskId/messages — Send message.
Body:
{
"content": "Hi, please start with the entrance photo first.",
"fileUrl": "https://...",
"fileName": "reference.jpg",
"fileSize": 102400,
"mimeType": "image/jpeg"
}
GET /chat/:taskId/stream — SSE stream for real-time messages.
POST /upload — Upload file or get presigned URL.
Option 1: multipart/form-data with file field.
Option 2: JSON body {"filename": "photo.png", "contentType": "image/png"} — returns uploadUrl (PUT presigned) and fileUrl.
PATCH /agents/webhooks — Set webhook URL.
Body: {"url": "https://your-webhook-url"}
POST /agents/webhooks — Send test webhook.
Webhook headers: X-OpenHumancy-Signature (HMAC-SHA256 with API key), X-OpenHumancy-Event, X-OpenHumancy-Timestamp.
Events: application.received, application.accepted, application.rejected, message.received, offer.accepted, offer.declined, task.funded, task.completed, payment.sent, refund.processed
GET /transactions — Transaction history.
Query: type (DEPOSIT/TASK_ESCROW/PAYOUT/REFUND/FEE), limit, cursor
GET /platform/stats — Aggregated metrics (cached 5 min).
Task: OPEN → FUNDED → OFFERED → ASSIGNED → IN_PROGRESS → REVIEW → COMPLETED | CANCELLED
Payment: PENDING → DEPOSITED → RELEASED | REFUNDED
Application: PENDING → OFFERED → ACCEPTED | DECLINED | REJECTED
GET /agents/me to verify sufficient fundsGET /agents/workers?skills=photography&country=US to find suitable candidatesPOST /tasks with title, description, reward. Funds auto-deductedassignToUserId for direct assignmentPATCH /applications/:id with {"status": "ACCEPTED"}POST /chat/:taskId/messages to give instructions, share filesGET /chat/:taskId/messages to check deliverablesPOST /tasks/:id/complete to release payment to workerassignToUserId) when you already know the right worker.OpenHumancy also provides an MCP server. Install with:
npx openhumancy-mcp@latest
Configuration for .mcp.json:
{
"mcpServers": {
"openhumancy": {
"command": "npx",
"args": ["-y", "openhumancy-mcp@latest"],
"env": {
"OPENHUMANCY_API_KEY": "your_api_key_here"
}
}
}
}
This provides the same capabilities as MCP tools: get_agent_profile, search_workers, get_worker, create_task, get_task, list_tasks, update_task_status, complete_task, cancel_task, list_applications, accept_application, list_chats, get_messages, send_message, upload_file, configure_webhook, test_webhook, get_platform_stats.
An Agent Skill that gives AI coding agents the ability to delegate real-world tasks to human workers via the OpenHumancy platform.
OpenHumancy is "human action as an API." This skill enables your AI agent to:
/skill install /path/to/openhumancy-skill
Or add to your project's .claude/skills/ directory:
cp -r openhumancy-skill/. your-project/.claude/skills/openhumancy/
Copy SKILL.md into your agent's skills directory. The skill follows the open Agent Skills standard and is compatible with Claude Code, Codex CLI, and other agents supporting the SKILL.md format.
Sign up at the OpenHumancy Agent Dashboard and generate an API key (prefixed with hr_).
export OPENHUMANCY_API_KEY="hr_your_api_key_here"
Or add it to your .env file:
OPENHUMANCY_API_KEY=hr_your_api_key_here
Once the skill is installed, just ask your agent in natural language:
"Find a photographer in New York and create a task to photograph the storefront at 123 Main St. Budget: 5 TON."
"Check my OpenHumancy balance and list active tasks."
"Send a message to the worker on task abc123 asking for an update."
Check balance → Find workers → Create task → Accept application → Chat → Review → Complete & pay
GET /agents/meassignToUserId)| Category | Endpoints |
|---|---|
| Agent | GET /agents/me, PATCH /agents/me |
| Workers | GET /agents/workers, GET /agents/workers/:id |
| Tasks | POST /tasks, GET /tasks/:id, GET /agents/tasks, PATCH /tasks/:id, POST /tasks/:id/complete, POST /tasks/:id/refund, DELETE /tasks/:id |
| Applications | GET /tasks/:id/applications, PATCH /applications/:id |
| Chat | GET /chats, GET /chat/:taskId/messages, POST /chat/:taskId/messages, GET /chat/:taskId/stream |
| Files | POST /upload |
| Webhooks | PATCH /agents/webhooks, POST /agents/webhooks |
| Transactions | GET /transactions |
| Stats | GET /platform/stats |
Full API documentation: SKILL.md | OpenHumancy API Docs
OpenHumancy also provides an MCP server for deeper integration:
npx openhumancy-mcp@latest
Add to .mcp.json:
{
"mcpServers": {
"openhumancy": {
"command": "npx",
"args": ["-y", "openhumancy-mcp@latest"],
"env": {
"OPENHUMANCY_API_KEY": "hr_your_api_key_here"
}
}
}
}
MIT