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
CrewAIMaster transforms any task description into a fully functional, production-ready multi-agent system, making advanced AI orchestration accessible to everyone. CrewAIMaster **A Python package for building intelligent multi-agent systems using CrewAI** CrewAIMaster is an advanced framework that automatically generates, manages, and executes multi-agent crews based on natural language task descriptions. It provides a CLI interface and comprehensive backend system for creating intelligent AI agents with memory, tools, and safety guardrails. ๐ฆ Installation ๐ฌ Demo Click below Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
crewaimaster 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
CrewAIMaster transforms any task description into a fully functional, production-ready multi-agent system, making advanced AI orchestration accessible to everyone. CrewAIMaster **A Python package for building intelligent multi-agent systems using CrewAI** CrewAIMaster is an advanced framework that automatically generates, manages, and executes multi-agent crews based on natural language task descriptions. It provides a CLI interface and comprehensive backend system for creating intelligent AI agents with memory, tools, and safety guardrails. ๐ฆ Installation ๐ฌ Demo Click below
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Vishapp
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. 3 GitHub stars reported by the source. 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
Vishapp
Protocol compatibility
OpenClaw
Adoption signal
3 GitHub stars
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
# install from PyPI (when available) pip install crewaimaster # Or Install from source (recommended for development) git clone https://github.com/VishApp/crewaimaster cd crewaimaster python -m venv venv source venv/bin/activate pip install -e .
bash
# Install Python 3.10+ python --version # Configure your LLM provider (see supported providers) crewaimaster providers # Quick setup with OpenAI (most common) crewaimaster providers --configure openai --api-key "your-openai-key" --model "gpt-4"
bash
# Create an intelligent crew using AI analysis crewaimaster create "Write a comprehensive market analysis report for electric vehicles in 2024" --name electric_vehicles_market_analysis_crew
bash
# Run the crew (requires configured LLM provider) crewaimaster run electric_vehicles_market_analysis_crew # With additional context: crewaimaster run electric_vehicles_market_analysis_crew --input "Focus on Tesla, BMW, and Volkswagen specifically"
bash
# Navigate to the generated crew directory cd crews/electric_vehicles_market_analysis_crew # Run using standard environment variables export OPENAI_API_KEY="your-openai-key" ./run.sh "your input" # Or run using CrewAIMaster-specific environment variables export CREWAIMASTER_LLM_PROVIDER="openai" export CREWAIMASTER_LLM_MODEL="gpt-4" export CREWAIMASTER_LLM_API_KEY="your-openai-key" export CREWAIMASTER_LLM_BASE_URL="https://api.openai.com/v1"
mermaid
flowchart LR
A["`**1. Task Definition**
Natural Language Task`"] --> B["`**2. AI Analysis**
๐ค Task Complexity
๐ฏ Agent Requirements
๐ ๏ธ Tool Selection`"]
B --> C["`**3. Crew Creation**
๐ฅ Agent Design
๐ง Tool Assignment
๐ Task Orchestration`"]
C --> D["`**4. Execution**
๐ Multi-Agent Coordination
๐ Real-time Processing
๐ Progress Monitoring`"]
D --> E["`**5. Results & Analytics**
๐ Output Generation
๐ Performance Metrics
๐พ Persistent Storage`"]
E --> F["`**6. Optimization**
๐ง Crew Modification
โก Performance Tuning
๐ค Export/Backup`"]
F --> G["`**7. Reuse & Scale**
๐ Crew Reusability
๐ Knowledge Building
๐ Production Deployment`"]
classDef stepStyle fill:#f9f9f9,stroke:#333,stroke-width:2px,color:#333
class A,B,C,D,E,F,G stepStyleFull documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
CrewAIMaster transforms any task description into a fully functional, production-ready multi-agent system, making advanced AI orchestration accessible to everyone. CrewAIMaster **A Python package for building intelligent multi-agent systems using CrewAI** CrewAIMaster is an advanced framework that automatically generates, manages, and executes multi-agent crews based on natural language task descriptions. It provides a CLI interface and comprehensive backend system for creating intelligent AI agents with memory, tools, and safety guardrails. ๐ฆ Installation ๐ฌ Demo Click below
A Python package for building intelligent multi-agent systems using CrewAI
CrewAIMaster is an advanced framework that automatically generates, manages, and executes multi-agent crews based on natural language task descriptions. It provides a CLI interface and comprehensive backend system for creating intelligent AI agents with memory, tools, and safety guardrails.
# install from PyPI (when available)
pip install crewaimaster
# Or Install from source (recommended for development)
git clone https://github.com/VishApp/crewaimaster
cd crewaimaster
python -m venv venv
source venv/bin/activate
pip install -e .



# Install Python 3.10+
python --version
# Configure your LLM provider (see supported providers)
crewaimaster providers
# Quick setup with OpenAI (most common)
crewaimaster providers --configure openai --api-key "your-openai-key" --model "gpt-4"
# Create an intelligent crew using AI analysis
crewaimaster create "Write a comprehensive market analysis report for electric vehicles in 2024" --name electric_vehicles_market_analysis_crew
# Run the crew (requires configured LLM provider)
crewaimaster run electric_vehicles_market_analysis_crew
# With additional context:
crewaimaster run electric_vehicles_market_analysis_crew --input "Focus on Tesla, BMW, and Volkswagen specifically"
Generated crews can also be executed directly using environment variables:
# Navigate to the generated crew directory
cd crews/electric_vehicles_market_analysis_crew
# Run using standard environment variables
export OPENAI_API_KEY="your-openai-key"
./run.sh "your input"
# Or run using CrewAIMaster-specific environment variables
export CREWAIMASTER_LLM_PROVIDER="openai"
export CREWAIMASTER_LLM_MODEL="gpt-4"
export CREWAIMASTER_LLM_API_KEY="your-openai-key"
export CREWAIMASTER_LLM_BASE_URL="https://api.openai.com/v1"
flowchart LR
A["`**1. Task Definition**
Natural Language Task`"] --> B["`**2. AI Analysis**
๐ค Task Complexity
๐ฏ Agent Requirements
๐ ๏ธ Tool Selection`"]
B --> C["`**3. Crew Creation**
๐ฅ Agent Design
๐ง Tool Assignment
๐ Task Orchestration`"]
C --> D["`**4. Execution**
๐ Multi-Agent Coordination
๐ Real-time Processing
๐ Progress Monitoring`"]
D --> E["`**5. Results & Analytics**
๐ Output Generation
๐ Performance Metrics
๐พ Persistent Storage`"]
E --> F["`**6. Optimization**
๐ง Crew Modification
โก Performance Tuning
๐ค Export/Backup`"]
F --> G["`**7. Reuse & Scale**
๐ Crew Reusability
๐ Knowledge Building
๐ Production Deployment`"]
classDef stepStyle fill:#f9f9f9,stroke:#333,stroke-width:2px,color:#333
class A,B,C,D,E,F,G stepStyle
CrewAIMaster follows a clean, layered architecture designed for intelligent multi-agent system creation and execution:
flowchart TD
%% User Entry Point
User[๐ค User Input<br/>Natural Language Task] --> CLI[๐ฅ๏ธ CLI Interface<br/>crewaimaster create/run/providers]
%% Configuration Layer
CLI --> Config[โ๏ธ Configuration<br/>config.yaml<br/>LLM Providers]
%% AI Orchestration Core
CLI --> MasterAgent[๐ง Master Agent<br/>Intelligent Orchestrator]
%% AI Analysis Pipeline
MasterAgent --> TaskAnalyzer[๐ Task Analyzer<br/>โข Complexity Assessment<br/>โข Requirements Extraction<br/>โข Agent Planning]
TaskAnalyzer --> AgentDesigner[๐ฅ Agent Designer<br/>โข Role Definition<br/>โข Tool Selection<br/>โข Capability Mapping]
AgentDesigner --> CrewOrchestrator[๐ญ Crew Orchestrator<br/>โข Team Assembly<br/>โข Process Selection<br/>โข Workflow Design]
%% Core Generation Engine
CrewOrchestrator --> CrewDesigner[๐ง Crew Designer<br/>File-Based Generator]
Config --> CrewDesigner
CrewDesigner --> FileGen[๐ File Generator<br/>โข Project Structure<br/>โข Python Modules<br/>โข YAML Configs]
%% Output Generation
FileGen --> GeneratedFiles{๐ Generated Crew Project}
%% Generated Project Structure
GeneratedFiles --> AgentYAML[agents.yaml<br/>Agent Definitions]
GeneratedFiles --> TaskYAML[tasks.yaml<br/>Task Specifications]
GeneratedFiles --> CrewPY[crew.py<br/>CrewAI Implementation]
GeneratedFiles --> MainPY[main.py<br/>Execution Entry Point]
%% Execution Runtime
MainPY --> CrewAI[๐ CrewAI Runtime<br/>Multi-Agent Execution]
CrewAI --> AgentA[๐ค Agent A<br/>Specialized Role]
CrewAI --> AgentB[๐ค Agent B<br/>Specialized Role]
CrewAI --> AgentC[๐ค Agent C<br/>Specialized Role]
%% Tool Integration
AgentA --> Tools[๐ ๏ธ Tool Registry<br/>โข Web Search<br/>โข File Operations<br/>โข Code Execution<br/>โข Custom Tools]
AgentB --> Tools
AgentC --> Tools
%% LLM Integration
Config --> LLMProvider[๐ LLM Provider<br/>โข OpenAI<br/>โข Anthropic<br/>โข Google<br/>โข Custom APIs]
LLMProvider --> AgentA
LLMProvider --> AgentB
LLMProvider --> AgentC
LLMProvider --> MasterAgent
%% Memory & Knowledge
CrewAI --> Memory[๐ง Memory System<br/>โข Agent Memory<br/>โข Shared Context<br/>โข Knowledge Base]
%% Safety & Guardrails
Tools --> Guardrails[๐ก๏ธ Guardrails<br/>โข Safety Checks<br/>โข Content Filtering<br/>โข Validation]
%% Final Output
CrewAI --> Results[๐ Results<br/>Task Completion<br/>Generated Content]
%% Styling
classDef userLayer fill:#e8f5e8,stroke:#1b5e20,stroke-width:3px,color:#000
classDef cliLayer fill:#e1f5fe,stroke:#01579b,stroke-width:2px,color:#000
classDef aiLayer fill:#f3e5f5,stroke:#4a148c,stroke-width:2px,color:#000
classDef coreLayer fill:#fff8e1,stroke:#ff8f00,stroke-width:2px,color:#000
classDef fileLayer fill:#fce4ec,stroke:#880e4f,stroke-width:2px,color:#000
classDef runtimeLayer fill:#fff3e0,stroke:#e65100,stroke-width:2px,color:#000
classDef toolLayer fill:#f1f8e9,stroke:#33691e,stroke-width:2px,color:#000
class User userLayer
class CLI,Config cliLayer
class MasterAgent,TaskAnalyzer,AgentDesigner,CrewOrchestrator aiLayer
class CrewDesigner,FileGen,LLMProvider coreLayer
class GeneratedFiles,AgentYAML,TaskYAML,CrewPY,MainPY fileLayer
class CrewAI,AgentA,AgentB,AgentC,Memory,Results runtimeLayer
class Tools,Guardrails toolLayer
CrewAIMaster's architecture is designed for scalability, modularity, and intelligent automation:
CrewAIMaster uses a .crewaimaster/config.yaml configuration file for all settings. Environment variables are no longer supported - all configuration must be done via CLI commands or direct config file editing.
# See all supported providers and configuration examples
crewaimaster providers
Configure any supported provider using the CLI:
OpenAI:
crewaimaster providers --configure openai --api-key "your-openai-key" --model "gpt-4"
# Automatically sets base_url to https://api.openai.com/v1
Anthropic:
crewaimaster providers --configure anthropic --api-key "your-anthropic-key" --model "claude-3-sonnet-20240229"
# Automatically sets base_url to https://api.anthropic.com/v1
Google:
crewaimaster providers --configure google --api-key "your-google-key" --model "gemini-pro"
# Automatically sets base_url to https://generativelanguage.googleapis.com/v1beta
DeepSeek:
crewaimaster providers --configure deepseek --api-key "your-deepseek-key" --model "deepseek-chat"
# Automatically sets base_url to https://api.deepseek.com/v1
Custom Provider:
crewaimaster providers --configure custom --api-key "your-key" --base-url "https://api.example.com/v1" --model "gpt-4o-mini"
# Requires explicit base_url for custom endpoints
We welcome contributions! Here's how to get started:
git checkout -b feature/amazing-featurepytest tests/git commit -m 'Add amazing feature'git push origin feature/amazing-feature# Clone and setup development environment
git clone https://github.com/VishApp/crewaimaster
cd crewaimaster
# Install development dependencies
pip install -e .
CrewAIMaster is released under the MIT License. See LICENSE for details.
Built with โค๏ธ for the AI community
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-vishapp-crewaimaster/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/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 5d 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-vishapp-crewaimaster/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/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-16T23:35:26.011Z"
}
},
"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": "Vishapp",
"href": "https://github.com/VishApp/crewaimaster",
"sourceUrl": "https://github.com/VishApp/crewaimaster",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T05:07:15.910Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T05:07:15.910Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "3 GitHub stars",
"href": "https://github.com/VishApp/crewaimaster",
"sourceUrl": "https://github.com/VishApp/crewaimaster",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T05:07:15.910Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-vishapp-crewaimaster/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 crewaimaster and adjacent AI workflows.