Agentic Control Plane governance for CrewAI agents. Wrap any tool with @governed; ACP decides allow/deny/redact.
Project description
acp-crewai
Agentic Control Plane governance for CrewAI agents.
Wrap any tool with @governed. Before it runs, ACP decides allow / deny / redact based on your workspace's policy, the end user's scopes, rate limits, and PII detection.
Same governance model as Claude Code. If you have workspace policies set up for Claude Code, they apply to CrewAI tools automatically.
Install
pip install acp-crewai
Usage
from crewai import Agent, Crew, Task
from crewai.tools import tool
from fastapi import FastAPI, Header
from acp_crewai import governed, install_crew_hooks, set_context
app = FastAPI()
# Define tools however you like. Stack @governed under @tool — the
# governance check runs inside CrewAI's tool dispatch.
@tool("web_search")
@governed("web_search")
def web_search(query: str) -> str:
"""Search the web."""
return my_search(query) # your code, your credentials
@tool("send_email")
@governed("send_email")
def send_email(to: str, subject: str, body: str) -> str:
"""Send an email on behalf of the user."""
return sendmail(to, subject, body) # your code
@app.post("/run")
def run(topic: str, authorization: str = Header(...)):
# Bind the end user's JWT to this request's context. Every @governed
# call below carries the user's identity to ACP.
set_context(user_token=authorization.removeprefix("Bearer ").strip())
researcher = Agent(
role="researcher",
goal=f"Research {topic}",
tools=[web_search, send_email],
)
task = Task(description=f"Research {topic} and email a summary.", agent=researcher)
crew = Crew(agents=[researcher], tasks=[task])
# Capture inter-agent handoffs (sequential task passes + coworker
# delegation) as synthetic Agent.Handoff audit events.
install_crew_hooks(crew)
return {"result": str(crew.kickoff())}
What happens per tool call
- Pre-check — POSTs to ACP
/govern/tool-usewith{ tool_name, tool_input, session_id }+ the user's Bearer JWT. - Decide — ACP evaluates workspace policy, the user's scopes, rate limits, and PII.
- Deny → wrapped function returns
"tool_error: <reason>"— CrewAI treats this as the tool's output, the model sees it and adapts. - Allow → your tool runs.
- Post-audit — POSTs to
/govern/tool-outputwith the result. PII scan runs. If ACP returnsredact, the redacted version replaces the output.
Inter-agent handoffs (install_crew_hooks)
CrewAI has two delegation paths that don't cross a tool boundary, and
@governed alone doesn't see them:
- Sequential task handoffs — Task N's output feeds Task N+1's context.
- Hierarchical delegation — the built-in
Delegate work to coworker/Ask question to coworkertools a manager uses to route work.
install_crew_hooks(crew) attaches task_callback and step_callback to
a Crew so inter-agent messages emit synthetic Agent.Handoff events.
Those flow through the same PII scan and audit pipeline as tool I/O,
rooted in the end user's identity.
Existing callbacks are chained, not overwritten.
View activity
Every tool call shows up in the ACP Activity view, rooted in the end user's identity. Sessions group related calls — one request from one user = one session.
Fail-open
Network errors, timeouts (5s default), gateway errors → the tool proceeds with reason "fail-open". Matches Claude Code behavior. Governance is never a single point of failure for the agent.
API
acp-crewai re-exports the full acp-governance API for convenience:
governed(name_or_fn=None) # decorator
set_context(user_token, *, session_id=None, agent_tier=None, agent_name=None)
get_context()
clear_context()
configure(base_url=..., timeout_s=..., client_header=...)
Related
acp-governance— core SDK (this package wraps it)acp-langchain— same story for LangChain / LangGraph- CrewAI integration guide
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file acp_crewai-0.1.0.tar.gz.
File metadata
- Download URL: acp_crewai-0.1.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47b87da33602f428daba0f7db6c024330f21bc93bc1ef1355d4de1b4504e5764
|
|
| MD5 |
419314b2a4a3311e26e6aced5a0a4426
|
|
| BLAKE2b-256 |
ab0c22fc4eff292f363043601421fcba91d74f753ca5fc06fcfd6e987de045db
|
File details
Details for the file acp_crewai-0.1.0-py3-none-any.whl.
File metadata
- Download URL: acp_crewai-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0fbcc7ae0a9b3fa645ba0f801f3b9f5dfeb5eff437d41957879d714c02c3efb
|
|
| MD5 |
d65da4c54e11a1abb9ad01adbc8eef14
|
|
| BLAKE2b-256 |
282355531c35e72c7dc8a6d808e92ae5b30d662b8a833ef99c0cc4b4eafe1922
|