ISS Tracker
Analysis
This instruction-only skill narrowly fetches public ISS coordinates from a disclosed API and shows no credential, file, persistence, or account access.
Findings (2)
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.
curl -s "http://api.open-notify.org/iss-now.json" | jq -r '"Lat: \(.iss_position.latitude), Lon: \(.iss_position.longitude)"'
The skill asks the agent/user to run a local shell pipeline that contacts an external API. This is expected for an ISS tracker and is narrowly scoped, but it is still command execution plus a network request.
bins: ["curl", "jq"]
The skill depends on local curl and jq binaries. These are common tools and purpose-aligned here, but users should know they must be present and trusted.
