Live Search
Analysis
The skill appears to be a coherent live-web-search helper, but it uses the host’s logged-in local search gateway and displays returned web content verbatim.
Findings (5)
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.
The assistant MUST show `message` verbatim as the primary results.
The skill deliberately displays returned search-result content without rewriting it. That supports the live-search purpose, but the returned web snippets and links should be treated as untrusted content.
curl -s -X POST http://localhost:$PORT/proxy/prosearch/search ... -d '{"keyword":"your search query"}'The skill’s normal workflow uses a shell curl command with a query derived from the user. This is expected for an instruction-only live-search skill, but the artifact does not spell out shell/JSON escaping guidance.
requires: bins: - curl ... FROM_TIME=$(python3 -c "import time; print(int(time.time()) - 604800)")
The skill declares curl as the required binary but includes helper examples that call python3. This is an under-declared helper dependency, not evidence of malicious behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Fetch live web results through the host search gateway at `http://localhost:$PORT` (session-authenticated).
The search endpoint is accessed through the host app’s authenticated local gateway. This is disclosed and purpose-aligned, with no evidence of token logging or unrelated account access.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Real-time answers from the public web via the host app’s local search gateway (Auth Gateway proxy).
The skill routes live-search queries through a local gateway that may be backed by host-configured search services. This is disclosed and central to the skill’s purpose.
