Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,437
总 Skills
161.5M
总安装量
2,741
贡献者
# Skill 仓库 描述 安装量
4701 aspnet-core openai/skills
ASP.NET Core Overview Choose the right ASP.NET Core application model, compose the host and request pipeline correctly, and implement features in the framework style Microsoft documents today. Load the smallest set of references that fits the task. Do not load every reference by default. Workflow Confirm the target framework, SDK, and current app model. Open references/stack-selection.md first for new apps or major refactors. Open references/program-and-pipeline.md next for Program.cs , DI, conf...
2.7K
4702 competitive-brief anthropics/knowledge-work-plugins
Competitive Brief If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Research competitors and generate a structured competitive analysis comparing positioning, messaging, content strategy, and market presence. Trigger User runs /competitive-brief or asks for a competitive analysis, competitor research, or market comparison. Inputs Gather the following from the user: Competitor name(s) — one or more competitors to analyze (required) Your company/pro...
2.7K
4703 drawio jgraph/drawio-mcp
Draw.io Skill AI-powered Draw.io diagram generation with real-time browser preview for Claude Code. Quick Start What you want to do Command Description Create new diagram /drawio-create Natural language → diagram Replicate image /drawio-replicate Image → A-H → diagram Edit diagram /drawio-edit Modify existing diagram Tip: You can also use natural language keywords like "create", "replicate", "edit" to trigger workflows. Features Design System - Unified visual language with themes, tokens, an...
2.7K
4704 paper-audit bahayonghang/academic-writing-skills
Paper Audit Skill Unified academic paper auditing across formats and languages. Steps Parse the paper path and mode from $ARGUMENTS . If missing, confirm the target .tex , .typ , or .pdf file. Review evaluation criteria in $SKILL_DIR/references/REVIEW_CRITERIA.md and $SKILL_DIR/references/CHECKLIST.md . Run the orchestrator: python $SKILL_DIR/scripts/audit.py $ARGUMENTS . Present the MD report directly to the user. Distinguish between automated findings and LLM-judgment scores. If in review mode...
2.7K
4705 ce-debug everyinc/compound-engineering-plugin
Debug and Fix Find root causes, then fix them. This skill investigates bugs systematically — tracing the full causal chain before proposing a fix — and optionally implements the fix with test-first discipline. <bug_description> $ARGUMENTS </bug_description> Core Principles Investigate before fixing. Do not propose a fix until you can explain the full causal chain from trigger to symptom with no gaps. "Somehow X leads to Y" is a gap. Predictions for uncertain links. When the causal chain has unce...
2.7K
4706 api-recon-and-docs yaklang/hack-skills
SKILL: API Recon and Docs — Endpoints, Schemas, and Version Surface AI LOAD INSTRUCTION : Use this skill first when the target is a REST, mobile, or GraphQL API and you need to enumerate endpoints, documentation, versions, and hidden surface area before exploitation. 1. PRIMARY GOALS Discover all reachable API entrypoints. Extract schemas, optional fields, and role differences. Identify old versions, mobile paths, GraphQL endpoints, and undocumented parameters. 2. RECON CHECKLIST JavaScript and ...
2.7K
4707 api-auth-and-jwt-abuse yaklang/hack-skills
SKILL: API Auth and JWT Abuse — Token Trust, Header Tricks, and Rate Limits AI LOAD INSTRUCTION : Use this skill when APIs rely on JWT, bearer tokens, API keys, or weak request identity signals. Focus on token trust boundaries, claim misuse, header spoofing, and rate-limit bypass. 1. TOKEN TRIAGE Inspect: alg , kid , jku , x5u role, org, tenant, scope, or privilege claims issuer and audience mismatches reuse of mobile and web tokens across products 2. QUICK ATTACK PICKS Pattern First Test alg:no...
2.7K
4708 jwt-oauth-token-attacks yaklang/hack-skills
SKILL: JWT and OAuth 2.0 Token Attacks — Expert Attack Playbook AI LOAD INSTRUCTION : Expert authentication token attacks. Covers JWT cryptographic attacks (alg:none, RS256→HS256, secret crack, kid/jku injection), OAuth flow attacks (CSRF, open redirect, token theft, implicit flow abuse), PKCE bypass, and token leakage via Referer/logs. This is critical for modern web applications. 0. RELATED ROUTING Use this file for token-centric attacks and flow abuse. Also load: oauth oidc misconfiguration f...
2.7K
4709 authbypass-authentication-flaws yaklang/hack-skills
SKILL: Authentication Bypass — Expert Attack Playbook AI LOAD INSTRUCTION : Expert authentication bypass techniques. Covers SQL injection-based login bypass, password reset flaws, token predictability, account enumeration, brute force bypass, and multi-factor auth bypass. Distinct from JWT/OAuth (covered in ../jwt-oauth-token-attacks/SKILL.md). Focus on the login mechanism itself. 0. AUTHORIZED CREDENTIAL TEST PLANNING 在减少入口后,默认凭证、用户名变体、端口聚焦和字典规模选择并入这里统一处理。 Service-first tiny sets Service Type F...
2.7K
4710 ce-ideate everyinc/compound-engineering-plugin
Generate Improvement Ideas Note: The current year is 2026. Use this when dating ideation documents and checking recent ideation artifacts. ce-ideate precedes ce-brainstorm . ce-ideate answers: "What are the strongest ideas worth exploring?" ce-brainstorm answers: "What exactly should one chosen idea mean?" ce-plan answers: "How should it be built?" This workflow produces a ranked ideation artifact in docs/ideation/ . It does not produce requirements, plans, or code. Interaction Method Use the pl...
2.7K
4711 ui-test browserbase/skills
UI Test — Agentic UI Testing Skill Test UI changes in a real browser. Your job is to try to break things , not confirm they work. Three workflows: Diff-driven — analyze a git diff, test only what changed Exploratory — navigate the app, find bugs the developer didn't think about Parallel — fan out independent test groups across multiple Browserbase browsers How Testing Works The main agent coordinates — it plans test strategy, delegates to sub-agents, and merges results. Sub-agents do the actual ...
2.7K
4712 audit-support anthropics/knowledge-work-plugins
Audit Support Important : This skill assists with SOX compliance workflows but does not provide audit or legal advice. All testing workpapers and assessments should be reviewed by qualified financial professionals. While "significance" and "materiality" are context-specific concepts that are ultimately assessed by auditors, this skill is intended to assist professionals in the creation and evaluation of effective internal controls and documentation for audits. SOX 404 control testing methodology...
2.7K
4713 websocket-security yaklang/hack-skills
SKILL: WebSocket Security AI LOAD INSTRUCTION : This skill covers WebSocket protocol basics, cross-site WebSocket hijacking (CSWSH), practical tooling bridges, and common vulnerability classes. Apply only in authorized tests; treat tokens and message content as sensitive. For REST/GraphQL companion testing, cross-load api-sec when present in the workspace. 0. QUICK START During proxy or raw traffic review, watch for: Upgrade : websocket Connection : Upgrade Sec-WebSocket-Key : dGhlIHNhbXBsZSBub2...
2.7K
4714 idor-broken-object-authorization yaklang/hack-skills
SKILL: IDOR / Broken Object Level Authorization — Expert Attack Playbook AI LOAD INSTRUCTION : IDOR is the 1 bug bounty finding. This skill covers non-obvious IDOR surfaces, all attack vectors (not just URL params), A-B testing methodology, BOLA vs BFLA distinction, chaining IDOR to higher impact, and what testers repeatedly miss. 1. IDOR vs BOLA vs BFLA Term Meaning Impact IDOR Insecure Direct Object Reference Read/modify other users' data BOLA Broken Object Level Authorization (OWASP API Top 1...
2.7K
4715 401-403-bypass-techniques yaklang/hack-skills
SKILL: 401/403 Bypass Techniques — Expert Attack Playbook AI LOAD INSTRUCTION : Comprehensive 401/403 forbidden bypass techniques. Covers path normalization tricks, HTTP method override, header-based bypasses (X-Original-URL, X-Forwarded-For), protocol version tricks, and combination attacks. Base models typically know 2-3 header bypasses but miss the full matrix of path manipulation variants and verb+path combos. 0. RELATED ROUTING authbypass-authentication-flaws — broader auth bypass (login fl...
2.7K
4716 k6 grafana/skills
k6 Performance Testing Docs : https://grafana.com/docs/k6/latest/ Quick Start Install brew install k6 macOS sudo apt install k6 Ubuntu/Debian choco install k6 Windows Run a test k6 run script.js k6 run --vus 10 --duration 30s script.js k6 run --out json = results.json script.js Basic Script Structure Show more
2.7K
4717 campaign-plan anthropics/knowledge-work-plugins
Campaign Plan If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate a comprehensive marketing campaign brief with objectives, audience, messaging, channel strategy, content calendar, and success metrics. Trigger User runs /campaign-plan or asks to plan, design, or build a marketing campaign. Inputs Gather the following from the user. If not provided, ask before proceeding: Campaign goal — the primary objective (e.g., drive signups, increase a...
2.7K
4718 waf-bypass-techniques yaklang/hack-skills
SKILL: WAF Bypass Techniques — Evasion Playbook AI LOAD INSTRUCTION : Covers WAF identification, generic bypass categories (encoding, protocol abuse, HTTP/2, parameter pollution), and a decision tree. For product-specific bypasses (Cloudflare, AWS WAF, ModSecurity, Akamai, etc.), load WAF_PRODUCT_MATRIX.md . Base models often suggest basic encoding but miss protocol-level bypasses and WAF behavioral quirks. 0. RELATED ROUTING sqli-sql-injection for payloads to deliver after bypassing WAF xss-cro...
2.7K
4719 skill-scanner getsentry/skills
Skill Security Scanner Scan agent skills for security issues before adoption. Detects prompt injection, malicious code, excessive permissions, secret exposure, and supply chain risks. Important : Run all scripts from the repository root using the full path via ${CLAUDE_SKILL_ROOT} . Bundled Script scripts/scan_skill.py Static analysis scanner that detects deterministic patterns. Outputs structured JSON. uv run ${CLAUDE_SKILL_ROOT} /scripts/scan_skill.py < skill-directory > Returns JSON with find...
2.7K
4720 ads-math agricidaniel/claude-ads
PPC Financial Calculator & Modeling Process Ask the user what calculation they need (or detect from context) Collect required inputs (from pasted data, exports, or verbal description) Perform calculations with clear formulas shown Present results with interpretation and recommendations Flag any concerning metrics or benchmarks Calculators 1. CPA Calculator CPA = Total Spend / Total Conversions Show more
2.7K
4721 m07-concurrency actionbook/rust-skills
Concurrency Layer 1: Language Mechanics Core Question Is this CPU-bound or I/O-bound, and what's the sharing model? Before choosing concurrency primitives: What's the workload type? What data needs to be shared? What's the thread safety requirement? Error → Design Question Show more
2.7K
4722 performance-review anthropics/knowledge-work-plugins
/performance-review If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Generate performance review templates and help structure feedback. Usage /performance-review $ARGUMENTS Modes /performance-review self-assessment Generate self-assessment template /performance-review manager [employee] Manager review template for a specific person /performance-review calibration Calibration prep document If no mode is specified, ask what ty...
2.7K
4723 nx-run-tasks nrwl/nx-ai-agents-config
You can run tasks with Nx in the following way. Keep in mind that you might have to prefix things with npx/pnpx/yarn if the user doesn't have nx installed globally. Look at the package.json or lockfile to determine which package manager is in use. For more details on any command, run it with --help (e.g. nx run-many --help , nx affected --help ). Understand which tasks can be run You can check those via nx show project <projectname> --json , for example nx show project myapp --json . It contains...
2.7K
4724 voice-changer elevenlabs/skills
ElevenLabs Voice Changer Transform the voice in an audio recording into a different target voice. Voice Changer (previously called Speech-to-Speech — the API endpoint and SDK methods still use the speech_to_speech / speechToSpeech name) keeps the original performance — emotion, pacing, intonation, breaths, whispers, laughs, cries — and only swaps who is speaking. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Key Facts Maximum input length: 5 minutes per request...
2.7K
4725 gke-batch-hpc google/skills
GKE Batch & HPC Workloads This reference covers running batch processing and high-performance computing (HPC) workloads on GKE. MCP Tools: apply_k8s_manifest , get_k8s_resource , describe_k8s_resource , get_k8s_logs , delete_k8s_resource , list_k8s_events When to Use Running batch data processing pipelines HPC simulations (CFD, molecular dynamics, financial modeling) Large-scale parallel computation (MPI, MapReduce) ML training jobs CI/CD build farms Batch Processing on GKE Show more Installs 70...
2.7K
4726 process-optimization anthropics/knowledge-work-plugins
Process Optimization Analyze existing processes and recommend improvements. Analysis Framework 1. Map Current State Document every step, decision point, and handoff Identify who does what and how long each step takes Note manual steps, approvals, and waiting times 2. Identify Waste Waiting : Time spent in queues or waiting for approvals Rework : Steps that fail and need to be redone Handoffs : Each handoff is a potential point of failure or delay Over-processing : Steps that add no value Manual ...
2.7K
4727 security-ownership-map openai/skills
Security Ownership Map Overview Build a bipartite graph of people and files from git history, then compute ownership risk and export graph artifacts for Neo4j/Gephi. Also build a file co-change graph (Jaccard similarity on shared commits) to cluster files by how they move together while ignoring large, noisy commits. Requirements Python 3 networkx (required; community detection is enabled by default) Install with: pip install networkx Workflow Scope the repo and time window (optional --since/--u...
2.7K
4728 auth-sec yaklang/hack-skills
Authentication and Authorization Router This is the routing entry point for authentication, sessions, and authorization boundaries. Use it to decide whether the issue is mainly login mechanics, object-level authorization, browser trust boundaries, or identity protocols such as OAuth/JWT/SAML before going deeper. When to Use The target includes login, registration, password reset, 2FA, sessions, JWT, OAuth, or SSO You suspect object authorization flaws, cross-tenant access, cross-origin reads, CS...
2.7K
4729 elasticsearch-file-ingest elastic/agent-skills
Elasticsearch File Ingest Stream-based ingestion and transformation of large data files (NDJSON, CSV, Parquet, Arrow IPC) into Elasticsearch. Features & Use Cases Stream-based : Handle large files without running out of memory High throughput : 50k+ documents/second on commodity hardware Cross-version : Seamlessly migrate between ES 8.x and 9.x, or replicate across clusters Formats : NDJSON, CSV, Parquet, Arrow IPC Transformations : Apply custom JavaScript transforms during ingestion (enrich, sp...
2.7K
4730 nestjs giuseppe-trisciuoglio/developer-kit
NestJS Framework with Drizzle ORM When to Use Building REST APIs or GraphQL servers with NestJS Setting up authentication and authorization Implementing middleware, guards, or interceptors Working with databases (TypeORM, Drizzle ORM) Creating microservices architecture Writing unit and integration tests Setting up OpenAPI/Swagger documentation Core Architecture Module Structure import { Module } from '@nestjs/common'; @Module({ imports: [/* other modules */], controllers: [/* controllers *...
2.7K
4731 gke-inference google/skills
GKE AI/ML Inference This reference covers deploying AI/ML inference workloads on GKE using Google's Inference Quickstart (GIQ) and best practices for LLM serving. MCP Tools: apply_k8s_manifest , get_k8s_resource , get_k8s_logs , get_k8s_rollout_status , describe_k8s_resource , list_k8s_events . CLI-only: gcloud container ai profiles * When to Use Deploy an AI model (Llama, Gemma, Mistral, etc.) to GKE Generate optimized Kubernetes manifests for inference Select GPU/TPU accelerators for model ser...
2.7K
4732 byok-custom-model starchild-ai-agent/official-skills
🔑 BYOK — Custom LLM Models Register a custom LLM endpoint to the model selector. Bypasses the platform proxy — the user supplies their own API key, the agent hits the vendor / aggregator directly (OpenRouter, DashScope, Anthropic native, self-hosted, etc.). This is a script-mode skill — no tools registered. Read this file, then call the exports from a bash block. See also config/context/references/model-onboarding.md — broader model selection / OAuth context chatgpt-codex-onboarding skill — for ...
2.7K
4733 equity-research anthropics/financial-services
Equity Research Analysis You are an expert equity research analyst. Combine IBES consensus estimates, company fundamentals, historical prices, and macro data from MCP tools into structured research snapshots. Focus on routing tool outputs into a coherent investment narrative — let the tools provide the data, you synthesize the thesis. Core Principles Every piece of data must connect to an investment thesis. Pull consensus estimates to understand market expectations, fundamentals to assess busine...
2.7K
4734 vibe-security raroque/vibe-security-skill
Audit code for security vulnerabilities commonly introduced by AI code generation. These issues are prevalent in "vibe-coded" apps — projects built rapidly with AI assistance where security fundamentals get skipped. AI assistants consistently get these patterns wrong, leading to real breaches, stolen API keys, and drained billing accounts. This skill exists to catch those mistakes before they ship. The Core Principle Never trust the client. Every price, user ID, role, subscription status, featur...
2.7K
4735 injection-checking yaklang/hack-skills
Injection Testing Router 这是输入进入危险解释器或执行环境时的分类入口。 它适合在确认“这是注入类问题”之后,继续判断更偏向浏览器上下文、数据库、模板引擎、服务端请求、XML 解析器还是系统命令。 When to Use 输入会进入 HTML、JS、SQL、模板、URL 提取器、XML 解析器或 shell 你还没决定应该先走 XSS、SQLi、SSRF、XXE、SSTI、CMDi 还是 NoSQL 你需要按输入流向选择正确的深度专题 skill Skill Map XSS Cross Site Scripting SQLi SQL Injection SSRF Server Side Request Forgery XXE XML External Entity SSTI Server Side Template Injection CMDi Command Injection NoSQL Injection Deserialization Insecure JNDI Injection Expression Language Injection CRLF I...
2.7K
4736 design-brief nexu-io/open-design
This skill creates a design brief through structured conversation. You may skip steps if they are not necessary. Example prompts "Write a brief for the onboarding flow" "I need to plan a settings page before I start building" "Help me define the direction for a marketing landing page" "Brief this: a dashboard that shows project health metrics" Process Ask the user for a detailed description of what they want to build, who it is for, and any constraints or ideas they already have. Explore the exi...
2.7K
4737 animate delphi-ai/animate-skill
Analyze a feature and strategically add animations and micro-interactions that enhance understanding, provide feedback, and create delight. MANDATORY PREPARATION Context Gathering (Do This First) You cannot do a great job without having necessary context, such as target audience (critical), desired use-cases (critical), brand personality/tone (playful vs serious, energetic vs calm), and performance constraints. Attempt to gather these from the current thread or codebase. If you don't find exact ...
2.7K
4738 kibana-alerting-rules elastic/agent-skills
Kibana Alerting Rules Core Concepts A rule has three parts: conditions (what to detect), schedule (how often to check), and actions (what happens when conditions are met). When conditions are met, the rule creates alerts , which trigger actions via connectors . Authentication All alerting API calls require either API key auth or Basic auth. Every mutating request must include the kbn-xsrf header. kbn-xsrf : true Required Privileges all privileges for the appropriate Kibana feature (e.g., Stack R...
2.7K
4739 social-media langchain-ai/deepagents
Social Media Content Skill This skill provides guidelines for creating engaging social media content that drives engagement and shares. When to Use This Skill Use this skill when asked to: Write a LinkedIn post Create a Twitter/X thread Draft social media announcements Repurpose blog content for social Research First (Required) Before writing any social media content, you MUST delegate research: Use the task tool with subagent_type: "researcher" In the description, specify BOTH the topic A...
2.7K
4740 loopy forward-future/loopy
Loopy Help the user discover loop opportunities in existing engineering work, reuse a published Loop Library loop when one fits, audit or repair an existing loop, craft a new one through a focused interview, run it with evidence, learn from the result, or prepare it for Loop Library. Treat a loop as a feedback system with terminal states, not as permission for endless autonomy. Route the request Choose the smallest useful path: Show more Installs 693 Repository forward-future/loopy GitHub Stars ...
2.7K
4741 privacy-policy phuryn/pm-skills
Privacy Policy Generator You are an experienced data privacy and compliance specialist. Your role is to help draft comprehensive, clear, and compliant privacy policies for digital products and services. Purpose Draft a detailed privacy policy for a product or service. The policy covers data types handled, applicable jurisdiction, and clearly marks clauses that require legal review. Provide plain-language explanations to ensure accessibility and transparency. Important Disclaimer This is for info...
2.7K
4742 kubernetes-pentesting yaklang/hack-skills
SKILL: Kubernetes Pentesting — Expert Attack Playbook AI LOAD INSTRUCTION : Expert Kubernetes attack techniques. Covers API server access, RBAC escalation, service account token abuse, etcd secrets extraction, Kubelet API exploitation, cloud IMDS access (EKS/GKE/AKS), admission webhook bypass, and network policy evasion. Base models miss the distinction between namespace-scoped and cluster-scoped RBAC, and overlook Kubelet's unauthenticated API. 0. RELATED ROUTING Before going deep, consider loa...
2.7K
4743 api-authorization-and-bola yaklang/hack-skills
SKILL: API Authorization and BOLA — Object Access, Function Access, and Mass Assignment AI LOAD INSTRUCTION : Use this skill when an API exposes object IDs, nested resources, or role-sensitive functions and you need a focused authorization test path: BOLA, BFLA, method abuse, and hidden field control. 1. CORE TEST LOOP Create Account A and Account B. As Account A, capture create, read, update, and delete flows. Replay with Account B's token. Test sibling endpoints, nested endpoints, and alternat...
2.7K
4744 spring-boot-test-patterns giuseppe-trisciuoglio/developer-kit
Spring Boot Testing Patterns Overview This skill provides comprehensive guidance for writing robust test suites for Spring Boot applications. It covers unit testing with Mockito, integration testing with Testcontainers, performance-optimized slice testing patterns, and best practices for maintaining fast feedback loops. When to Use This Skill Use this skill when: Writing unit tests for services, repositories, or utilities Implementing integration tests with real databases using Testcontainers Se...
2.7K
4745 semanticscholar-skill agents365-ai/365-skills
Semantic Scholar Search Workflow Search academic papers via the Semantic Scholar API using a structured 4-phase workflow. Critical rule: NEVER make multiple sequential Bash calls for API requests. Always write ONE Python script that runs all searches, then execute it once. All rate limiting is handled inside s2.py automatically. Phase 1: Understand & Plan Parse the user's intent and choose a search strategy: Decision Tree Default to search_bulk() . Per Semantic Scholar's own docs, bulk search is...
2.7K
4746 amazon-aurora-mysql aws/agent-toolkit-for-aws
Amazon Aurora MySQL A modular toolkit for Aurora MySQL organized as a registry of sub-skills. Each sub-skill handles one domain of Aurora MySQL work. The router matches user intent to the right sub-skill, then loads only the references needed. (For Aurora PostgreSQL — and its express-configuration quick-start — use the amazon-aurora-postgresql skill.) Operating procedure (follow in order) Route — match the request to a sub-skill using the Trigger phrases column (match on meaning, not exact wordi...
2.7K
4747 coss-particles cosscom/coss
COSS UI Particles Index Particles are copy-paste-ready UI patterns built on coss primitives. Browse them visually at https://coss.com/ui/particles . How to use this skill Describe the UI you need (e.g. "a form with validation", "a dialog with a form inside", "tabs with icons"). Search this index for matching particles by component type and description. Fetch the JSON URL to get the full source code of the particle. Adapt the particle code to your needs. JSON URL pattern Each particle has a JSON ...
2.7K
4748 limrun-maestro-testing limrun-inc/skills
Maestro on Limrun iOS Run the stock upstream Maestro CLI against a remote Limrun iOS simulator. lim ios maestro wires maestro test to the instance transparently: it installs and launches the Maestro XCTest runner on the simulator when needed, then routes the driver traffic to it. No fork of Maestro, no local simulator, no local Xcode. Prerequisites lim CLI 0.22.0 or newer: npm install --global lim . Auth is lim login or LIM_API_KEY (it may be set outside the project, so don't ask for it just bec...
2.7K
4749 mcp-duckgo aahl/skills
DuckDuckGo Search Executing Shell commands. Web search npx -y mcporter call --stdio 'uvx duckduckgo-mcp-server' search query="{keyword}" max_results=10 Web fetch npx -y mcporter call --stdio 'uvx duckduckgo-mcp-server' fetch_content url="https://..."
2.7K
4750 detection-engineering-coverage-evaluation google/skills
SecOps Detection Coverage Skill This skill guides the agent through an end-to-end detection engineering lifecycle using Google SecOps MCP tools. It handles multiple Threat Detection Opportunities (TDOs) and ensures exhaustive coverage evaluation for all generated synthetic events. Workflow Execution Checklist Copy this checklist and track progress for each iteration: Step 1: Extract raw text content from a source (for example, blog URL). Step 2: Generate Threat Detection Opportunities (TDOs). St...
2.7K