发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
Desert Rose
A soft and sophisticated theme with dusty, muted tones perfect for elegant presentations.
Botanical Garden
A fresh and organic theme featuring vibrant garden-inspired colors for lively presentations.
Arctic Frost
A cool and crisp winter-inspired theme that conveys clarity, precision, and professionalism.
Testing/QA Workflow Bundle
来自 sickn33/antigravity-awesome-skills 技能
Testing Anti-Patterns
**Load this reference when:** writing or changing tests, adding mocks, or tempted to add test-only methods to production code.
AWS Terraform Module Patterns
- VPC with public/private subnets - Internet Gateway and NAT Gateways - Route tables and associations - Network ACLs - VPC Flow Logs
Terraform Infrastructure Workflow
来自 sickn33/antigravity-awesome-skills 技能
modules/vpc/variables.tf
variable "name" { type = string } variable "cidr" { type = string, default = "10.0.0.0/16" } variable "azs" { type = list(string) } resource "aws_vpc" "this" { cidr_block = var.cidr
Unit Testing Temporal Workflows and Activities
Focused guide for testing individual workflows and activities in isolation using WorkflowEnvironment and ActivityEnvironment.
Replay Testing for Determinism and Compatibility
Comprehensive guide for validating workflow determinism and ensuring safe code changes using replay testing.
Local Development Setup for Temporal Python Testing
Comprehensive guide for setting up local Temporal development environment with pytest integration and coverage tracking.
Temporal Go Testing Strategies
Testing workflows and activities in Go requires a deep understanding of the `testsuite` package, which provides a mocked environment with deterministic time-skipping.