# Send Crewai Workflows to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crewai-workflows",
    "name": "Crewai Workflows",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Rita5fr/crewai-workflows",
    "canonicalUrl": "https://clawhub.ai/Rita5fr/crewai-workflows",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/crewai-workflows",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crewai-workflows",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/call_crew.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "crewai-workflows",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:36:14.382Z",
      "expiresAt": "2026-05-06T15:36:14.382Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crewai-workflows",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crewai-workflows",
        "contentDisposition": "attachment; filename=\"crewai-workflows-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "crewai-workflows"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/crewai-workflows"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crewai-workflows",
    "downloadUrl": "https://openagent3.xyz/downloads/crewai-workflows",
    "agentUrl": "https://openagent3.xyz/skills/crewai-workflows/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crewai-workflows/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crewai-workflows/agent.md"
  }
}
```
## Documentation

### CrewAI 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.

### 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 about
target_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/niche
company_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.

### 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"}'

# Support crew
scripts/call_crew.sh support '{"issue": "Client asking about session pricing"}'

# Analysis crew
scripts/call_crew.sh analysis '{"data_description": "Weekly session booking trends"}'

# Social media crew (takes 3-5 minutes)
scripts/call_crew.sh social_media '{"industry": "wellness coaching", "company_name": "Calm Mind Studio"}'

# With explicit API key
scripts/call_crew.sh marketing '{"topic": "mindfulness apps"}' "YOUR_API_KEY"

### Option 2: Direct cURL

curl -X POST "https://crew.iclautomation.me/crews/<crew_name>/run" \\
  -H "Content-Type: application/json" \\
  -H "X-API-Key: $CREWAI_API_KEY" \\
  -d '{"input": {...}}'

### Response Format

All crews return structured JSON:

{
  "ok": true,
  "crew": "marketing",
  "trace_id": "abc123-def456",
  "result": {
    "workflow": "marketing",
    "output": "... the generated content ...",
    "input_summary": {...}
  },
  "error": null
}

Extract the output: The actual generated content is in result.output.

### Best Practices

Set timeouts appropriately:

Marketing/Support/Analysis: 30-60 seconds
Social Media: 5-10 minutes



Check API key: Ensure CREWAI_API_KEY environment variable is set or pass explicitly


Handle errors: Check the error field in responses


Social Media crew: Expect 3-5 minutes response time; don't interrupt


Batch requests: For multiple similar tasks, consider running them sequentially

### Health Check

Verify the CrewAI server is running:

curl https://crew.iclautomation.me/health
# Expected: {"ok": true}

### Future Expansion

When new crews are added to the server:

Update the "Available Crews" section
Add example usage to the helper script
Document input parameters and response times

Server: https://crew.iclautomation.me
Authentication: API key via X-API-Key header
Last Updated: 2026-01-17
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Rita5fr
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T15:36:14.382Z
- Expires at: 2026-05-06T15:36:14.382Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/crewai-workflows)
- [Send to Agent page](https://openagent3.xyz/skills/crewai-workflows/agent)
- [JSON manifest](https://openagent3.xyz/skills/crewai-workflows/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/crewai-workflows/agent.md)
- [Download page](https://openagent3.xyz/downloads/crewai-workflows)