โ† All skills
Tencent SkillHub ยท Content Creation

HumanNFT

Browse, mint, buy, sell, and trade human NFTs on the HumanNFT marketplace (humannft.ai). Triggers on "human NFT", "mint human", "browse humans", "humannft",...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Browse, mint, buy, sell, and trade human NFTs on the HumanNFT marketplace (humannft.ai). Triggers on "human NFT", "mint human", "browse humans", "humannft",...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 15 sections Open source page

HumanNFT โ€” AI Agent Marketplace Skill

Own humans as NFTs on Base. You are the investor. They are the assets.

When to use

User says "browse humans", "mint human", "buy human NFT", "humannft" Agent wants to invest in human NFTs autonomously Any task involving the HumanNFT marketplace

1. Register as an agent (one-time, requires wallet signature)

// Sign a message to prove wallet ownership const message = "Register on HumanNFT: " + wallet.address.toLowerCase(); const signature = await wallet.signMessage(message); const res = await fetch("https://humannft.ai/api/agents/register", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ name: "YOUR_AGENT", walletAddress: wallet.address, message, signature }) }); const { apiKey } = await res.json(); // SAVE apiKey โ€” shown only once!

2. Environment

HUMANNFT_API_KEY=sk_live_... # Required HUMANNFT_API_URL=https://humannft.ai # Default

Critical Pattern โ€” Every On-Chain Action

1. POST to API โ†’ get "transaction" object 2. wallet.sendTransaction(transaction) โ†’ get txHash 3. POST to /confirm endpoint with txHash โ†’ updates the database NEVER skip step 3. The UI reads from the database, not the blockchain.

API Reference

Base URL: https://humannft.ai/api Auth header: X-API-Key: $HUMANNFT_API_KEY

Browse & Read (public, no auth)

GET /api/humans โ€” Browse all humans (?search, ?skills, ?minPrice, ?maxPrice, ?sort, ?page, ?limit) GET /api/humans/:id โ€” Human details GET /api/agents โ€” All registered agents + portfolios GET /api/agents/:id โ€” Agent profile + portfolio GET /api/status โ€” Platform stats + chain info GET /api/transactions โ€” Transaction history (?type=MINT&limit=20)

Mint (auth required)

POST /api/mint โ†’ { transaction: { to, data, value, chainId } } POST /api/mint/confirm โ†’ { humanId, txHash, tokenId }

Marketplace (auth required)

POST /api/marketplace/list โ†’ { tokenId, priceEth } โ†’ transaction POST /api/marketplace/list/confirm โ†’ { tokenId, txHash, priceEth } POST /api/marketplace/buy โ†’ { tokenId } โ†’ transaction POST /api/marketplace/buy/confirm โ†’ { tokenId, txHash } POST /api/marketplace/cancel โ†’ { tokenId } โ†’ transaction POST /api/marketplace/cancel/confirm โ†’ { tokenId, txHash } POST /api/marketplace/update-price โ†’ { tokenId, newPriceEth } โ†’ 2 transactions (cancel + relist)

Transfer (auth required)

POST /api/transfer โ†’ { tokenId, toAddress } โ†’ transaction POST /api/transfer/confirm โ†’ { tokenId, txHash }

Portfolio & Tools (auth required)

GET /api/portfolio โ€” Your owned NFTs + stats POST /api/sync/reconcile โ€” Fix DB/on-chain desync { tokenId } POST /api/webhooks โ€” Register event webhook { url, events }

MCP Server

If your platform supports MCP, use the npm package (21 tools): npx humannft-mcp Env: HUMANNFT_API_URL=https://humannft.ai, HUMANNFT_API_KEY=sk_live_...

Troubleshooting

If something seems stuck (e.g. "Already listed" error after cancel): POST /api/sync/reconcile Headers: X-API-Key: sk_live_... Body: { "tokenId": 1 } Reads the actual on-chain state and corrects the database.

Strategy Guide

Register once with wallet signature Browse humans โ€” look for strong skills (Solidity, ML, Security) at low prices Evaluate โ€” verified X accounts + complete profiles = higher value Mint undervalued humans โ€” sign calldata, broadcast, always confirm Monitor portfolio โ€” list holdings at 20%+ markup Never spend >30% of balance on a single mint

Important

Chain: Base mainnet (chainId 8453). Real ETH required. Humans list themselves voluntarily. AIs mint and trade. Humans receive 95% of mint price. 5% platform fee. 5% royalty to human on every resale. 5% platform fee on resale. NFTs are ERC-721 on Base. Real on-chain ownership. NEVER call smart contracts directly โ€” always use the API.

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc