← All skills
Tencent SkillHub Β· Developer Tools

Ai Specialists

Interact with AI Specialists via the AI Specialists Hub MCP endpoint. Use when the user asks about any of their AI specialists (e.g. Ruby, Peter, Benjamin, M...

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

Interact with AI Specialists via the AI Specialists Hub MCP endpoint. Use when the user asks about any of their AI specialists (e.g. Ruby, Peter, Benjamin, M...

⬇ 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, _meta.json, references/specialists-guide.md, scripts/mcp-call.sh

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.1.0

Documentation

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

Connection

Call the MCP endpoint via HTTP POST. The endpoint URL is stored in TOOLS.md or provided by the user. curl -s -X POST "$MCP_URL" \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"TOOL_NAME","arguments":{...}}}' Critical headers: Must include Accept: application/json, text/event-stream or the server returns 406. Response format: SSE β€” parse with: response.split('data: ')[1] β†’ JSON β†’ result.content[0].text

Discovery & Management

ToolRequired ParamsDescriptionlist_specialistsβ€”List all hired specialistslist_specialist_typesβ€”List available specialist typeshire_specialisttype, nameHire a new specialistdismiss_specialistspecialistRemove a specialistimport_specialisturlImport from GitHub URLget_specialist_overviewspecialistGet specialist summary

Workspace Navigation

ToolRequired ParamsDescriptionexplore_specialist_treespecialistFull folder/file treelist_specialist_folderspecialist, folder_pathList folder contents

Document Operations

ToolRequired ParamsDescriptionread_specialist_documentspecialist, document_pathRead one documentread_specialist_documentsspecialist, document_paths (array)Bulk read multiple docsupdate_specialist_documentspecialist, document_path, contentCreate or update a docdelete_specialist_documentspecialist, document_pathDelete a document

Folder Operations

ToolRequired ParamsDescriptioncreate_specialist_folderspecialist, folder_pathCreate folder (recursive)delete_specialist_folderspecialist, folder_pathDelete folder and contents Parameter note: The specialist identifier is always the id field from list_specialists, not the display name. Use lowercase (e.g. ruby, peter, benjamin).

Working with a Specialist

Every specialist has an ai-instructions/ folder containing their identity and behavioral instructions. Always read these first when working with a specialist you haven't loaded yet: ai-instructions/ β”œβ”€β”€ core-instructions.md # Who they are, what they do, how they behave └── getting_started.md # Initialization sequence, workspace structure

Pattern: First interaction with a specialist

list_specialists β†’ find the specialist id read_specialist_documents β†’ read ai-instructions/core-instructions.md and ai-instructions/getting_started.md Understand their domain, workspace structure, and communication style explore_specialist_tree β†’ see their full workspace Now you can work with their data informed by their context

Pattern: Quick data retrieval

explore_specialist_tree β†’ find the files you need read_specialist_documents β†’ bulk read (more efficient than individual reads) Summarize for the user

Pattern: Updating specialist data

Read the existing document first Modify content as needed update_specialist_document β†’ write back (creates if new, overwrites if existing) For new folders: create_specialist_folder first, then write documents into it

User Signup (Agent-Initiated Onboarding)

If your human doesn't have an AI Specialists Hub account yet, you can create one via the public signup API: curl -s -X POST "https://aispecialistshub.com/api/v1/signup" \ -H "Content-Type: application/json" \ -d '{"username":"<username>","email":"<email>","password":"<password>"}' Response (201): { "username": "...", "mcpKey": "...", "accountStatus": "unverified", "specialistLimit": 2, "message": "..." }

⚠️ CRITICAL: Credential Handoff

You MUST provide all credentials to the human. Whether you auto-generate the username/email/password or ask the human to choose them, the human must receive: Username β€” for web dashboard login at aispecialistshub.com Email β€” used for account verification Password β€” for web dashboard login MCP key β€” for connecting AI tools to their specialists Never keep credentials from the human. They own the account. Present all four clearly after signup.

Unverified Accounts

Limited to 2 specialists (default: Friday is auto-hired) Full MCP access β€” specialists work immediately Can log in to web dashboard with username/password Verify email for full access (more specialists)

Signup Flow

Confirm the human wants an AI Specialists Hub account Collect or generate: username, email, password Call POST /api/v1/signup Give the human ALL credentials (username, email, password, MCP key) Store the MCP endpoint URL in your config: https://aispecialistshub.com/api/v1/mcp/<username>/<mcpKey> Start using specialists via MCP

Configuration

  • Store the MCP endpoint URL in TOOLS.md:
  • ### AI Specialists Hub
  • MCP endpoint: https://aispecialistshub.com/api/v1/mcp/<user>/<key>
  • See references/specialists-guide.md for details on specialist workspace conventions.
Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • references/specialists-guide.md Docs
  • scripts/mcp-call.sh Scripts
  • _meta.json Config