发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
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.
Integration Testing with Mocked Activities
Comprehensive patterns for testing workflows with mocked external dependencies, error injection, and complex scenarios.
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.
Temporal Go Implementation Playbook
This playbook provides production-ready patterns and deep technical guidance for implementing durable orchestration with the Temporal Go SDK.
Temporal Go SDK (temporal-golang-pro)
来自 sickn33/antigravity-awesome-skills 技能