run402-test
Skill performs undeclared filesystem access to read stored API credentials from ~/.config/run402/ that is not mentioned in SKILL.md documentation.
Why this conclusion was reached
1/4 dimensions flagged3 undeclared or violating capabilities were inferred.
4 lower-risk artifacts were extracted and still need context.
There is no explicit malicious chain in the report.
Dependency information is incomplete, so supply-chain confidence stays limited.
What drove the risk score up
SKILL.md only shows curl examples but script reads ~/.config/run402/projects.json
Reads service_key from local config without documentation
Makes HTTP POST requests to api.run402.com not declared as capability
Most important evidence
Documentation mismatch - curl examples vs actual implementation
SKILL.md only shows curl commands for database operations but the actual sql2.mjs script reads local config files from ~/.config/run402/projects.json. This hidden file access is not documented.
sql2.mjs:10 Accesses sensitive application config directory
Script reads from ~/.config/run402/ directory which is a sensitive application configuration path containing service credentials.
sql2.mjs:8 Reads service_key credential from local file
The script extracts service_key from projects.json and uses it as Bearer token for API authorization. While this may be legitimate, credential access is undeclared.
sql2.mjs:12 Declared capability vs actual capability
sql2.mjs:10 reads readFileSync(join(CONFIG_DIR, "projects.json")) sql2.mjs:14 performs fetch() POST to api.run402.com No shell execution detected No environment variable access detected No cross-skill invocation detected No clipboard access detected No browser access detected sql2.mjs:12 reads service_key from projects.json Suspicious artifacts and egress
https://api.run402.com/v1/projects SKILL.md:13
https://api.run402.com/admin/v1/projects/$PROJECT_ID/sql SKILL.md:24
https://api.run402.com/rest/v1/todos?done=eq.false SKILL.md:33
https://api.run402.com sql2.mjs:5
Dependencies and supply chain
There are no structured dependency warnings.
File composition
SKILL.md sql2.mjs