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
Multi-agent AI system for grocery retail combining 5 frameworks — Google ADK (orchestration), LangGraph (customer support with human-in-the-loop), CrewAI (pricing optimization), LlamaIndex (RAG knowledge base), and NeMo Guardrails (safety) deployed on GCP Cloud Run with CI/CD, distributed tracing, and real-time monitoring. <div align="center"> 🧠 ASTRA **Autonomous Store Trading & Resource Agent** *A production-grade multi-agent AI system for grocery retail — combining 5 specialized frameworks on Google Cloud Platform* <br/> <br/> <br/> $1 · $1 · $1 · $1 · $1 </div> --- 📋 Overview Large grocery retailers juggle **thousands of daily customer queries**, real-time pricing decisions across **50,000+ SKUs**, and complex supply chain logist Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
astra 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
Multi-agent AI system for grocery retail combining 5 frameworks — Google ADK (orchestration), LangGraph (customer support with human-in-the-loop), CrewAI (pricing optimization), LlamaIndex (RAG knowledge base), and NeMo Guardrails (safety) deployed on GCP Cloud Run with CI/CD, distributed tracing, and real-time monitoring. <div align="center"> 🧠 ASTRA **Autonomous Store Trading & Resource Agent** *A production-grade multi-agent AI system for grocery retail — combining 5 specialized frameworks on Google Cloud Platform* <br/> <br/> <br/> $1 · $1 · $1 · $1 · $1 </div> --- 📋 Overview Large grocery retailers juggle **thousands of daily customer queries**, real-time pricing decisions across **50,000+ SKUs**, and complex supply chain logist
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Sundar Paul
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 4/15/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
Sundar Paul
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
text
┌──────────────────────────────────────────────────────────────────────┐ │ NeMo Guardrails (Safety Layer) │ │ ┌────────────────────────────────────────────────────────────────┐ │ │ │ Google ADK Orchestrator │ │ │ │ │ │ │ │ User Message → Intent Router → Session Manager │ │ │ │ │ (3-tier: keyword → pattern → LLM) │ │ │ │ ▼ │ │ │ │ ┌──────────────────┬──────────────────┬───────────────────┐ │ │ │ │ │ LangGraph │ CrewAI │ LlamaIndex │ │ │ │ │ │ Customer │ Pricing │ Knowledge │ │ │ │ │ │ Support │ Crew │ Base │ │ │ │ │ │ │ │ │ │ │ │ │ │ 6 Nodes: │ 3 Agents: │ 4 Indexes: │ │ │ │ │ │ · intake │ · Analyst │ · products │ │ │ │ │ │ · classify │ · Forecaster │ · policies │ │ │ │ │ │ · retrieve │ · Strategist │ · pricing_rules │ │ │ │ │ │ · resolve │ │ · faqs │ │ │ │ │ │ · escalate │ 6 Tools │ │ │ │ │ │ │ · feedback │ │ ChromaDB │ │ │ │ │ └──────────────────┴──────────────────┴───────────────────┘ │ │ │ │ │ │ │ │ MCP Servers: [Inventory] [Competitor] [Logistics] │ │ │ └────────────────────────────────────────────────────────────────┘ │ │ ↕ ↕ ↕ │ │ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │ │ │ Cloud Run │ │ BigQuery │ │ Cloud Trace │ │ │ │ (API) │ │ (
text
Customer: "My order ORD-2025-1042 arrived with spoiled milk!"
│
▼
[NeMo] → Input validated ✓
│
[ADK] → Intent: "customer_support" (keyword match, confidence: 0.92)
│
[LangGraph]
├─ INTAKE → Extract: order_id, issue=quality_complaint, sentiment=very_negative
├─ CLASSIFY → Category: quality_complaint, needs_retrieval=true
├─ RETRIEVE → LlamaIndex: "Spoiled perishables qualify for full refund..."
├─ RESOLVE → Confidence: 0.88 → process_refund(£34.50) + issue_voucher(£5)
└─ FEEDBACK → Predicted CSAT: 4.0 → Trajectory logged to BigQuerytext
Employee: "Optimize dairy pricing — clear excess yoghurt stock"
│
[CrewAI Sequential]
├─ MARKET ANALYST → "ASTRA is 4.2% above market on yoghurt, Tesco promoting..."
├─ DEMAND FORECASTER → "Yoghurt overstocked at 4.2 weeks cover, waste risk flagged"
└─ PRICING STRATEGIST→ Structured pricing report with margin-safe recommendationsbash
# On any OS — just open the file: open architecture/index.html # macOS start architecture/index.html # Windows xdg-open architecture/index.html # Linux
jsx
> import ASTRAArchitecture from './ASTRA_Architecture'; >
text
astra-multi-agent-ai/ ├── src/ │ ├── api/ # FastAPI REST layer │ │ └── app.py # Endpoints: /chat, /health, /escalation, /sessions │ ├── orchestrator/ # Google ADK orchestrator │ │ ├── agent.py # Main entry point — intent routing & delegation │ │ ├── router.py # 3-tier intent classification │ │ └── session.py # Multi-turn session management │ ├── customer_support/ # LangGraph state machine │ │ ├── graph.py # Graph definition + compilation │ │ ├── state.py # TypedDict state with reducers │ │ ├── prompts.py # Centralized LLM prompts │ │ ├── tools.py # Order/customer/action tools │ │ └── nodes/ # 6 graph nodes │ │ ├── intake.py # Entity extraction, order lookup │ │ ├── classify.py # Issue categorization │ │ ├── retrieve.py # LlamaIndex context retrieval │ │ ├── resolve.py # Response generation + actions │ │ ├── escalate.py # HITL checkpoint │ │ └── feedback.py # CSAT prediction + logging │ ├── pricing/ # CrewAI pricing crew │ │ ├── crew.py # Crew orchestration │ │ ├── agents.py # 3 specialist agents │ │ ├── tasks.py # Task definitions with context chains │ │ └── tools.py # 6 pricing tools │ ├── knowledge/ # LlamaIndex RAG │ │ ├── indexer.py # 4 specialized indexes │ │ ├── query_engine.py # Intelligent query routing │ │ ├── sample_data.py # Test data generator │ │ └── data/ # Products, policies, FAQs, rules │ ├── guardrails/ # NeMo Guardrails │ │ ├── config.yml # Model + instruction config │ │ ├── rails/ # Colang dialog flo
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
Multi-agent AI system for grocery retail combining 5 frameworks — Google ADK (orchestration), LangGraph (customer support with human-in-the-loop), CrewAI (pricing optimization), LlamaIndex (RAG knowledge base), and NeMo Guardrails (safety) deployed on GCP Cloud Run with CI/CD, distributed tracing, and real-time monitoring. <div align="center"> 🧠 ASTRA **Autonomous Store Trading & Resource Agent** *A production-grade multi-agent AI system for grocery retail — combining 5 specialized frameworks on Google Cloud Platform* <br/> <br/> <br/> $1 · $1 · $1 · $1 · $1 </div> --- 📋 Overview Large grocery retailers juggle **thousands of daily customer queries**, real-time pricing decisions across **50,000+ SKUs**, and complex supply chain logist
A production-grade multi-agent AI system for grocery retail — combining 5 specialized frameworks on Google Cloud Platform
<br/>
Architecture · Features · Quick Start · Tech Stack · Interactive Diagram
</div>Large grocery retailers juggle thousands of daily customer queries, real-time pricing decisions across 50,000+ SKUs, and complex supply chain logistics — all requiring instant, accurate, context-aware responses.
ASTRA solves this by deploying the right AI framework for each job:
| Framework | Role | Why This Framework | Model |
|-----------|------|--------------------|-------|
| 🎯 Google ADK | Orchestrator — routes messages, manages sessions | Native GCP integration, Vertex AI deployment path | Gemini 2.0 Flash |
| 🔄 LangGraph | Customer support — 6-node state machine with HITL | Stateful workflows, conditional routing, interrupt/resume | Gemini 2.5 Flash |
| 👥 CrewAI | Pricing analysis — 3 specialist agents collaborate | Multi-agent delegation, role-based reasoning | Gemini 2.5 Pro |
| 📚 LlamaIndex | Knowledge retrieval — 4 specialized RAG indexes | Production RAG, structured metadata filtering | text-embedding-005 |
| 🛡️ NeMo Guardrails | Safety layer — input/output validation | Programmable safety rules via Colang, injection defense | Gemini 2.0 Flash |
Why 5 frameworks instead of 1? Each framework excels at a specific pattern. LangGraph handles stateful workflows better than CrewAI. CrewAI handles multi-agent collaboration better than LangGraph. LlamaIndex handles RAG better than both. ADK provides the GCP deployment path. NeMo provides programmable safety. Using the right tool for each job produces better results than forcing one framework to do everything.
┌──────────────────────────────────────────────────────────────────────┐
│ NeMo Guardrails (Safety Layer) │
│ ┌────────────────────────────────────────────────────────────────┐ │
│ │ Google ADK Orchestrator │ │
│ │ │ │
│ │ User Message → Intent Router → Session Manager │ │
│ │ │ (3-tier: keyword → pattern → LLM) │ │
│ │ ▼ │ │
│ │ ┌──────────────────┬──────────────────┬───────────────────┐ │ │
│ │ │ LangGraph │ CrewAI │ LlamaIndex │ │ │
│ │ │ Customer │ Pricing │ Knowledge │ │ │
│ │ │ Support │ Crew │ Base │ │ │
│ │ │ │ │ │ │ │
│ │ │ 6 Nodes: │ 3 Agents: │ 4 Indexes: │ │ │
│ │ │ · intake │ · Analyst │ · products │ │ │
│ │ │ · classify │ · Forecaster │ · policies │ │ │
│ │ │ · retrieve │ · Strategist │ · pricing_rules │ │ │
│ │ │ · resolve │ │ · faqs │ │ │
│ │ │ · escalate │ 6 Tools │ │ │ │
│ │ │ · feedback │ │ ChromaDB │ │ │
│ │ └──────────────────┴──────────────────┴───────────────────┘ │ │
│ │ │ │
│ │ MCP Servers: [Inventory] [Competitor] [Logistics] │ │
│ └────────────────────────────────────────────────────────────────┘ │
│ ↕ ↕ ↕ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Cloud Run │ │ BigQuery │ │ Cloud Trace │ │
│ │ (API) │ │ (Analytics) │ │ (Tracing) │ │
│ └──────────────┘ └──────────────┘ └──────────────┘ │
└──────────────────────────────────────────────────────────────────────┘
The routing layer uses a cost-optimized cascade — saving ~80% of LLM routing costs:
| Tier | Method | Coverage | Latency | Cost | |------|--------|----------|---------|------| | 1 | Keyword matching | ~50% of messages | <1ms | Free | | 2 | Entity/pattern boosting | ~30% of messages | ~5ms | Free | | 3 | LLM classification (Gemini 2.0 Flash) | ~20% of messages | ~200ms | ~$0.0001/call |
intake → classify → retrieve → resolve → escalate → feedbackinterrupt_after — graph pauses for human review and resumes exactly where it stoppedCustomer: "My order ORD-2025-1042 arrived with spoiled milk!"
│
▼
[NeMo] → Input validated ✓
│
[ADK] → Intent: "customer_support" (keyword match, confidence: 0.92)
│
[LangGraph]
├─ INTAKE → Extract: order_id, issue=quality_complaint, sentiment=very_negative
├─ CLASSIFY → Category: quality_complaint, needs_retrieval=true
├─ RETRIEVE → LlamaIndex: "Spoiled perishables qualify for full refund..."
├─ RESOLVE → Confidence: 0.88 → process_refund(£34.50) + issue_voucher(£5)
└─ FEEDBACK → Predicted CSAT: 4.0 → Trajectory logged to BigQuery
Employee: "Optimize dairy pricing — clear excess yoghurt stock"
│
[CrewAI Sequential]
├─ MARKET ANALYST → "ASTRA is 4.2% above market on yoghurt, Tesco promoting..."
├─ DEMAND FORECASTER → "Yoghurt overstocked at 4.2 weeks cover, waste risk flagged"
└─ PRICING STRATEGIST→ Structured pricing report with margin-safe recommendations
| Index | Contents | Query Example |
|-------|----------|---------------|
| products | 50 products with prices, categories, stock | "Is organic milk in stock?" |
| policies | Return, refund, delivery, loyalty policies | "Can I return frozen items?" |
| pricing_rules | Margin guidelines, approval thresholds | "Minimum margin for dairy?" |
| faqs | 30+ frequently asked questions | "How does loyalty work?" |
category=dairy)text-embedding-005 (768 dimensions)This repository includes an interactive React component (ASTRA_Architecture.jsx) that visualizes the complete system architecture with four navigable tabs:
| Tab | Description | |-----|-------------| | Architecture | Nested layer diagram — click any framework to explore its responsibilities | | Data Flows | Step-by-step Customer Support and Pricing flows with agent attribution | | Timeline | 4-week MVP implementation plan breakdown | | Tools & Models | Complete model assignments and tool inventory |
Open architecture/index.html in any browser — no build step needed. It renders the JSX component using React CDN.
# On any OS — just open the file:
open architecture/index.html # macOS
start architecture/index.html # Windows
xdg-open architecture/index.html # Linux
💡 For Developers: The JSX component can also be imported directly into any React project:
import ASTRAArchitecture from './ASTRA_Architecture';
astra-multi-agent-ai/
├── src/
│ ├── api/ # FastAPI REST layer
│ │ └── app.py # Endpoints: /chat, /health, /escalation, /sessions
│ ├── orchestrator/ # Google ADK orchestrator
│ │ ├── agent.py # Main entry point — intent routing & delegation
│ │ ├── router.py # 3-tier intent classification
│ │ └── session.py # Multi-turn session management
│ ├── customer_support/ # LangGraph state machine
│ │ ├── graph.py # Graph definition + compilation
│ │ ├── state.py # TypedDict state with reducers
│ │ ├── prompts.py # Centralized LLM prompts
│ │ ├── tools.py # Order/customer/action tools
│ │ └── nodes/ # 6 graph nodes
│ │ ├── intake.py # Entity extraction, order lookup
│ │ ├── classify.py # Issue categorization
│ │ ├── retrieve.py # LlamaIndex context retrieval
│ │ ├── resolve.py # Response generation + actions
│ │ ├── escalate.py # HITL checkpoint
│ │ └── feedback.py # CSAT prediction + logging
│ ├── pricing/ # CrewAI pricing crew
│ │ ├── crew.py # Crew orchestration
│ │ ├── agents.py # 3 specialist agents
│ │ ├── tasks.py # Task definitions with context chains
│ │ └── tools.py # 6 pricing tools
│ ├── knowledge/ # LlamaIndex RAG
│ │ ├── indexer.py # 4 specialized indexes
│ │ ├── query_engine.py # Intelligent query routing
│ │ ├── sample_data.py # Test data generator
│ │ └── data/ # Products, policies, FAQs, rules
│ ├── guardrails/ # NeMo Guardrails
│ │ ├── config.yml # Model + instruction config
│ │ ├── rails/ # Colang dialog flows
│ │ └── actions.py # Custom validation actions
│ ├── tools/
│ │ └── mcp_servers/ # 3 MCP data servers
│ └── common/ # Shared config, models, logging, tracing
│ ├── config.py # Pydantic settings
│ ├── models.py # Shared data models
│ ├── logging.py # Structured logging
│ └── tracing.py # OpenTelemetry setup
├── tests/ # Unit + integration tests
│ ├── test_router.py # Intent router tests
│ ├── test_tools_and_session.py # Tool + session tests
│ └── test_monitoring.py # Metrics + alert tests
├── notebooks/ # Weekly development notebooks
│ ├── 01_week1_knowledge_layer.ipynb
│ ├── 02_week2_agent_workflows.ipynb
│ ├── 03_week3_integration.ipynb
│ └── 04_week4_deployment_monitoring.ipynb
├── deploy/
│ ├── Dockerfile # Multi-stage production build
│ ├── cloudbuild.yaml # GCP CI/CD pipeline
│ ├── deploy_cloudrun.sh # One-command Cloud Run deploy
│ ├── cleanup.sh # Resource cleanup
│ └── terraform/
│ └── main.tf # Infrastructure as Code (all GCP resources)
├── monitoring/
│ ├── metrics.py # Interaction metrics collector
│ ├── tracing.py # Distributed tracing
│ ├── alerts/ # Alert rules and thresholds
│ └── dashboards/ # BigQuery queries for Looker Studio
├── architecture/
│ └── index.html # Interactive architecture viewer (open in browser)
├── ASTRA_Architecture.jsx # React component — interactive system diagram
├── ASTRA_PROJECT_REPORT.md # Detailed project lifecycle report
├── PROJECT_DESCRIPTION.md # Project description & skills breakdown
├── pyproject.toml # Python project config
├── requirements.txt # Production dependencies
├── setup.bat # Windows dependency installer
├── .env.example # Environment variable template
└── .gitignore
| Layer | Technology | Purpose |
|-------|-----------|---------|
| Orchestration | Google ADK | Intent routing, session management, Vertex AI deployment |
| Customer Workflow | LangGraph | 6-node stateful graph with HITL interrupts |
| Pricing Analysis | CrewAI | 3-agent sequential collaboration with context chaining |
| Knowledge / RAG | LlamaIndex + ChromaDB | 4-index retrieval with metadata filtering |
| Safety | NeMo Guardrails (Colang) | Input/output validation, injection defense |
| Models | Gemini 2.0 Flash, 2.5 Flash, 2.5 Pro | Tiered by cost and capability |
| Embeddings | text-embedding-005 | 768-dimensional vectors for RAG |
| Real-time Data | MCP Protocol | 3 servers: inventory, competitor, logistics |
| API | FastAPI + Uvicorn | REST endpoints with OpenAPI documentation |
| Data Warehouse | BigQuery | Trajectories, interaction metrics, analytics |
| Storage | Cloud Storage | Knowledge documents, model artifacts |
| Deployment | Cloud Run (Docker) | Containerized, auto-scaling, serverless |
| CI/CD | Cloud Build | Automated test → build → deploy pipeline |
| Infrastructure | Terraform | Infrastructure as Code for all GCP resources |
| Tracing | OpenTelemetry → Cloud Trace | Distributed tracing across all frameworks |
| Monitoring | Cloud Monitoring | Latency, CSAT, error rate, escalation rate alerts |
| Logging | Cloud Logging + Rich | Structured logs with agent prefixes |
# Clone the repository
git clone https://github.com/vsundar95/astra-multi-agent-ai.git
cd astra-multi-agent-ai
# Install dependencies (Windows)
setup.bat
# Configure environment
cp .env.example .env
# Edit .env — only 2 values needed for local dev:
# GOOGLE_API_KEY=your-ai-studio-key
# GCP_PROJECT_ID=your-project-id
# Generate sample data for RAG indexes
python -m src.knowledge.sample_data
# Run the test suite
pytest tests/ -v
# Start the API server
uvicorn src.api.app:app --reload --port 8080
# Open development notebooks
jupyter notebook notebooks/
# One-command Cloud Run deployment
./deploy/deploy_cloudrun.sh YOUR_PROJECT_ID
# Or use Terraform for full infrastructure
cd deploy/terraform
terraform init && terraform apply
| Metric | Value |
|--------|-------|
| Python source files | ~45+ |
| Lines of code | ~8,000+ |
| Agent frameworks | 5 (ADK, LangGraph, CrewAI, LlamaIndex, NeMo) |
| LangGraph nodes | 6 (intake → classify → retrieve → resolve → escalate → feedback) |
| CrewAI agents | 3 (Market Analyst, Demand Forecaster, Pricing Strategist) |
| LlamaIndex indexes | 4 (products, policies, pricing_rules, FAQs) |
| MCP servers | 3 (inventory, competitor, logistics) |
| API endpoints | 5 (/chat, /health, /escalation, /sessions, /) |
| Custom tools | 20+ |
| Test files | 7 |
| Gemini models | 3 (2.0 Flash, 2.5 Flash, 2.5 Pro) |
| GCP services | 10+ |
| Development notebooks | 4 (weekly sprints) |
Each framework excels at a specific pattern. LangGraph handles stateful workflows better than CrewAI. CrewAI handles multi-agent collaboration better than LangGraph. LlamaIndex handles RAG better than both. ADK provides the GCP deployment path. NeMo provides programmable safety. Using the right tool for each job produces better results than forcing one framework to do everything.
</details> <details> <summary><strong>Why keyword routing before LLM routing?</strong></summary>The 3-tier router (keywords → patterns → LLM) saves ~80% of LLM routing costs. Most messages contain obvious signals ("order", "refund", "pricing") that don't need AI to classify. The LLM fallback only fires for genuinely ambiguous messages.
</details> <details> <summary><strong>Why separate customer/internal APIs?</strong></summary>Customer support and pricing optimization serve different users with different security requirements. Customers should never see cost prices, margins, or competitor strategies. Separating at the API layer (not just the prompt layer) provides defense in depth.
</details> <details> <summary><strong>Why MCP for real-time data?</strong></summary>The Model Context Protocol provides standardized tool discovery and invocation. Any MCP-compatible agent can connect to the inventory, competitor, or logistics servers without custom integration code. It's the "USB port" for AI tools.
</details> <details> <summary><strong>Why Cloud Run over Vertex AI Agent Engine?</strong></summary>Full control over the 5-framework stack, custom Docker images, independent scaling, and no pickle serialization constraints. Agent Engine is great for single-framework agents but doesn't support the heterogeneous architecture ASTRA requires.
</details>| Document | Description |
|----------|-------------|
| ASTRA_PROJECT_REPORT.md | Complete project lifecycle report — genesis, team structure, sprint-by-sprint build, challenges, production deployment, monitoring, and lessons learned |
| PROJECT_DESCRIPTION.md | Concise project description with architecture diagrams, data flows, and skills breakdown |
| ASTRA_Architecture.jsx | Interactive React component for the system architecture visualization |
This project is licensed under the MIT License — see the LICENSE file for details.
Built by Sundar Paul — demonstrating enterprise multi-agent AI architecture on Google Cloud Platform.
If you found this project interesting, consider giving it a ⭐
</div>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-sundar-paul-astra/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/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-sundar-paul-astra/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/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-17T05:14:44.924Z"
}
},
"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": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Sundar Paul",
"href": "https://github.com/sundar-paul/astra",
"sourceUrl": "https://github.com/sundar-paul/astra",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:16.206Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:16.206Z",
"isPublic": true
},
{
"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": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-sundar-paul-astra/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 astra and adjacent AI workflows.