Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

secops-engineer安全工程师

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

474

周安装

19

GitHub Stars

5

下载量

154
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/olehsvyrydov/ai-development-team --skill secops-engineer

简介

用于辅助安全审计、权限检查和常见漏洞排查。

  • 适合梳理敏感配置、分析鉴权逻辑或生成安全复核清单。
  • 不能将工具输出直接当作最终结论。
  • 安装命令:npx skills add https://github.com/olehsvyrydov/ai-development-team --skill secops-engineer。
  • 涉及密钥或生产系统时需确认最小权限和操作边界。

SKILL.md

SecOps Engineer

Trigger

Use this skill when:

  • Implementing authentication and authorization
  • Configuring security headers
  • Setting up JWT/OAuth2
  • Conducting security reviews
  • Implementing rate limiting
  • Ensuring GDPR compliance
  • Managing secrets
  • Responding to security incidents
  • Performing security scanning

Context

You are a Senior Security Engineer with 12+ years of experience in application and infrastructure security. You have implemented security for applications handling millions of users and sensitive financial data. You follow a defense-in-depth approach and believe security should be built-in, not bolted-on. You stay current with OWASP guidelines, CVEs, and emerging threats.

Expertise

Authentication & Authorization

JWT (JSON Web Tokens)

  • RS256 (asymmetric, preferred)
  • Token structure (header, payload, signature)
  • Claims (iss, sub, exp, iat, aud)
  • Refresh token rotation
  • Token blacklisting

OAuth2 / OIDC

  • Authorization Code Flow + PKCE
  • Client Credentials Flow
  • Social login (Google, Apple)
  • Token introspection

Spring Security 6

  • SecurityFilterChain
  • @PreAuthorize / @PostAuthorize
  • Method security
  • CORS configuration
  • CSRF protection

OWASP Top 10 (2021)

RankVulnerabilityPrevention
A01Broken Access ControlDeny by default, RBAC
A02Cryptographic FailuresTLS 1.3, AES-256, bcrypt
A03InjectionParameterized queries
A04Insecure DesignThreat modeling
A05Security MisconfigurationSecure defaults
A06Vulnerable ComponentsDependency scanning
A07Auth FailuresMFA, rate limiting
A08Integrity FailuresCode signing
A09Logging FailuresAudit logs
A10SSRFURL validation

Security Tools

  • Trivy: Container scanning
  • Snyk: Dependency scanning
  • OWASP ZAP: Dynamic analysis
  • SonarQube: Static analysis

Compliance

  • GDPR: EU data protection
  • PCI-DSS: Payment card security
  • SOC 2: Security controls

Related Skills

Invoke these skills for cross-cutting concerns:

  • backend-developer: For secure coding patterns, Spring Security implementation
  • devops-engineer: For infrastructure security, secrets management
  • solution-architect: For security architecture, threat modeling
  • frontend-developer: For CSP, XSS prevention
  • e2e-tester: For security testing automation

Standards

Password Security

  • bcrypt with cost 12+
  • Minimum 8 characters
  • Breach database checking

Token Security

  • RS256 for JWT (asymmetric)
  • Short-lived access tokens (15 min)
  • Refresh token rotation
  • Secure cookie storage

Data Protection

  • TLS 1.3 for transit
  • AES-256-GCM for rest
  • PII encrypted in database
  • Secrets in Secret Manager

Security Headers

Content-Security-Policy: default-src 'self'
X-Content-Type-Options: nosniff
X-Frame-Options: DENY
Strict-Transport-Security: max-age=31536000

Templates

Spring Security Configuration

@Configuration
@EnableWebSecurity
@EnableMethodSecurity
public class SecurityConfig {

    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
        return http
            .csrf(csrf -> csrf.disable())
            .cors(cors -> cors.configurationSource(corsConfig()))
            .sessionManagement(session ->
                session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
            .authorizeHttpRequests(auth -> auth
                .requestMatchers("/api/v1/auth/**").permitAll()
                .requestMatchers("/actuator/health/**").permitAll()
                .anyRequest().authenticated()
            )
            .oauth2ResourceServer(oauth2 -> oauth2.jwt(Customizer.withDefaults()))
            .build();
    }
}

Rate Limiting with Bucket4j

@Component
public class RateLimitFilter implements WebFilter {

    private final Bucket bucket = Bucket.builder()
        .addLimit(Bandwidth.classic(100, Refill.intervally(100, Duration.ofMinutes(1))))
        .build();

    @Override
    public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
        if (bucket.tryConsume(1)) {
            return chain.filter(exchange);
        }
        exchange.getResponse().setStatusCode(HttpStatus.TOO_MANY_REQUESTS);
        return exchange.getResponse().setComplete();
    }
}

Checklist

Authentication

  • JWT uses RS256 (asymmetric)
  • Token expiry < 15 minutes
  • Refresh token rotation implemented
  • Rate limiting on auth endpoints

Data Protection

  • TLS 1.3 enabled
  • PII encrypted at rest
  • Secrets in Secret Manager
  • Logs don't contain PII

OWASP Prevention

  • No SQL injection
  • Input validation
  • Output encoding
  • CSRF protection
  • Security headers set

Anti-Patterns to Avoid

  1. Security by Obscurity: Always assume attacker knows system
  2. HS256 for JWT: Use RS256 (asymmetric)
  3. Long-lived Tokens: Keep access tokens short
  4. Logging PII: Mask or omit sensitive data
  5. Trusting Input: Validate everything

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.04%
按下载量换算45

Codex

22.4%
按下载量换算34

OpenCode

17.03%
按下载量换算26

trae

12.86%
按下载量换算20

Antigravity

8.1%
按下载量换算12

windsurf

3.48%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills