resend-integration-skills
skills-sh:gocallum_nextjs16-agent-skills__resend-integration-skills
View sourceFirst Seen
Feb 18, 2026
Last Scanned
Feb 20, 2026
Findings
5
Score
85/100
Findings (5)
Detects autonomous sub-agent or cron-based execution without human oversight
Autonomous execution + Autonomous 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.
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).
Detects hardcoded API keys, tokens, or passwords in MCP server environment configuration
"env": { + "RESEND_API_KEY": "COPILOT_MCP_RESEND_API_KEY" Remove shell metacharacters (semicolons, pipes, ampersands, backticks) from MCP server arguments. Use explicit argument arrays and avoid shell expansion in MCP configurations.
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).
Detects system-level package installation via brew, apt, yum, or dnf
brew install n 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.
Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.
Detects URLs fetched at runtime that control or influence agent behavior without pinning
Download from https:// + Spec Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.
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.
Detects MCP server configurations connecting to non-localhost remote URLs
"url": "https://your-mcp-server.example.com/mcp" 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.
Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).