发现优质的 AI Agent 技能

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

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

共 11739 个技能

🔗

workflow constraints

来自 sickn33/antigravity-awesome-skills 技能

aiworkflowsickn33agentic-skills+1
21942
0
🔗

Wrong: assuming the workflow stopped immediately

cleanup_resources() # May race with workflow still running its current step ``` **Correct (wait for cancellation to complete):**

aiworkflowsickn33agentic-skills+1
21942
0
🔗

May hit rate limits if too many calls

return openai.chat.completions.create(...) ``` **Correct (with rate limit):**

openaiaichatsickn33+1
21942
0
🔗

All tasks treated equally - urgent tasks may wait

for task in tasks: queue.enqueue(process_task, task) ``` **Correct (with priority):**

aisickn33agentic-skillsai-agents+1
21942
0
🔗

Every worker processes both queues

if __name__ == "__main__": DBOS(config=config) DBOS.launch() ``` **Correct (workers listen to specific queues):**

aisickn33agentic-skillsai-agents+1
21942
0
🔗

Client waits for entire response

response = call_llm(prompt) return response ``` **Correct (streaming results):**

aisickn33agentic-skillsai-agents+1
21942
0
🔗

Polling is inefficient and not durable

while True: status = check_payment_status() if status == "paid": break time.sleep(1)

aisickn33agentic-skillsai-agents+1
21942
0
🔗

workflow constraints

来自 sickn33/antigravity-awesome-skills 技能

aiworkflowsickn33agentic-skills+1
21942
0
🔗

SQL Database Migration Strategy and Implementation Implementation Playbook

This file contains detailed patterns, checklists, and code samples referenced by the skill.

aisqldatabasesickn33+1
21942
0
🔗

Query Optimization

> N+1 problem, EXPLAIN ANALYZE, optimization priorities.

aisickn33agentic-skillsai-agents+1
21942
0
🔗

Cloud Cost Optimization Implementation Playbook

This file contains detailed patterns, checklists, and code samples referenced by the skill.

aisickn33agentic-skillsai-agents+1
21942
0
🔗

Data Quality Frameworks Implementation Playbook

This file contains detailed patterns, checklists, and code samples referenced by the skill.

aisickn33agentic-skillsai-agents+1
21942
0
广告位 728x90