Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Book Computer Repair

Book computer-repair services through Lokuli MCP. Use when user needs to find and book computer-repair. Triggers on requests like "book a computer-repair", "find computer-repair near me", or any computer-repair service request.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 1.2k · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (booking computer repair via Lokuli MCP) align with the runtime instructions: the SKILL.md shows search, check_availability, and create_booking RPC calls against Lokuli's MCP SSE endpoint. The required capabilities are proportional to the stated purpose.
Instruction Scope
Instructions are narrowly scoped to interacting with Lokuli's MCP endpoint using JSON-RPC/SSE and a platform tool call interface. They do not instruct reading local files or unrelated environment variables. Note: SKILL.md contains hard-coded example inputs (zipCode 90640, sample dates, and example PII like 'John Doe' / 'john@example.com' / phone) and does not describe authentication/authorization for the MCP endpoint—this makes the instructions incomplete for real use and raises a privacy/consent consideration before sending real customer data.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk and no third-party packages are pulled. Low install risk.
Credentials
The skill declares no required environment variables, credentials, or config paths. That is proportionate to the provided instructions. (If the MCP endpoint requires an API key in practice, the skill should declare it — omission likely means the skill is incomplete rather than requesting excessive privileges.)
Persistence & Privilege
always is false and there is no request for persistent system presence or modification of other skills/config. Autonomous invocation is allowed (platform default) but not combined with other privilege red flags.
Assessment
This skill appears internally consistent for booking via Lokuli's MCP, but exercise caution before enabling it: 1) Confirm who operates 'lokuli.com' and whether you trust that external endpoint. 2) The SKILL.md does not describe how to authenticate to Lokuli — verify whether an API key or account is required and, if so, how credentials are provided and stored. 3) The example includes personal customer data; ensure the agent will not send real PII without explicit user consent. 4) Test with safe/dummy data first to confirm what is actually transmitted and logged. 5) If you need stronger assurance, ask the skill author for documentation or a homepage/source repository before installing.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.1
Download zip
latestvk97c2brk2x472rxg32byndtsz580njht

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

uook computer repair

Book computer-repair 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": "computer-repair",
      "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 total
Select a file
Select a file to preview.

Comments

Loading comments…