用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aibot88/sec_skill_store --skill sc-orchestrator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Guides the creation of agile user stories and Gherkin feature files. Use when the user wants to create a user story, write acceptance criteria, define Gherkin scenarios, or author BDD feature files. This should trigger for requests such as Create a user story; Write a user story; I need to write a user story. Part of cursor-rules-java project
Guía técnica completa para integrar 250+ servicios externos con agentes IA usando Composio. Cubre instalación, autenticación OAuth, gestión de herramientas, triggers y flujos multi-servicio.
Facilitates conversational discovery to create Architectural Decision Records (ADRs) for non-functional requirements using the ISO/IEC 25010:2023 quality model. Use when the user wants to document quality attributes, NFR decisions, security/performance/scalability architecture, or design systems with measurable quality criteria. This should trigger for requests such as Create ADR for Non-functional requirements; Document Non-functional requirements; Capture Non-functional requirements; Generate Non-functional requirements in an ADR. Part of cursor-rules-java project
基于 SOC 职业分类
正在显示 SKILL.md
| name | sc-orchestrator |
| description | Master orchestration skill that coordinates the entire 4-phase security scanning pipeline |
| license | MIT |
| metadata | {"category":"security","version":"1.0.0"} |
The orchestrator is the central coordination skill for the security-check pipeline. It manages the execution of all scanning phases, dispatches vulnerability detection skills, tracks progress, aggregates results, and ensures the pipeline runs to completion even when individual skills encounter errors.
This skill activates when the user issues any of the following commands:
For diff/incremental mode, see sc-diff-report.
Before starting a scan:
security-report/ directory existssc-diff-report)security-report/ directoryExecute these skills sequentially:
sc-recon skillsecurity-report/architecture.mddetected_languages: list of programming languages founddetected_frameworks: list of frameworks foundapplication_type: web app, API, CLI, library, etc.entry_points: HTTP routes, CLI commands, etc.sc-dependency-audit skillsecurity-report/dependency-audit.mdBased on detected_languages from Phase 1, activate the appropriate skills.
| Detected Language | Skill to Activate |
|---|---|
| Go | sc-lang-go |
| TypeScript, JavaScript | sc-lang-typescript |
| Python | sc-lang-python |
| PHP | sc-lang-php |
| Rust | sc-lang-rust |
| Java, Kotlin | sc-lang-java |
| C#, F#, VB.NET | sc-lang-csharp |
Launch ALL of the following skills as parallel subagents. Each skill runs independently and writes its results to security-report/{skill-name}-results.md.
Injection Attacks:
Code Execution:
Access Control:
Data Exposure:
Server-Side:
Client-Side:
Logic & Design:
API Security:
Infrastructure (activate if relevant files detected):
security-report/{skill-name}-results.md"No issues found by {skill-name}."After all Phase 2 skills complete:
sc-verifier skillsecurity-report/*-results.md filessecurity-report/verified-findings.mdAfter verification completes:
sc-report skillsecurity-report/verified-findings.mdsecurity-report/SECURITY-REPORT.mdsc-recon fails: abort scan, report error to usersc-dependency-audit fails: continue without dependency data, note in reportsc-verifier fails: skip verification, use raw findings in report (note: unverified)sc-report fails: output raw verified-findings.md as the reportDuring execution, report progress to the user at these milestones:
security-report/
├── architecture.md # Phase 1: Codebase architecture map
├── dependency-audit.md # Phase 1: Dependency analysis
├── sc-sqli-results.md # Phase 2: Per-skill results
├── sc-xss-results.md # ...
├── sc-rce-results.md # ...
├── ... # (one file per skill)
├── verified-findings.md # Phase 3: Verified findings
└── SECURITY-REPORT.md # Phase 4: Final report