AI Agents Marketplace

Showing 22 of 22 results

Development ClawHub

testing

Skill

# Testing Guide ## Test Types & When to Use | Type | Location | Use Case | |------|----------|----------| | `.sqltest` | `sqlite/conformance/sqlite-sqltests/` | SQL compatibility. **Preferred for new tests** | | TCL `.test` | `testing/` | Legacy SQL compat (being phased out) | | Rust integration | `tests/integration/` | Regression tests, complex scenarios | | Fuzz | `tests/fuzz/` | Complex features, edge case discovery | **Note:** TCL tests are being phased out in favor of the `.sqltest` suites in `sqlite/c

Development ClawHub

E2E Testing Patterns

Skill

Build reliable, fast E2E test suites with Playwright and Cypress. Critical user journey coverage, flaky test elimination, CI/CD integration.

Development ClawHub

Testing Patterns

Skill

Unit, integration, and E2E testing patterns with framework-specific guidance. Use when asked to "write tests", "add test coverage", "testing strategy", "test this function", "create test suite", "fix flaky tests", or "improve test quality".

Development ClawHub

Quant Testing

Skill

量化测试流程技能。当用户说"回归测试"、"策略测试"、"回测验证"、"实盘验证"、"测试"、"上线"、"发布"时自动触发。提供回归测试流程、测试用例模板、测试报告模板。适用于量化项目的测试和上线阶段。

Development ClawHub

browser-testing-toolkit

Skill

浏览器测试与自动化工具包。三层架构:L1快速验证(playwright-cli)、L2深度调试(DevTools)、L3复杂测试(Python+E2E)。v1.1 新增智能点击(自动处理遮挡)。

Development ClawHub

E2E Testing

Skill

Use when creating, maintaining, debugging, or reviewing real-browser end-to-end tests with Playwright or Cypress, including Page Object models, CI artifacts,...

Development ClawHub

Testing Workflow

Agent

Meta-skill that orchestrates comprehensive testing across a project by coordinating testing-patterns, e2e-testing, and testing agents. Use when setting up testing for a new project, improving coverage for an existing project, establishing a testing strategy, or verifying quality before a release.

Development ClawHub

Frontend Testing

Skill

Designs and writes frontend unit, component, integration, and E2E tests using Jest, Vitest, Testing Library, MSW, and Playwright with mocks and coverage cons...

Development ClawHub

回归测试

Skill

根据变更范围、风险等级和时间约束制定分级精准回归方案。当版本迭代了、代码改动了、你需要确定"到底哪些功能要重新测一遍"的时候使用此技能。回归的时间永远不够——此技能帮你做出取舍决策:冒烟回归(P0核心流程)、核心回归(高影响区域)、全量回归(有余力时)。基于变更分析和风险评估选择最省时的回归策略,而不是盲目全量回归。 本技能属于 QA Test Skills 技能集(49 个技能之一),完整工作流体验需安装全套:npx skills add Kokxi/qa-test-skills

Development ClawHub

移动端测试

Skill

当需要测试 iOS/Android 原生 App、H5 页面或小程序的移动端专项场景时使用此技能。移动端的坑主要不在功能逻辑上——中断(电话/通知/低电量)、弱网/断网/网络切换、前后台切换、系统权限管理、多机型适配和各种系统版本兼容才是重灾区。不要只测功能流程,移动端的 Bug 有一半以上是中断和兼容性相关的。输出按中断/网络/权限/兼容/性能分类的测试要点清单。 本技能属于 QA Test Skills 技能集(49 个技能之一),完整工作流体验需安装全套:npx skills add Kokxi/qa-test-skills

Development ClawHub

python-testing

Skill

Python testing patterns with pytest, fixtures, TDD, mocking, async and integration tests

Development ClawHub

testing-with-sandbox

Skill

Use when capturing outbound email in development or staging without delivering to real recipients, inspecting HTML or headers, running spam or structure checks, or automating tests against a fake inbox. Use when testing outgoing mail from an app without committing to a production ESP yet. Use when u

Development ClawHub

统计假设检验技能

Skill

统计假设检验工具;支持正态性检验(Shapiro-Wilk/K-S)、t检验(单样本/独立/配对)、卡方检验(拟合优度/独立性)、ANOVA、Levene检验、Mann-Whitney U检验;自动计算统计量、p值、置信区间与效应量;提供结果解释指南

Development ClawHub

Kylinos Automated Testing

Agent

指导 Agent 独立完成银河麒麟 V11 桌面软件的 GUI 兼容性自动化适配测试,不依赖特定工具链

Development ClawHub

browser-testing

Skill

VERIFY your changes work. Measure CLS, detect theme flicker, test visual stability, check performance. Use BEFORE and AFTER making changes to confirm fixes....

Development ClawHub

Testing Strategy

Skill

Deep testing strategy workflow—risk mapping, test pyramid, levels of isolation, flakiness, data, CI gates, and quality signals beyond coverage %. Use when de...

Development ClawHub

APITester Agent-Driven API Testing

Agent

Test API endpoints and document responses. Define tests in plain English, run them, get formatted results. Agent-driven Postman alternative.

Development ClawHub

Flutter Testing

Skill

全面的 Flutter 测试指导(单元/集成/Widget 测试)

Development ClawHub

penetration-testing

Skill

# Penetration Testing ## Table of Contents - [Overview](#overview) - [When to Use](#when-to-use) - [Quick Start](#quick-start) - [Reference Guides](#reference-guides) - [Best Practices](#best-practices) ## Overview Systematic security testing to identify, exploit, and document vulnerabilities in applications, networks, and infrastructure through simulated attacks. ## When to Use - Pre-production security validation - Annual security assessments - Compliance requirements (PCI-DSS, ISO 27001) - Post-incident

Development ClawHub

safe-action-testing

Skill

# Testing next-safe-action ## Testing Actions Directly Server actions are async functions — call them directly in tests: ```ts // src/__tests__/actions.test.ts import { describe, it, expect, vi } from "vitest"; import { createUser } from "@/app/actions"; describe("createUser", () => { it("returns user data on valid input", async () => { const result = await createUser({ name: "Alice", email: "alice@example.com" }); expect(result.data).toEqual({ id: expect.any(String), name: "Alice", }); expect(result.server

Development ClawHub

testing-dags

Skill

# DAG Testing Skill Use `af` commands to test, debug, and fix DAGs in iterative cycles. ## Running the CLI These commands assume `af` is on PATH. Run via `astro otto` to get it automatically, or install standalone with `uv tool install astro-airflow-mcp`. --- ## Quick Validation with Astro CLI If the user has the Astro CLI available, these commands provide fast feedback without needing a running Airflow instance: ```bash # Parse DAGs to catch import errors, syntax issues, and DAG-level problems astro dev pa

Development ClawHub

jest-react-testing

Skill

# Jest React Testing A comprehensive skill for testing React applications using Jest and React Testing Library. This skill covers everything from basic component testing to advanced patterns including mocking, async testing, custom hooks testing, and integration testing strategies. ## When to Use This Skill Use this skill when: - Testing React components with Jest and React Testing Library - Setting up Jest configuration for React projects - Writing unit tests for components, hooks, and utilities - Testing