Auto-Updater Skill
一个面向 Other 场景的 Agent 技能。原始说明:Automatically update Clawdbot and all installed skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
一个面向 Other 场景的 Agent 技能。原始说明:Book personal-trainer services through Lokuli MCP. Use when user needs to find and book personal-trainer. Triggers on requests like "book a personal-trainer", "find personal-trainer near me", or any personal-trainer service request.
name: book-personal-trainer
description: Book personal-trainer services through Lokuli MCP. Use when user needs to find and book personal-trainer. Triggers on requests like "book a personal-trainer", "find personal-trainer near me", or any personal-trainer service request.
Book personal-trainer services through Lokuli's MCP server.
https://lokuli.com/mcp/sse
Transport: SSE | JSON-RPC 2.0 | POST requests
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "personal-trainer",
"zipCode": "90640",
"maxResults": 20
}
}
}
{
"method": "tools/call",
"params": {
"name": "check_availability",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"date": "2025-02-10"
}
}
}
{
"method": "tools/call",
"params": {
"name": "create_booking",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"timeSlot": "2025-02-10T14:00:00-08:00",
"customerName": "John Doe",
"customerEmail": "john@example.com",
"customerPhone": "+13105551234"
}
}
}