Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

secure-ai安全 AI

Agent Skill

secure-ai 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

696

周安装

29

GitHub Stars

10

下载量

232
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:secure-ai(安全 AI)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/secure-ai
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill secure-ai
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill secure-ai

简介

用于查找 AI 系统中的安全防护措施与常见攻击面分析方法。

  • 适合在开发安全 AI 应用或进行模型审计时提供指导框架。
  • 通过 GitHub 安装并使用 npx 命令检索相关论文、工具与防御方案。
  • AI 安全仍在演进,建议持续关注最新研究成果与行业标准更新。
  • secure-ai 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Secure AI

Overview

Secures AI integration layers through multi-layered defense, structural isolation, and zero-trust orchestration. Covers prompt injection defense, model output validation, agentic security, secure server actions, supply chain integrity, MCP tool security, and audit protocols for applications that interact with LLMs.

Aligned with the OWASP Top 10 for LLM Applications 2025 and the NIST AI Risk Management Framework (AI RMF 1.0). Provides coverage for all ten OWASP LLM risks with concrete defense patterns.

When to use: Securing LLM-powered features against prompt injection, validating and sanitizing model outputs before downstream use, implementing zero-trust for autonomous agents, hardening server actions for AI endpoints, securing MCP tool integrations, managing AI supply chain risks, auditing AI access patterns.

When NOT to use: General web application security without AI components, frontend-only security concerns, non-AI API hardening, basic authentication or authorization without AI involvement.

Quick Reference

PatternApproachKey Points
Structural isolationSeparate system/user message rolesNever mix instructions and user data in one string
Input boundariesDelimit user data with markersHelps models identify where untrusted data begins/ends
Guardian modelPre-scan input with a fast classifierDetect injection patterns before main reasoning model
Output validationTreat LLM output as untrusted inputContext-aware encoding, parameterized queries, CSP headers
Least privilegeCapability-based scopes per sub-taskAgents get only the tools needed for current work
Human-in-the-loopRequire human sign-off for destructive actionsFinancial or data-altering events need approval
Non-human identityOIDC-based agent authenticationVerifiable identity for every agent, rotate keys regularly
Server-only AI logicserver-only imports for all AI codeKeys and reasoning never leak to client bundle
Input validationZod schemas on all AI-facing server actionsNever pass raw user input to AI services
Rate limitingPer-user/IP token budget via RedisPrevent denial-of-wallet attacks on AI endpoints
Stream scrubbingFilter sensitive strings from AI output streamsRemove internal IDs, secrets before reaching client
MCP tool securityAllowlist tools, validate inputs/outputsTreat MCP servers as untrusted, enforce least privilege
Supply chain integrityVerify model provenance, maintain AI-BOMTrack models, datasets, and dependencies with checksums
Secret managementEnvironment variables with CI leak scanningUse gitleaks in CI to prevent committed secrets

Core Security Principles

  1. Isolation is absolute -- user data must never be treated as system instruction
  2. LLM output is untrusted -- treat all model responses as potentially malicious input before downstream use
  3. Least privilege for agents -- grant only the tools needed for the current sub-task, revoke after completion
  4. Human verification of destruction -- destructive or irreversible actions require a human signature
  5. No secrets in client -- all AI logic and keys reside in server-only environments
  6. Adversarial mindset -- assume both users and agents will attempt to bypass rules
  7. Defense in depth -- layer defenses so that bypassing one layer does not compromise the system
  8. Supply chain verification -- verify provenance and integrity of all models, datasets, and AI tools

OWASP LLM Top 10 (2025) Coverage

OWASP RiskReference
LLM01 Prompt InjectionPrompt Injection Defense
LLM02 Sensitive Information DisclosureSecure Server Actions (stream scrubbing, output filtering)
LLM03 Supply ChainSupply Chain and MCP Security
LLM04 Data and Model PoisoningSupply Chain and MCP Security
LLM05 Improper Output HandlingOutput Validation and Encoding
LLM06 Excessive AgencyAgentic Zero-Trust Security (least privilege, HITL)
LLM07 System Prompt LeakagePrompt Injection Defense (non-extractable prompts)
LLM08 Vector and Embedding WeaknessesOutput Validation and Encoding (RAG sanitization)
LLM09 MisinformationOutput Validation and Encoding (semantic filtering)
LLM10 Unbounded ConsumptionSecure Server Actions (rate limiting, token budgets)

Common Mistakes

MistakeCorrect Pattern
Mixing user input and system instructions in the same prompt fieldUse structural isolation with separate system and user message roles
Trusting LLM output and passing it directly to exec, eval, or SQLTreat all model output as untrusted; use parameterized queries and context-aware encoding
Giving agents unlimited tool access for all tasksApply capability-based scopes granting only tools needed per sub-task
Using static API keys for AI service authenticationUse OIDC with dynamic key rotation and short-lived tokens
Loading third-party models without provenance checksVerify model checksums, use signed artifacts, maintain AI-BOM
Granting MCP servers broad permissions without validationAllowlist MCP tools, validate all inputs/outputs, enforce human approval for sensitive actions
Passing raw user input directly to AI servicesValidate all input with Zod schemas before AI processing
Streaming AI responses without output filteringScrub sensitive strings from streams before they reach the client

Key Frameworks

  • OWASP Top 10 for LLM Applications 2025 -- industry standard for LLM vulnerability classification
  • NIST AI Risk Management Framework (AI RMF 1.0) -- four-function framework (Govern, Map, Measure, Manage) for AI risk
  • NIST Cybersecurity Framework Profile for AI (NISTIR 8596) -- guidelines for secure AI adoption
  • OWASP MCP Security Cheat Sheet -- practical guide for securing third-party MCP server integrations
  • CycloneDX 1.6 / SPDX 3.0 -- standards supporting AI Bill of Materials (ML-BOM)

Delegation

  • Scan codebase for prompt injection vulnerabilities: Use Explore agent to search for user data flowing into system prompts and unvalidated inputs
  • Implement zero-trust agent orchestration: Use Task agent to add identity verification, sandboxing, and human approval gates
  • Audit model output handling: Use Explore agent to find LLM outputs passed to exec, eval, SQL, or rendered as HTML without sanitization
  • Review MCP tool configurations: Use Explore agent to check MCP server permissions, tool allowlists, and authentication setup
  • Design secure AI integration architecture: Use Plan agent to map trust boundaries, agent scopes, and audit requirements
  • Assess supply chain risks: Use Explore agent to inventory third-party models, datasets, and MCP servers with provenance records
  • Set up security monitoring: Use Task agent to configure audit logging, anomaly detection, and incident response alerts
For general application security (OWASP Top 10, auth patterns, security headers, input validation), use the application-security skill. For database-layer security (RLS policies, audit trails, Postgres hardening), use the database-security skill.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.54%
按下载量换算82

Claude

28.53%
按下载量换算66

Cursor

20.11%
按下载量换算47

Gemini CLI

10.3%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills