发现优质的 AI Agent 技能

聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用

84,911浏览
2下载资源
1用户
广告位 728x90

共 442 个技能

🔗

Async Traps

- ORM is sync-only — `await Model.objects.get()` raises SynchronousOnlyOperation - `sync_to_async` for ORM — `await sync_to_async(Model.objects.get)(pk=1)` - `sync_to_async` default not thread-safe — use `thread_sensitive=True` for ORM - Async view with sync middleware — entire request becomes sync - `database_sync_to_async` in Channels — wrapper for ORM in consumers

aidatabaseopenclawarchive+1
2329
0
🔗

Deployment Rules

- Tests passing in CI — never deploy with failing tests - Environment variables set in target — missing secrets cause silent failures - Database migrations run before code deploy — new code expecting new schema fails - Rollback plan ready — know exactly how to revert before you need to

aidatabaseopenclawarchive+1
2329
0
🔗

Database Gotchas

- Connection pools exhausted = app hangs silently — set max connections, monitor pool usage - Each Lambda/serverless invocation may open new connection — use connection pooling proxy (RDS Proxy, PgBouncer) - Connections left open block schema changes — `ALTER TABLE` waits for all transactions - Idle connections consume memory — set connection timeout, kill idle connections

aidatabaseopenclawarchive+1
2329
0
🔗

Reusable Templates

Use these templates when preparing high-impact database changes.

databaseopenclawarchivebackup+1
2329
0
🔗

Setup - Database Manager

Use this file on first activation or whenever `~/database-manager/` is missing key files.

databaseopenclawarchivebackup+1
2329
0
🔗

Memory Template - Database Manager

Create `~/database-manager/memory.md` with this structure:

databaseopenclawarchivebackup+1
2329
0
🔗

Inventory and Governance

Use this file to keep ownership and blast-radius context explicit before major database work.

databaseopenclawarchivebackup+1
2329
0
🔗

Incident Playbook

Use this file when production data integrity or database availability is at risk.

aidatabaseopenclawarchive+1
2329
0
🔗

Data Sources by Use Case

- **Stripe/Paddle:** MRR, churn, LTV, subscriptions via API - **Analytics:** Mixpanel, Amplitude, PostHog, Google Analytics - **CRM:** HubSpot, Pipedrive for sales pipeline - **Custom DB:** Direct PostgreSQL/MySQL queries for user data

postgressqlapiopenclaw+1
2329
0
🔗

Good: One alert for database down affecting 50 pods

group_by: ['alertname', 'service'] ``` **Implement severity hierarchy: P0 (pages immediately) > P1 (within 15min) > P2 (business hours) > P3 (weekly review).** P0: Service completely down, data loss, security breach. P1: Degraded performance, partial outage, high error rates.

databasesecurityopenclawarchive+1
2329
0
🔗

openclaw-notion-api

Use the Notion API to create/read/update pages, data sources (databases), and blocks.

databaseapinotionopenclaw+1
2329
0
🔗

Employee Skills Importer

This skill automates the process of importing employee skills from CSV files into a Supabase database. It parses the CSV, checks what already exists in the database, and generates idempotent SQL scripts to insert missing data.

sqldatabaseopenclawarchive+1
2329
0
广告位 728x90