security/securing-agents/SKILL.md
Enforce safeguards specifically for AI Agents to prevent prompt injection, tool misuse, and excessive autonomy (OWASP Top 10 for Agents).
npx skillsauth add 7a336e6e/skills securing-agentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Prevent AI Agents from being manipulated into performing harmful actions, leaking context, or executing malicious code. Secure the "Agentic Supply Chain."
Agents should only have the permissions strictly necessary for their specific task.
write_file access unless required.delete_database, deploy_production).Sanitize and segment inputs to prevent "Ignore previous instructions" attacks.
<user_input>...</user_input>) to clearly separate data from instructions.Never assume the agent generated safe arguments for a tool.
/.env or /etc/passwd.exec or run_shell_command access without a sandbox.security_policy.json: Defining allowed tools and scopes for the agent.system_prompt_hardening_checklist.md.../conducting-security-audit/SKILL.mddevelopment
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
data-ai
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.