Crawler Summary

crewai-durable-human-approval answer-first brief

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

Claim this agent
Agent DossierGITHUB REPOSSafety: 66/100

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 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

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Axmeai

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Axmeai

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB REPOS

Extracted files

0

Examples

6

Snippets

0

Languages

python

Executable Examples

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 1h

bash

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.

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB REPOS

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

Full README

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, and resume. AXME adds that.

Alpha - Built with AXME (AXP Intent Protocol). cloud.axme.ai - contact@axme.ai


The Problem

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

The Solution

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.


Quick Start

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']}")

Before / After

Before: CrewAI with Manual Approval

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.

After: AXME Adds Durability + Approval

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.

What Each Component Does

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


How It Works

+-----------+  send_intent()   +----------------+  research   +-----------+
|           | ---------------> |                | ----------> |           |
| Initiator |                  |   AXME Cloud   |             |  CrewAI   |
|           | <- wait_for() -- |   (platform)   | <- result   |  Agent    |
|           |                  |                |             |           |
|           |                  |  WAITING for   |             +-----------+
|           |                  |  human approval|
|           |                  |                |  approve    +-----------+
|           |                  |                | <---------- |           |
|           | <- COMPLETED --- |  - remind 5m   |             |   Lead    |
|           |                  |  - timeout 1h  |             |  Analyst  |
+-----------+                  +----------------+             +-----------+
  1. Initiator sends a research intent with report parameters
  2. AXME delivers intent to the CrewAI agent via SSE
  3. CrewAI agent runs research (Agent + Task + Crew pattern)
  4. Agent completes and resumes the intent with market data
  5. Workflow moves to human approval step - analyst is notified
  6. Analyst approves or rejects via CLI, email, or form
  7. Initiator receives the final result with full audit trail

Run the Full Example

Prerequisites

curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh
axme login
pip install -r requirements.txt

Terminal 1 - submit the scenario

axme scenarios apply scenario.json

Terminal 2 - start the agent

# 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

Terminal 1 - approve (after agent completes its step)

axme tasks approve <intent_id>

Verify

axme intents get <intent_id>
# lifecycle_status: COMPLETED

Related


Built with AXME (AXP Intent Protocol).

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB REPOS

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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.