nextjs-developer
Pass
Audited by Gen Agent Trust Hub on Jun 13, 2026
Risk Level: SAFEPROMPT_INJECTIONEXTERNAL_DOWNLOADSCOMMAND_EXECUTION
Full Analysis
- [PROMPT_INJECTION]: The skill documents code patterns that create a surface for indirect prompt injection and path traversal attacks.
- Ingestion points: The
uploadAvatarserver action inreferences/server-actions.mdprocessesformDatafrom an external source (file upload). - Boundary markers: Absent. The instructions do not advise the agent to sanitize or validate the file metadata or content.
- Capability inventory: The example uses
fs/promises.writeFileto perform filesystem writes inreferences/server-actions.mdanddb.post.createfor database mutations. - Sanitization: The provided file upload example is vulnerable to path traversal as it directly uses
file.namein apath.joinoperation without sanitizing parent directory markers (e.g.,../). - [EXTERNAL_DOWNLOADS]: The skill instructions and deployment guides reference several external dependencies and tools.
- Recommends installing the Vercel CLI via
npm i -g vercelfor deployment. - Utilizes the official
node:20-alpineimage in the multi-stage Dockerfile provided inreferences/deployment.md. - References standard libraries such as
zodfor validation and@vercel/analyticsfor monitoring. - These downloads originate from well-known services and trusted package registries.
- [COMMAND_EXECUTION]: The deployment documentation includes standard CLI commands for build and deployment processes.
- Includes build commands like
npm run buildandvercel --prod. - Provides
docker-composeconfigurations andpm2process management commands for self-hosting scenarios.
Audit Metadata