Tencent MPS
一个面向 crypto 场景的 Agent 技能。原始说明:腾讯云 MPS 媒体处理服务,支持以下功能:【视频转码】转码/压缩/格式转换/H.264/H.265/AV1/MP4/编码/码率/分辨率/帧率。【画质增强】画质增强/老片修复/超分/视频超分/真人增强/漫剧增强/防抖/720P/1080P/2K/4K。【音频处理】音频分离/人声提取/伴奏提取/去...
name: tdd
metadata:
author: es6kr
version: "0.1.0"
depends-on: [skill-kit]
description: Test-Driven Development for coding and bug fixing. cycle - Red→Green→Refactor cycle, defining expected behavior, bug-fix TDD, anti-patterns [cycle.md], run - test execution workflow (environment detection→impact scope→execution→result reporting) [run.md], test-strategies - boundary value·equivalence partitioning·decision table·error guessing·path coverage test design techniques [test-strategies.md]. "TDD", "test first", "failing test", "doesn't work", "not working", "test design", "boundary value test", "test strategies", "equivalence partitioning", "bug fix", "run tests", "execute tests", "test run", "verify" triggers
Test-Driven Development: define expected behavior first, then make it pass with implementation.
| Topic | Description | Guide |
|-------|-------------|-------|
| cycle | Red→Green→Refactor cycle, bug-fix TDD, anti-patterns | cycle.md |
| run | Test execution workflow (environment detection→impact scope→execution→result reporting) | run.md |
| test-strategies | Boundary value·equivalence partitioning·decision table·error guessing·path coverage | test-strategies.md |
Define expected behavior → natural failure → implement → pass → refactor.
See cycle.md.
Environment detection → impact scope → execution (unit→integration→e2e) → result reporting.
See run.md.
Decide which test cases to write (boundary value, equivalence partitioning, etc.).
See test-strategies.md.