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
CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI Durable Human Approval CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI gives you multi-agent crews that research, analyze, and produce reports. But when your research agent finishes a market analysis and needs a senior analyst to approve it before publication - CrewAI has no built-in way to pause, notify the analyst, wait hours, remind, a Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
crewai-durable-human-approval 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
CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI Durable Human Approval CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI gives you multi-agent crews that research, analyze, and produce reports. But when your research agent finishes a market analysis and needs a senior analyst to approve it before publication - CrewAI has no built-in way to pause, notify the analyst, wait hours, remind, a
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
Axmeai
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
Axmeai
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
CrewAI crew runs market research -> Agent gathers data, analyzes competitors, drafts report -> Now what? Who approves this before it goes to stakeholders? Options: 1. print() and input()? (blocks the process, dies on disconnect) 2. Send a Slack message manually? (no tracking, no reminder, no timeout) 3. Build webhook + DB + polling? (200+ lines of infrastructure) And if the agent crashes mid-research? -> CrewAI: start over from scratch
python
# CrewAI does the thinking
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
# AXME handles the human gate
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {"report_id": "MR-2026-Q1", "draft": str(result)},
})
approval = client.wait_for(intent_id) # reminder in 5 min, timeout in 1hbash
pip install axme crewai export AXME_API_KEY="your-key" # Get one: axme login export OPENAI_API_KEY="sk-..." # For CrewAI LLM calls
python
from crewai import Agent, Task, Crew
from axme import AxmeClient, AxmeClientConfig
import os
# 1. CrewAI: research agent
researcher = Agent(
role="Market Research Analyst",
goal="Produce comprehensive market research reports",
backstory="Senior analyst at a top consulting firm.",
)
task = Task(
description="Research the enterprise SaaS AI infrastructure market.",
expected_output="Market size, growth rate, top players, key trends.",
agent=researcher,
)
crew = Crew(agents=[researcher], tasks=[task])
result = crew.kickoff()
# 2. AXME: human approval before publishing
client = AxmeClient(AxmeClientConfig(api_key=os.environ["AXME_API_KEY"]))
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {
"report_id": "MR-2026-Q1",
"draft_summary": str(result),
},
})
# Agent suspends. Reminder in 5 min. Timeout in 1 hour.
approval = client.wait_for(intent_id)
print(f"Decision: {approval['status']}")python
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
# ...and now?
print(result) # Print to console?
input("Press Enter to publish...") # Block the process?
# No reminders. No timeout. No audit trail.
# If the human walks away, the agent is stuck forever.
# If the process crashes, the research is lost.python
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {"draft": str(result)},
})
approval = client.wait_for(intent_id)
# Reminder in 5 min. Timeout in 1h. Audit trail included.
# Agent crash? Restart it. AXME kept the state.Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI Durable Human Approval CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL. CrewAI gives you multi-agent crews that research, analyze, and produce reports. But when your research agent finishes a market analysis and needs a senior analyst to approve it before publication - CrewAI has no built-in way to pause, notify the analyst, wait hours, remind, a
CrewAI agents lose state on crash and have no real human approval. AXME adds both - durable state and async HITL.
CrewAI gives you multi-agent crews that research, analyze, and produce reports. But when your research agent finishes a market analysis and needs a senior analyst to approve it before publication - CrewAI has no built-in way to pause, notify the analyst, wait hours, remind, and resume. AXME adds that.
Alpha - Built with AXME (AXP Intent Protocol). cloud.axme.ai - contact@axme.ai
CrewAI has limited state management, failures typically require restart. There is no built-in human-in-the-loop that survives disconnects.
CrewAI crew runs market research
-> Agent gathers data, analyzes competitors, drafts report
-> Now what? Who approves this before it goes to stakeholders?
Options:
1. print() and input()? (blocks the process, dies on disconnect)
2. Send a Slack message manually? (no tracking, no reminder, no timeout)
3. Build webhook + DB + polling? (200+ lines of infrastructure)
And if the agent crashes mid-research?
-> CrewAI: start over from scratch
CrewAI does the research. AXME handles durability and human approval.
# CrewAI does the thinking
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
# AXME handles the human gate
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {"report_id": "MR-2026-Q1", "draft": str(result)},
})
approval = client.wait_for(intent_id) # reminder in 5 min, timeout in 1h
CrewAI does the reasoning. AXME does the waiting.
pip install axme crewai
export AXME_API_KEY="your-key" # Get one: axme login
export OPENAI_API_KEY="sk-..." # For CrewAI LLM calls
from crewai import Agent, Task, Crew
from axme import AxmeClient, AxmeClientConfig
import os
# 1. CrewAI: research agent
researcher = Agent(
role="Market Research Analyst",
goal="Produce comprehensive market research reports",
backstory="Senior analyst at a top consulting firm.",
)
task = Task(
description="Research the enterprise SaaS AI infrastructure market.",
expected_output="Market size, growth rate, top players, key trends.",
agent=researcher,
)
crew = Crew(agents=[researcher], tasks=[task])
result = crew.kickoff()
# 2. AXME: human approval before publishing
client = AxmeClient(AxmeClientConfig(api_key=os.environ["AXME_API_KEY"]))
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {
"report_id": "MR-2026-Q1",
"draft_summary": str(result),
},
})
# Agent suspends. Reminder in 5 min. Timeout in 1 hour.
approval = client.wait_for(intent_id)
print(f"Decision: {approval['status']}")
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
# ...and now?
print(result) # Print to console?
input("Press Enter to publish...") # Block the process?
# No reminders. No timeout. No audit trail.
# If the human walks away, the agent is stuck forever.
# If the process crashes, the research is lost.
crew = Crew(agents=[researcher], tasks=[research_task])
result = crew.kickoff()
intent_id = client.send_intent({
"intent_type": "intent.research.market_report.v1",
"to_agent": "agent://myorg/production/crewai-researcher",
"payload": {"draft": str(result)},
})
approval = client.wait_for(intent_id)
# Reminder in 5 min. Timeout in 1h. Audit trail included.
# Agent crash? Restart it. AXME kept the state.
| Component | Role | Framework |
|-----------|------|-----------|
| agent_crewai.py | Full CrewAI Agent + Task + Crew research pipeline | CrewAI |
| agent.py | Simplified agent (no LLM, tests AXME flow) | AXME SDK |
| initiator.py | Send research intent, observe lifecycle | AXME SDK |
| scenario.json | Scenario definition (agent + human approval) | AXME CLI |
CrewAI does the research. AXME does the infrastructure.
+-----------+ send_intent() +----------------+ research +-----------+
| | ---------------> | | ----------> | |
| Initiator | | AXME Cloud | | CrewAI |
| | <- wait_for() -- | (platform) | <- result | Agent |
| | | | | |
| | | WAITING for | +-----------+
| | | human approval|
| | | | approve +-----------+
| | | | <---------- | |
| | <- COMPLETED --- | - remind 5m | | Lead |
| | | - timeout 1h | | Analyst |
+-----------+ +----------------+ +-----------+
curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh
axme login
pip install -r requirements.txt
axme scenarios apply scenario.json
# macOS
cat ~/Library/Application\ Support/axme/scenario-agents.json | grep -A2 crewai-researcher-demo
# Linux
cat ~/.config/axme/scenario-agents.json | grep -A2 crewai-researcher-demo
# Simplified agent (no LLM required)
AXME_API_KEY=<agent-key> python agent.py
# Full CrewAI agent (requires OPENAI_API_KEY)
AXME_API_KEY=<agent-key> OPENAI_API_KEY=sk-... python agent_crewai.py
axme tasks approve <intent_id>
axme intents get <intent_id>
# lifecycle_status: COMPLETED
Built with AXME (AXP Intent Protocol).
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-axmeai-crewai-durable-human-approval/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/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-axmeai-crewai-durable-human-approval/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/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-17T02:53:48.715Z"
}
},
"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": "Axmeai",
"href": "https://github.com/AxmeAI/crewai-durable-human-approval",
"sourceUrl": "https://github.com/AxmeAI/crewai-durable-human-approval",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:10.628Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:10.628Z",
"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-axmeai-crewai-durable-human-approval/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-axmeai-crewai-durable-human-approval/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 crewai-durable-human-approval and adjacent AI workflows.