AOI Hackathon Scout (Lite)
Analysis
This skill appears to be a simple local read-only hackathon list/filter CLI, with no evidence of hidden crawling, submissions, credential theft, or data transfer.
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 whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
openclaw config set tools.web.search.apiKey "BRAVE_API_KEY_HERE"
The skill documents an optional Brave Search API key setup. This is disclosed and user-directed, and the included code does not use the key, but it is still a credential configuration users should apply intentionally.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
const file = path.join(root, 'context', 'HACKATHON_SHORTLIST.md'); ... const text = fs.readFileSync(file, 'utf8');
The CLI reads user-maintained local context files and uses their contents to produce recommendations. This is purpose-aligned and scoped, but the file contents directly influence the output.
