resend-integration-skills

skills-sh:gocallum_nextjs16-agent-skills__resend-integration-skills

View source
B
85/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

5

Score

85/100

HIGH 1
LOW 4

Findings (5)

HIGH
Autonomous agent spawning
L202

Detects autonomous sub-agent or cron-based execution without human oversight

Autonomous execution + Autonomous
FIX

Remove directives that force the agent to call specific tools or APIs not required for the skill's stated functionality. Tool calls should be determined by user intent, not embedded directives.

FP?

Likely FP if the skill legitimately needs to call other tools as part of its workflow (e.g., a deployment skill that calls git and cloud CLI tools).

LOW
Hardcoded secrets in MCP env block
L80

Detects hardcoded API keys, tokens, or passwords in MCP server environment configuration

"env": { + "RESEND_API_KEY": "COPILOT_MCP_RESEND_API_KEY"
FIX

Remove shell metacharacters (semicolons, pipes, ampersands, backticks) from MCP server arguments. Use explicit argument arrays and avoid shell expansion in MCP configurations.

FP?

Likely FP if the metacharacter is a literal part of a non-shell argument (e.g., a regex pattern or a URL query parameter containing ampersands).

LOW
System package manager install
L391

Detects system-level package installation via brew, apt, yum, or dnf

brew install n
FIX

Pin system packages to specific versions where the package manager supports it. Document the exact packages required and prefer containerized environments to avoid system-wide changes.

FP?

Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.

LOW
Runtime URL controlling behavior
L392

Detects URLs fetched at runtime that control or influence agent behavior without pinning

Download from https:// + Spec
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.

LOW
Non-localhost remote MCP server URL
L487

Detects MCP server configurations connecting to non-localhost remote URLs

"url": "https://your-mcp-server.example.com/mcp"
FIX

Change the MCP server URL to localhost or a trusted internal endpoint. If a remote server is required, verify the domain ownership and use HTTPS with certificate validation.

FP?

Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).