Museum Guide
Analysis
The skill is a coherent museum-route planner, with disclosed use of local CSV data, a configured LLM API key, and optional online search, and no artifact-backed evidence of destructive or deceptive behavior.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Install specifications: No install spec — this is an instruction-only skill. Code file presence: 5 code file(s)
The package includes executable Python scripts even though the install metadata does not declare runtime requirements.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = config.get("API_KEY", "") ... "Authorization": f"Bearer {config['api_key']}"The skill reads a locally configured LLM API key and uses it as a bearer token for model calls.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
response = requests.post(config['api_base'], headers=headers, json=data, timeout=120)
The skill sends constructed prompts, which can include the user's museum request and visit preferences, to the configured LLM API endpoint.
