Skip to main content
~/
skillsmp
搜索
职业技能
洞察
文档
ZH
在 Manus 中运行任何 Skill
一键导入
一键在 Manus 中运行任何 Skill
开始使用
$
cd
top
一键运行任何 Skill
测试与安全 - Agent Skills | SkillsMP
$
pwd:
~
/
categories
/
testing-security
测试与安全
查找 agent skills 测试、质量保证、安全审计和代码质量技能。包括自动化测试框架、安全扫描器、代码审查工具和 QA 自动化。对于在生产环境中维护高质量、安全的代码库至关重要。
最多星标
最近更新
openclaw-small-bugfix-sweep.md
370.5k
from
"openclaw/openclaw"
Fix only small, high-certainty OpenClaw bugs from a pasted issue/PR list after deep code review.
2026-05-09
1password.md
370.5k
from
"openclaw/openclaw"
Set up and use 1Password CLI for sign-in, desktop integration, and reading or injecting secrets.
2026-04-23
feature-flags.md
244.9k
from
"facebook/react"
Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.
2026-01-24
fix.md
244.9k
from
"facebook/react"
Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
2026-01-24
flow.md
244.9k
from
"facebook/react"
Use when you need to run Flow type checking, or when seeing Flow type errors in React code.
2026-01-24
test.md
244.9k
from
"facebook/react"
Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.
2026-01-24
verify.md
244.9k
from
"facebook/react"
Use when you want to validate changes before committing, or when you need to check all React contribution requirements.
2026-01-24
n8n-node-add-oauth.md
187.3k
from
"n8n-io/n8n"
Add OAuth2 credential support to an existing n8n node — creates the credential file, updates the node, adds tests, and keeps the CLI constant in sync. Use when the user says /node-add-oauth.
2026-05-04
n8n-reproduce-bug.md
187.3k
from
"n8n-io/n8n"
Reproduce a bug from a Linear ticket with a failing test. Expects the full ticket context (title, description, comments) to be provided as input.
2026-05-04
n8n-spec-driven-development.md
187.3k
from
"n8n-io/n8n"
Keeps implementation and specs in sync. Use when working on a feature that has a spec in .claude/specs/, when the user says /spec, or when starting implementation of a documented feature. Also use when the user asks to verify implementation against a spec or update a spec after changes.
2026-05-04
receiving-code-review.md
185.0k
from
"obra/superpowers"
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
2025-12-24
requesting-code-review.md
185.0k
from
"obra/superpowers"
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
2026-05-04
test-driven-development.md
185.0k
from
"obra/superpowers"
Use when implementing any feature or bugfix, before writing implementation code
2025-12-18
verification-before-completion.md
185.0k
from
"obra/superpowers"
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
2025-10-17
writing-plans.md
185.0k
from
"obra/superpowers"
Use when you have a spec or requirements for a multi-step task, before touching code
2026-05-04
add-policy.md
184.8k
from
"microsoft/vscode"
Use when adding, modifying, or reviewing VS Code configuration policies. Covers the full policy lifecycle from registration to export to platform-specific artifacts. Run on ANY change that adds a `policy:` field to a configuration property.
2026-04-23
hygiene.md
184.8k
from
"microsoft/vscode"
Use when making code changes to ensure they pass VS Code's hygiene checks. Covers the pre-commit hook, unicode restrictions, string quoting rules, copyright headers, indentation, formatting, ESLint, and stylelint. Run the hygiene check before declaring work complete.
2026-02-19
integration-tests.md
184.8k
from
"microsoft/vscode"
Use when running integration tests in the VS Code repo. Covers scripts/test-integration.sh (macOS/Linux) and scripts/test-integration.bat (Windows), their supported arguments for filtering, and the difference between node.js integration tests and extension host tests.
2026-03-28
tool-rename-deprecation.md
184.8k
from
"microsoft/vscode"
Ensure renamed built-in tool references preserve backward compatibility. Use when renaming a toolReferenceName, tool set referenceName, or any tool identifier. Run on ANY change to tool registration code. Covers legacyToolReferenceFullNames for tools and legacyFullNames for tool sets.
2026-02-19
unit-tests.md
184.8k
from
"microsoft/vscode"
Use when running unit tests in the VS Code repo. Covers the runTests tool, scripts/test.sh (macOS/Linux) and scripts/test.bat (Windows), and their supported arguments for filtering, globbing, and debugging tests.
2026-03-29
write-frontend-tests.md
184.1k
from
"Significant-Gravitas/AutoGPT"
Analyze the current branch diff against dev, plan integration tests for changed frontend pages/components, and write them. TRIGGER when user asks to write frontend tests, add test coverage, or 'write tests for my changes'.
2026-04-14
kotlin-ktor-patterns.md
177.6k
from
"affaan-m/everything-claude-code"
Ktor 服务器模式,包括路由 DSL、插件、身份验证、Koin DI、kotlinx.serialization、WebSockets 和 testApplication 测试。
2026-03-22
kotlin-testing.md
177.6k
from
"affaan-m/everything-claude-code"
使用Kotest、MockK、协程测试、基于属性的测试和Kover覆盖率的Kotlin测试模式。遵循TDD方法论和地道的Kotlin实践。
2026-03-22
laravel-security.md
177.6k
from
"affaan-m/everything-claude-code"
Laravel 安全最佳实践,涵盖认证/授权、验证、CSRF、批量赋值、文件上传、密钥管理、速率限制和安全部署。
2026-03-21
laravel-tdd.md
177.6k
from
"affaan-m/everything-claude-code"
使用 PHPUnit 和 Pest、工厂、数据库测试、模拟以及覆盖率目标进行 Laravel 的测试驱动开发。
2026-03-21
golang-testing.md
177.6k
from
"affaan-m/everything-claude-code"
Go测试模式包括表格驱动测试、子测试、基准测试、模糊测试和测试覆盖率。遵循TDD方法论,采用地道的Go实践。
2026-03-22
laravel-verification.md
177.6k
from
"affaan-m/everything-claude-code"
Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness.
2026-03-21
e2e-testing.md
177.6k
from
"affaan-m/everything-claude-code"
Playwright E2E testing patterns, Page Object Model, configuration, CI/CD integration, artifact management, and flaky test strategies.
2026-04-29
eval-harness.md
177.6k
from
"affaan-m/everything-claude-code"
Formal evaluation framework for Claude Code sessions implementing eval-driven development (EDD) principles
2026-04-29
security-review.md
177.6k
from
"affaan-m/everything-claude-code"
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
2026-04-29
tdd-workflow.md
177.6k
from
"affaan-m/everything-claude-code"
Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.
2026-04-29
verification-loop.md
177.6k
from
"affaan-m/everything-claude-code"
A comprehensive verification system for Claude Code sessions.
2026-04-29
configure-ecc.md
177.6k
from
"affaan-m/everything-claude-code"
Everything Claude Code のインタラクティブなインストーラー — スキルとルールの選択とインストールをユーザーレベルまたはプロジェクトレベルのディレクトリへガイドし、パスを検証し、必要に応じてインストールされたファイルを最適化します。
2026-04-30
cpp-testing.md
177.6k
from
"affaan-m/everything-claude-code"
C++ テストの作成/更新/修正、GoogleTest/CTest の設定、失敗またはフレーキーなテストの診断、カバレッジ/サニタイザーの追加時にのみ使用します。
2026-03-03
django-security.md
177.6k
from
"affaan-m/everything-claude-code"
Django security best practices, authentication, authorization, CSRF protection, SQL injection prevention, XSS prevention, and secure deployment configurations.
2026-03-13
eval-harness.md
177.6k
from
"affaan-m/everything-claude-code"
Claude Codeセッションの正式な評価フレームワークで、評価駆動開発(EDD)の原則を実装します
2026-03-24
golang-testing.md
177.6k
from
"affaan-m/everything-claude-code"
テスト駆動開発とGoコードの高品質を保証するための包括的なテスト戦略。
2026-03-24
java-coding-standards.md
177.6k
from
"affaan-m/everything-claude-code"
Spring Bootサービス向けのJavaコーディング標準:命名、不変性、Optional使用、ストリーム、例外、ジェネリクス、プロジェクトレイアウト。
2026-03-30
python-testing.md
177.6k
from
"affaan-m/everything-claude-code"
pytest、TDD手法、フィクスチャ、モック、パラメータ化、カバレッジ要件を使用したPythonテスト戦略。
2026-03-24
security-review.md
177.6k
from
"affaan-m/everything-claude-code"
認証の追加、ユーザー入力の処理、シークレットの操作、APIエンドポイントの作成、支払い/機密機能の実装時にこのスキルを使用します。包括的なセキュリティチェックリストとパターンを提供します。
2026-03-30
tdd-workflow.md
177.6k
from
"affaan-m/everything-claude-code"
新機能の作成、バグ修正、コードのリファクタリング時にこのスキルを使用します。ユニット、統合、E2Eテストを含む80%以上のカバレッジでテスト駆動開発を強制します。
2026-03-30
continuous-learning.md
177.6k
from
"affaan-m/everything-claude-code"
Claude Code 세션에서 재사용 가능한 패턴을 자동으로 추출하여 향후 사용을 위한 학습된 스킬로 저장합니다.
2026-03-13
eval-harness.md
177.6k
from
"affaan-m/everything-claude-code"
평가 주도 개발(EDD) 원칙을 구현하는 Claude Code 세션용 공식 평가 프레임워크
2026-03-10
golang-testing.md
177.6k
from
"affaan-m/everything-claude-code"
테이블 주도 테스트, 서브테스트, 벤치마크, 퍼징, 테스트 커버리지를 포함한 Go 테스팅 패턴. 관용적 Go 관행과 함께 TDD 방법론을 따릅니다.
2026-03-10
security-review.md
177.6k
from
"affaan-m/everything-claude-code"
인증 추가, 사용자 입력 처리, 시크릿 관리, API 엔드포인트 생성, 결제/민감한 기능 구현 시 이 스킬을 사용하세요. 포괄적인 보안 체크리스트와 패턴을 제공합니다.
2026-03-30
tdd-workflow.md
177.6k
from
"affaan-m/everything-claude-code"
새 기능 작성, 버그 수정 또는 코드 리팩터링 시 이 스킬을 사용하세요. 단위, 통합, E2E 테스트를 포함한 80% 이상의 커버리지로 테스트 주도 개발을 시행합니다.
2026-03-13
verification-loop.md
177.6k
from
"affaan-m/everything-claude-code"
Claude Code 세션을 위한 포괄적인 검증 시스템.
2026-03-13
e2e-testing.md
177.6k
from
"affaan-m/everything-claude-code"
Playwright E2E test kalıpları, Page Object Model, yapılandırma, CI/CD entegrasyonu, artifact yönetimi ve kararsız test stratejileri.
2026-03-22