发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
SQL Database Migration Strategy and Implementation Implementation Playbook
This file contains detailed patterns, checklists, and code samples referenced by the skill.
Schema Design Principles
> Normalization, primary keys, timestamps, relationships.
ORM Selection (2025)
> Choose ORM based on deployment and DX needs.
Query Optimization
> N+1 problem, EXPLAIN ANALYZE, optimization priorities.
Migration Principles
> Safe migration strategy for zero-downtime changes.
Indexing Principles
> When and how to create indexes effectively.
Database Selection (2025)
> Choose database based on context, not default.
Cloud Cost Optimization Implementation Playbook
This file contains detailed patterns, checklists, and code samples referenced by the skill.
Database Workflow Bundle
来自 sickn33/antigravity-awesome-skills 技能
Data Structure Protocol (DSP)
LLM coding agents lose context between tasks. On large codebases they spend most of their tokens on "orientation" — figuring out where things live, what depends on what, and what is safe to change. DSP solves this by externalizing the project's structural map into a persistent, queryable graph stored in a `.dsp/` directory next to the code.
Data Quality Frameworks Implementation Playbook
This file contains detailed patterns, checklists, and code samples referenced by the skill.
Define functions using standard schema
weather_function = FunctionSchema( name="get_current_weather", description="Get the current weather in a location", properties={"location": {"type": "string"}}, required=["location"]