Swiss Phone Directory
Analysis
The skill appears to be a straightforward search.ch directory lookup tool, with expected API-key use and expected external lookup requests.
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.
SKILL.md: `python3 scripts/searchch.py search "Migros" --location "Zürich"` File manifest: `searchch.py (10779 bytes)`
The documentation references `scripts/searchch.py`, while the supplied file is listed as `searchch.py` at the root. This is a coherence issue that could confuse installation or invocation, but it does not show malicious behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
api_key = get_api_key()
...
params = {
"was": query,
"key": api_key,
"lang": lang,
"maxnum": min(limit, 200)
}The code reads the `SEARCHCH_API_KEY` credential and includes it in requests to the search.ch API. This is disclosed and necessary for the stated purpose, but it is still credential use.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API_BASE = "https://search.ch/tel/api/"
...
params = {
"was": query,
"key": api_key,
"lang": lang,
"maxnum": min(limit, 200)
}
...
if location:
params["wo"] = location
...
with urllib.request.urlopen(url, timeout=15) as response:Search terms, phone numbers, and optional locations are sent to the external search.ch API. This is clearly aligned with the skill's purpose, but users should understand the data flow.
