crewai-workflows
Execute AI-powered crew workflows for marketing content generation, customer support handling, data analysis, and social media calendar creation. Use when tasks involve (1) creating marketing content, taglines, or campaigns, (2) handling customer support inquiries or responses, (3) analyzing business data for insights, (4) generating comprehensive social media content calendars, or (5) any content generation or analysis task that benefits from specialized AI crew workflows. Workflows are powered by DeepSeek, Perplexity, and Gemini models.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/rita5fr/crewai-workflowsCrewAI Workflows Skill
Execute specialized AI crew workflows for content generation, analysis, and support tasks. All crews run on a dedicated server with production-grade LLMs.
Prerequisites
Set the API key as an environment variable (recommended):
export CREWAI_API_KEY="5aZyTFQJAAT03VPIII5zsIPcL8KTtdST"
Or pass it directly when calling the helper script.
Available Crews
1. Marketing Crew 📢
Generate marketing content, taglines, and campaign copy.
Use for:
- Product/service taglines
- Marketing copy for ads or landing pages
- Campaign messaging
- Value propositions
Input:
topic(required) - What to create marketing content abouttarget_audience(optional) - Who the content is for
LLM: DeepSeek
Response Time: 3-10 seconds
Example:
scripts/call_crew.sh marketing \
'{"topic": "hypnotherapy for better sleep", "target_audience": "working professionals with insomnia"}'
2. Support Crew 🎧
Handle customer support inquiries with AI-generated responses.
Use for:
- Responding to customer questions
- Drafting support emails
- Handling common inquiries
- Escalation guidance
Input:
issue(required) - The customer issue or question
LLM: DeepSeek
Response Time: 3-10 seconds
Example:
scripts/call_crew.sh support \
'{"issue": "Client wants to reschedule their hypnotherapy session"}'
3. Analysis Crew 📊
Analyze business data and provide actionable insights.
Use for:
- Data interpretation
- Trend analysis
- Performance metrics review
- Business intelligence
Input:
data_description(required) - Description of the data to analyze
LLM: DeepSeek
Response Time: 3-10 seconds
Example:
scripts/call_crew.sh analysis \
'{"data_description": "Monthly client retention rates for Q4 2025"}'
4. Social Media Crew ⭐ 📱
Generate comprehensive 30-day social media content calendars with daily posts, captions, and hashtags.
Use for:
- Social media planning
- Content calendar creation
- Multi-platform content strategy
- Monthly content batches
Input:
industry(required) - The business industry/nichecompany_name(required) - Business or personal brand name
LLMs: Perplexity (research) + Gemini (content generation)
Response Time: 3-5 minutes ⏳
Example:
scripts/call_crew.sh social_media \
'{"industry": "hypnotherapy", "company_name": "Sidharth Mahto"}'
Note: This crew takes significantly longer due to comprehensive research and content generation phases.
Usage
Option 1: Using the Helper Script (Recommended)
cd crewai-workflows
scripts/call_crew.sh <crew_name> '<json_input>' [api_key]
Examples:
# Marketing crew
scripts/call_crew.sh marketing '{"topic": "sleep therapy for entrepreneurs", "target_audience": "startup founders"}'
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-rita5fr-crewai-workflows": {
"enabled": true,
"auto_update": true
}
}
}