Agent skill
crewai-development
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/crewai-development
SKILL.md
CrewAI Development Skill
NOTE: This is a FUTURE skill. CrewAI workflows will follow the same pattern as LangGraph when implemented.
When to Use This Skill
Use this skill when:
- Planning CrewAI workflow architecture (FUTURE)
- Setting up CrewAI as a NestJS application (FUTURE)
- Configuring webhook status tracking for CrewAI (FUTURE)
- Wrapping CrewAI endpoints as API agents (FUTURE)
Directory Structure (Future)
CrewAI applications will follow the same pattern as LangGraph:
apps/
├── api/ # Main NestJS API
├── n8n/ # N8N workflows
├── langgraph/ # LangGraph workflows
└── crewai/ # CrewAI workflows (FUTURE)
├── src/
│ ├── main.ts
│ ├── app.module.ts
│ ├── crews/
│ │ └── example-crew.ts
│ └── controllers/
│ └── crewai.controller.ts
├── package.json
└── tsconfig.json
Expected Pattern (When Implemented)
CrewAI workflows will:
- Be NestJS applications under
apps/crewai/ - Receive same parameters as n8n/LangGraph:
taskId,conversationId,userIduserMessage,statusWebhookprovider,modelstepName,sequence,totalSteps
- Use same webhook pattern for status tracking
- Wrap as API agents with request/response transforms
- Follow A2A protocol (health, agent card endpoints)
Reference
See LangGraph Development Skill for the complete pattern that CrewAI will follow when implemented.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?