Book Wedding
Book wedding services through Lokuli MCP. Use when user needs to find and book wedding. Triggers on requests like "book a wedding", "find wedding near me", or any wedding service request.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 1 · 1.2k · 0 current installs · 0 all-time installs
byLokuli@edwardrodriguez703-design
MIT-0
Security Scan
OpenClaw
Benign
medium confidencePurpose & Capability
Name/description (book wedding via Lokuli MCP) match the SKILL.md payloads (search, check_availability, create_booking against an MCP endpoint). There are no unrelated binaries, env vars, or installs requested. Sample payloads show expected booking fields.
Instruction Scope
Instructions tell the agent to call Lokuli's MCP (https://lokuli.com/mcp/sse) using JSON-RPC tool calls (search, check_availability, create_booking). The SKILL.md contains placeholder/sample personal data (John Doe, john@example.com, +13105551234), a hard-coded zip (90640) and dates — the skill does not explicitly instruct the agent to prompt the user for or confirm real customer details or consent before creating bookings. This is a privacy/UX concern rather than an incoherence, and the agent should be required to ask for and confirm user info before calling create_booking.
Install Mechanism
Instruction-only skill with no install spec and no code files; nothing gets written to disk by the skill itself. This is low risk from an install perspective.
Credentials
The skill declares no environment variables or credentials. That is coherent but uncommon for a production booking API — confirm how authentication is handled by the platform (e.g., platform-managed credentials). Also note the risk of transmitting PII (name, email, phone) to an external domain; ensure explicit user consent and that the endpoint is trusted.
Persistence & Privilege
always is false and the skill doesn't request elevated or persistent privileges or modify other skills. Agent autonomous invocation is allowed (default) — combine this with the instruction-scope notes about confirming user data before booking.
Assessment
Before installing or enabling this skill, consider: (1) Verify Lokuli (https://lokuli.com) is a legitimate service you trust — the skill has no homepage or publisher metadata. (2) Confirm how authentication is handled — the skill declares no API keys; ask the platform how credentials (if any) are provided to Lokuli. (3) Ensure the agent is configured to explicitly ask for and confirm the user's name, email, phone, location/zip code and date/time before calling create_booking — avoid automatic booking with placeholder/sample PII. (4) Understand that booking requests will be sent to an external endpoint (lokuli.com), so assess privacy policy and data retention. (5) Test the skill in a safe/sandbox environment first (search-only) to observe its behavior. If any of these checks fail or you cannot confirm the endpoint/credentials, treat the skill as high-risk and do not enable automatic booking actions.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.1
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
uook wedding
Book wedding services through Lokuli's MCP server.
MCP Endpoint
https://lokuli.com/mcp/sse
Transport: SSE | JSON-RPC 2.0 | POST requests
Tools
search
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "wedding",
"zipCode": "90640",
"maxResults": 20
}
}
}
check_availability
{
"method": "tools/call",
"params": {
"name": "check_availability",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"date": "2025-02-10"
}
}
}
create_booking
{
"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"
}
}
}
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
