clawCat-BRIEF
Analysis
Prompt-injection indicators were detected in the submitted artifacts (base64-block); human review is required before treating this skill as clean.
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.
feeds = config.get("feeds", DEFAULT_FEEDS) ... parsed = await asyncio.to_thread(feedparser.parse, url)The skill can fetch configured RSS/Atom feed URLs as part of report generation. This is expected for a news briefing tool, but users should understand that configured feeds cause outbound network requests.
Source: unknown; Homepage: none
The registry metadata does not provide a source repository or homepage for provenance review. This is a transparency gap, not evidence of malicious behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
token: str = config.get("github_token", "") ... headers["Authorization"] = f"token {token}"The GitHub adapter can authenticate with a supplied GitHub token even though no primary credential is required. The code sends the token to GitHub for repository search and does not show logging or unrelated use.
