Nextjs Performance Analyzer
Analysis
The skill appears benign: it provides disclosed, purpose-aligned instructions to inspect and build a Next.js project for performance analysis.
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.
cat next.config.js 2>/dev/null || cat next.config.mjs 2>/dev/null || cat next.config.ts 2>/dev/null cat package.json ... ls app/ pages/ 2>/dev/null find app/ -name "page.tsx"
The skill directs the agent to use local shell commands to inspect project configuration and source layout. This is expected for a Next.js analyzer, but it is still local project file access users should be aware of.
npx next build 2>&1 | tail -30
The skill recommends running a Next.js build to analyze bundle output. This is central to the stated purpose, but building a project can execute project build logic and create local build artifacts.
