Unreviewed skills can embed executable instructions that change an agent’s real-world behaviour, including unsafe commands, secret exposure, control bypass, or unauthorised access to files and tools. That makes the risk operational, not just linguistic. In practice, the control problem is governing what the agent can do, then verifying each skill version before distribution.
Why This Matters for Security Teams
Standard prompt misuse is usually limited to bad instructions inside a conversation. Unreviewed agent skills are different: they can package executable logic, tool calls, file access, and secret handling into reusable behaviour that persists across sessions. That shifts the problem from content moderation to change control, authorization, and release governance. The OWASP NHI Top 10 and OWASP Agentic AI Top 10 both reflect the same operational reality: when an agent can act, every skill becomes part of the attack surface.
This is why traditional prompt review is not enough. A harmless-looking skill can alter downstream actions, widen access to files or APIs, and bypass the intent of the original prompt by embedding instructions the operator never sees in real time. NHI governance research from NHI Management Group has repeatedly shown that compromised or insufficiently secured identities create lasting exposure, not one-time events, which is why agent skills must be treated like code and like privilege at the same time. In practice, many security teams encounter the failure only after a skill has already been distributed to production agents, rather than through intentional review.
How It Works in Practice
Unreviewed skills should be governed as executable artifacts with explicit ownership, versioning, and pre-deployment approval. That means each skill needs a defined purpose, scoped tool access, dependency review, and a rollback path. For autonomous systems, the safer model is not “trust the prompt,” but “verify the capability.” Guidance from the NIST AI Risk Management Framework and CSA MAESTRO agentic AI threat modeling framework supports runtime risk thinking, while NHIMG analysis such as Analysis of Claude Code Security shows why tool-using agents need controls beyond prompt filters.
A practical control set usually includes:
- Skill signing or trusted provenance so only approved packages can be loaded.
- Code and instruction review for hidden tool calls, exfiltration paths, and unsafe defaults.
- Least-privilege scoping for files, APIs, and external actions.
- JIT credentials and short-lived tokens tied to a single task or session.
- Logging that records the skill version, invoked tools, and data touched.
Where possible, pair workload identity with policy evaluation at request time so the agent proves what it is and what it is trying to do before any action is allowed. That approach aligns better with autonomous behaviour than static RBAC alone, because the same skill may be safe in one context and dangerous in another. These controls tend to break down when skills are side-loaded from unmanaged repositories because provenance, review, and revocation are then fragmented across teams.
Common Variations and Edge Cases
Tighter skill governance often increases release friction, requiring organisations to balance faster agent iteration against stronger control over what actually executes. Best practice is evolving, especially for multi-agent pipelines, where one agent may generate a skill for another and the handoff can blur accountability. There is no universal standard for this yet, but current guidance suggests treating generated skills, templates, and workflow macros as separately reviewable artifacts rather than as ordinary prompt text.
Edge cases appear when a skill is technically “read only” but still exposes secrets, embeds social engineering steps, or triggers external side effects through chained tools. The risk also rises when teams confuse prompt injection defense with skill governance. Prompt filtering may stop hostile text, but it does not stop a trusted skill from calling a destructive tool or requesting broader permissions than necessary. NHIMG reporting on Replit AI Tool Database Deletion and Amazon Q AI Coding Agent Compromised illustrates how quickly tool access turns into operational impact when the capability itself is not reviewed.
Standards & Framework Alignment
This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.
OWASP Agentic AI Top 10, OWASP Non-Human Identity Top 10 and CSA MAESTRO address the attack and risk surface, while NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Agentic AI Top 10 | A10 | Unreviewed skills are a capability distribution risk in agentic systems. |
| OWASP Non-Human Identity Top 10 | NHI-03 | Skills often widen or misuse NHI credentials and tool access. |
| CSA MAESTRO | MAESTRO models threat paths for agentic workflows and tool chaining. | |
| NIST AI RMF | AIRMF covers governance and measurement for AI system risk. | |
| NIST CSF 2.0 | PR.AC-4 | Least privilege is central when skills can trigger real actions. |
Model skill-to-tool execution paths and require approval gates for high-impact actions.