发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
client setup
来自 sickn33/antigravity-awesome-skills 技能
client enqueue
来自 sickn33/antigravity-awesome-skills 技能
advanced versioning
来自 sickn33/antigravity-awesome-skills 技能
advanced patching
来自 sickn33/antigravity-awesome-skills 技能
Section Definitions
This file defines the rule categories for DBOS TypeScript best practices. Rules are automatically assigned to sections based on their filename prefix.
Could run forever!
while not done: process_next() ``` **Correct (with timeout):**
Long running work
pass thread = threading.Thread(target=long_task, args=(data,)) thread.start() ```
One user blocks all other users!
queue.enqueue(process_task, task) ``` **Correct (per-user limits with partitioning):**
Uses lots of memory
pass ``` **Correct (worker concurrency):**
Regular sleep is lost on restart!
time.sleep(delay_seconds) run_task(task) ``` **Correct (durable sleep):**
Connection leaked - no destroy()!
``` **Correct (with cleanup):**
Section Definitions
This file defines the rule categories for DBOS Python best practices. Rules are automatically assigned to sections based on their filename prefix.