api
RESTful API design patterns and best practices. Use when creating endpoints, designing APIs, or implementing routes.
Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure.
$ npx -y skills add xiaobei930/cc-best --skill testing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testingContext preview
The summary Claude sees to decide when to auto-load this skill.
Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure.
name: testing description: "Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure." allowed-tools: Read, Write, Edit, Bash, Grep, Glob
> 关联 Agent: `tdd-guide`(测试驱动开发)、`code-reviewer`(可测试性评估)、`build-error-resolver`(修复后测试验证)
本技能提供测试策略选择指南,整合 TDD(测试驱动开发)和 E2E(端到端测试)最佳实践。
┌─────────┐
│ E2E │ 少量:验证核心流程
├─────────┤
│集成测试 │ 中等:验证组件交互
├─────────┤
│单元测试 │ 大量:验证独立单元
└─────────┘| 场景 | 推荐策略 | 参阅文件 | | ---------------- | -------------------- | -------- | | 新功能开发 | TDD(测试先行) | `tdd.md` | | Bug 修复 | 先写失败测试,再修复 | `tdd.md` | | 核心用户流程验证 | E2E 测试 | `e2e.md` | | 重构现有代码 | 先补测试,再重构 | `tdd.md` | | UI 交互验证 | E2E + 视觉回归 | `e2e.md` |
| 代码类型 | 单元测试 | E2E 测试 | | ------------ | -------- | -------- | | 核心业务逻辑 | 100% | 关键流程 | | 普通业务代码 | 80%+ | 可选 | | 工具函数 | 80%+ | 不需要 | | UI 组件 | 70%+ | 关键交互 |
1. **测试先行** - TDD 循环:RED → GREEN → REFACTOR 2. **独立隔离** - 每个测试独立运行,无共享状态 3. **快速反馈** - 单元测试 < 50ms,E2E 适度控制 4. **语义命名** - 测试名称描述行为,不描述实现 5. **分层覆盖** - 单元测试多,E2E 测试精
RED → GREEN → REFACTOR → REPEAT RED: 写一个失败的测试 GREEN: 写最少的代码使测试通过 REFACTOR: 改进代码,保持测试绿色 REPEAT: 下一个场景
详细指南参阅 `tdd.md`
tests/ ├── e2e/ # E2E 测试目录 │ ├── auth/ # 认证流程 │ └── core/ # 核心功能 ├── pages/ # Page Object Model └── playwright.config.ts
详细指南参阅 `e2e.md`
# 单元测试 npm test npm test -- --coverage # E2E 测试 npx playwright test npx playwright test --headed # 可视化 npx playwright test --debug # 调试模式
---
> **记住**:测试不是可选项。它是支持自信重构、快速开发和生产可靠性的安全网。
Role-Driven Development Workflow for Claude Code Transform Claude into a complete development team. From product requirements to code review — one plugin, full workflow. Quick Start • Features • Workflow • Commands • FAQ
Repo: xiaobei930/cc-best
RESTful API design patterns and best practices. Use when creating endpoints, designing APIs, or implementing routes.
Architecture design skill: ADR records, system design checklists, scalability assessment, architecture patterns. Use for complex system design and architecture…
Backend development patterns for services, error handling, logging, caching. Use when building backend services, APIs, or microservices.
Strategic compaction skill: suggests context compression at logical breakpoints. Use to suggest compaction at logical intervals during development sessions.
Database design, query optimization, migrations, and indexing. Use when designing schemas, writing queries, or managing migrations.
Systematic debugging methods, log analysis, and performance diagnostics. Use when debugging issues, analyzing errors, or troubleshooting incidents.