Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Repo where I build some crews to learn CrewAI Learning CrewAI Repository Welcome to the comprehensive Learning CrewAI Repository! This collection showcases three progressively advanced CrewAI projects that demonstrate the full spectrum of AI agent capabilities, from basic research workflows to production-ready business intelligence systems. ๐ Repository Overview This repository contains **3 specialized CrewAI crews** that demonstrate different aspects of multi- Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
Learning-CrewAI is best for crewai, multi-agent workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB REPOS, runtime-metrics, public facts pack
Repo where I build some crews to learn CrewAI Learning CrewAI Repository Welcome to the comprehensive Learning CrewAI Repository! This collection showcases three progressively advanced CrewAI projects that demonstrate the full spectrum of AI agent capabilities, from basic research workflows to production-ready business intelligence systems. ๐ Repository Overview This repository contains **3 specialized CrewAI crews** that demonstrate different aspects of multi-
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Noahjenkins
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Noahjenkins
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
python
bash
pip install uv
bash
git clone <repository-url> cd Learning-CrewAI
bash
# For beginners cd 01_learning_crewai_project # For advanced users cd 02_ai_news # For production use cd 03_dfw_business_leads
bash
uv sync
bash
# Basic configuration for local LLM MODEL=ollama/mistral:latest OPENAI_API_BASE=http://localhost:11434 OPENAI_API_KEY=ollama OPENAI_MODEL_NAME=ollama/mistral:latest # For crews requiring Brave Search BRAVE_API_KEY=your_brave_api_key_here
bash
crewai run
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
Repo where I build some crews to learn CrewAI Learning CrewAI Repository Welcome to the comprehensive Learning CrewAI Repository! This collection showcases three progressively advanced CrewAI projects that demonstrate the full spectrum of AI agent capabilities, from basic research workflows to production-ready business intelligence systems. ๐ Repository Overview This repository contains **3 specialized CrewAI crews** that demonstrate different aspects of multi-
Welcome to the comprehensive Learning CrewAI Repository! This collection showcases three progressively advanced CrewAI projects that demonstrate the full spectrum of AI agent capabilities, from basic research workflows to production-ready business intelligence systems.
This repository contains 3 specialized CrewAI crews that demonstrate different aspects of multi-agent AI systems:
| Crew | Complexity | Agents | Tools | Use Case | |------|------------|--------|-------|----------| | 01_learning_crewai_project | Basic | 2 | 0 | Research & Reporting | | 02_ai_news | Advanced | 3 | 2 | News Intelligence | | 03_dfw_business_leads | Production | 5 | 6 | Business Lead Generation |
๐ Directory: 01_learning_crewai_project/
๐ฏ Purpose: Introduction to CrewAI fundamentals
๐ฅ Agents: 2 (Researcher, Analyst)
๐ง Tools: None (base LLM capabilities)
๐ Output: Research reports on any topic
Perfect for:
๐ Directory: 02_ai_news/
๐ฏ Purpose: Advanced AI and developer tools news intelligence
๐ฅ Agents: 3 (Research Specialist, Web Search Specialist, Reporter)
๐ง Tools: 2 (ScrapeWebsiteTool, BraveSearchTool)
๐ Output: Comprehensive AI news reports with source citations
Perfect for:
๐ Directory: 03_dfw_business_leads/
๐ฏ Purpose: Production-ready business intelligence and lead generation
๐ฅ Agents: 5 (Scout, Analyzer, Qualifier, Researcher, Writer)
๐ง Tools: 6 (Business search, web analysis, lead qualification)
๐ Output: Actionable business leads reports with revenue projections
Perfect for:
Install UV (if not already installed):
pip install uv
Clone and setup:
git clone <repository-url>
cd Learning-CrewAI
Choose your crew and navigate to its directory:
# For beginners
cd 01_learning_crewai_project
# For advanced users
cd 02_ai_news
# For production use
cd 03_dfw_business_leads
Install dependencies:
uv sync
Configure environment (create .env file):
# Basic configuration for local LLM
MODEL=ollama/mistral:latest
OPENAI_API_BASE=http://localhost:11434
OPENAI_API_KEY=ollama
OPENAI_MODEL_NAME=ollama/mistral:latest
# For crews requiring Brave Search
BRAVE_API_KEY=your_brave_api_key_here
Run the crew:
crewai run
Learning-CrewAI/
โโโ README.md # This file
โโโ 01_learning_crewai_project/ # Basic crew
โ โโโ README.md # Detailed documentation
โ โโโ src/learning_crewai_project/
โ โ โโโ config/
โ โ โ โโโ agents.yaml # Agent definitions
โ โ โ โโโ tasks.yaml # Task definitions
โ โ โโโ crew.py # Crew orchestration
โ โ โโโ main.py # Entry point
โ โ โโโ tools/ # Custom tools (basic)
โ โโโ report.md # Generated output
โโโ 02_ai_news/ # Advanced crew
โ โโโ README.md # Detailed documentation
โ โโโ src/ai_news/
โ โ โโโ config/
โ โ โ โโโ agents.yaml # Agent definitions
โ โ โ โโโ tasks.yaml # Task definitions
โ โ โโโ crew.py # Crew orchestration
โ โ โโโ main.py # Entry point
โ โ โโโ tools/ # Custom tools
โ โโโ Reports/ # Generated reports
โ โโโ AI_News_Report_*.md
โโโ 03_dfw_business_leads/ # Production crew
โโโ README.md # Detailed documentation
โโโ src/dfw_business_leads/
โ โโโ config/
โ โ โโโ agents.yaml # Agent definitions
โ โ โโโ tasks.yaml # Task definitions
โ โโโ crew.py # Crew orchestration
โ โโโ main.py # Entry point
โ โโโ tools/ # Advanced business tools
โ โโโ business_search_tools.py
โ โโโ brave_search_tool.py
โโโ outputs/ # Business reports
โ โโโ north_fort_worth_leads_report.md
โโโ test_crew.py # Comprehensive testing
Install Ollama:
# macOS
brew install ollama
# Linux
curl -fsSL https://ollama.ai/install.sh | sh
Start Ollama service:
ollama serve
Pull recommended models:
# Lightweight, fast model
ollama pull mistral:latest
# More powerful model
ollama pull llama3.2:latest
# Coding-focused model
ollama pull deepseek-coder-v2:latest
Configure crews to use local models (already configured in examples)
Each crew supports different configuration options:
# LLM Configuration
MODEL=ollama/mistral:latest # Model identifier
OPENAI_API_BASE=http://localhost:11434 # Ollama endpoint
OPENAI_API_KEY=ollama # Dummy key for Ollama
OPENAI_MODEL_NAME=ollama/mistral:latest # Full model name
# External APIs (when needed)
BRAVE_API_KEY=your_brave_api_key_here # For web search
SERPER_API_KEY=your_serper_key_here # Alternative search
OPENAI_API_KEY=your_openai_key_here # For cloud LLMs
# Performance Tuning
CREW_VERBOSE=true # Detailed logging
CREW_MEMORY=true # Enable agent memory
CREW_PLANNING=true # Enable planning feature
| Use Case | Recommended Model | Size | Speed | Quality |
|----------|------------------|------|-------|---------|
| Development & Testing | mistral:latest | 4.1GB | Fast | Good |
| Production Quality | llama3.2:latest | 2.0GB | Medium | Excellent |
| Code Generation | deepseek-coder-v2:latest | 8.9GB | Medium | Excellent |
| Reasoning Tasks | phi4-reasoning:latest | 11GB | Slow | Excellent |
Start with: 01_learning_crewai_project
Learn concepts:
Move to: 02_ai_news
Learn concepts:
Master: 03_dfw_business_leads
Learn concepts:
# Basic research (01_learning_crewai_project)
cd 01_learning_crewai_project
crewai run # Researches AI LLMs
# Advanced news intelligence (02_ai_news)
cd ../02_ai_news
crewai run # Generates AI news report
# Lead generation (03_dfw_business_leads)
cd ../03_dfw_business_leads
python test_crew.py # Test functionality
crewai run # Generate business leads
# Create new crew based on examples
crewai create crew my-custom-crew
# Copy patterns from existing crews
# Adapt agents, tasks, and tools
Each crew includes testing capabilities:
# Basic functionality tests
cd 01_learning_crewai_project && crewai run
# Advanced tool integration tests
cd 02_ai_news && crewai run
# Comprehensive business logic tests
cd 03_dfw_business_leads && python test_crew.py
We welcome contributions! Here's how to get involved:
git checkout -b feature/your-featuregit commit -m 'Add your feature'git push origin feature/your-featureLLM Connection Problems:
# Check Ollama status
ollama ps
# Restart Ollama service
ollama serve
# Verify model availability
ollama list
Tool Integration Errors:
.env filesPerformance Issues:
Ready to explore the future of AI agent collaboration? Pick a crew and start building! ๐๐ค
Happy building with CrewAI! ๐
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_REPOS",
"generatedAt": "2026-04-17T03:30:10.889Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "crewai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "multi-agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:crewai|supported|profile capability:multi-agent|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Noahjenkins",
"href": "https://github.com/NoahJenkins/Learning-CrewAI",
"sourceUrl": "https://github.com/NoahJenkins/Learning-CrewAI",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T05:07:13.881Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T05:07:13.881Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-noahjenkins-learning-crewai/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to Learning-CrewAI and adjacent AI workflows.