Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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...
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...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
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
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
ToolRequired ParamsDescriptionexplore_specialist_treespecialistFull folder/file treelist_specialist_folderspecialist, folder_pathList folder contents
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
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).
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
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
explore_specialist_tree β find the files you need read_specialist_documents β bulk read (more efficient than individual reads) Summarize for the user
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
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": "..." }
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.
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)
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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.