Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

KAgent CrewAI Integration

This package provides CrewAI integration for KAgent with A2A (Agent-to-Agent) server support and session-aware memory storage.

Features

  • A2A Server Integration: Compatible with KAgent's Agent-to-Agent protocol
  • Event Streaming: Real-time streaming of crew execution events
  • FastAPI Integration: Ready-to-deploy web server for agent execution
  • Session-aware Memory: Store and retrieve agent memories scoped by session ID
  • Flow State Persistence: Save and restore CrewAI Flow states to KAgent backend

Quick Start

This package supports both CrewAI Crews and Flows. To get started, define your CrewAI crew or flow as you normally would, then replace the kickoff command with the KAgentApp which will handle A2A requests and execution.

from kagent.crewai import KAgentApp
from kagent.core import KAgentConfig
# This is the crew or flow you defined
from research_crew.crew import ResearchCrew

app = KAgentApp(crew=ResearchCrew().crew(), agent_card={
    "name": "my-crewai-agent",
    "description": "A CrewAI agent with KAgent integration",
    "version": "0.1.0",
    "capabilities": {"streaming": True},
    "defaultInputModes": ["text"],
    "defaultOutputModes": ["text"]
}, config=KAgentConfig())

fastapi_app = app.build()
uvicorn.run(fastapi_app, host="0.0.0.0", port=8080)

User Guide

Creating Tasks

For this version, tasks should either accept a single input parameter (string) or no parameters at all. Future versions will allow JSON / structured input where you can replace multiple values in your task to make it more flexible.

For example, you can create a task like follow with yaml (see CrewAI docs) and when triggered from the A2A client, the input field will be populated with the input text if provided.

research_task:
  description: >
    Research topics on {input} and provide a summary.

This is equivalent of crew.kickoff(inputs={"input": "your input text"}) when triggering agents manually.

Session-aware Memory

CrewAI Crews

Session scoped memory is implemented using the LongTermMemory interface in CrewAI. If you wish to share memories between agents, you must interact with them in the same session to share long term memory so they can search and access the previous conversation history (because agent ID is volatile, we must use session ID). You can enable this by setting memory=True when creating your CrewAI crew. Note that this memory is also scoped by user ID so different users will not see each other's memories.

Our KAgent backend is designed to handle long term memory saving and retrieval with the identical logic as LTMSQLiteStorage which is used by default for LongTermMemory in CrewAI, with the addition of session and user scoping. It will search the LTM items based on the task description and return the most relevant items (sorted and limited).

Note that when you set memory=True, you are responsible to ensure that short term and entity memory are configured properly (e.g. with OPENAI_API_KEY or set your own providers). The KAgent CrewAI integration only handles long term memory.

CrewAI Flows

In flow mode, we implement memory similar to checkpointing in LangGraph so that the flow state is persisted to the KAgent backend after each method finishes execution. We consider each session to be a single flow execution, so you can reuse state within the same session by enabling @persist() for flow or methods. We do not manage LongTermMemory for crews inside a flow since flow is designed to be very customizable. You are responsible for implementing your own memory management for all the crew you use in the flow.

Tracing

To enable tracing, follow this guide on Kagent docs. Once you have Jaeger (or any OTLP-compatible backend) running and the kagent settings updated, your CrewAI agent will automatically send traces to the configured backend.

Architecture

The package mirrors the structure of kagent-adk and kagent-langgraph but uses CrewAI for multi-agent orchestration:

  • CrewAIAgentExecutor: Executes CrewAI workflows within A2A protocol
  • KAgentApp: FastAPI application builder with A2A integration
  • Event Converters: Translates CrewAI events into A2A events for streaming.
  • Task history: The public A2A gateway persists client-visible task and event history.

For local development, configure the HTTP endpoint used by protocol traffic:

export KAGENT_API_URL=http://localhost:8083
export KAGENT_GATEWAY_URL=http://localhost:8083
export KAGENT_NAME=my-agent
export KAGENT_NAMESPACE=default

Deployment

The uses the same deployment approach as other KAgent A2A applications (ADK / LangGraph). You can refer to samples/crewai/ for examples.

Release files for kagent-crewai 1.0.0a1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for kagent-crewai 1.0.0a1
File Size Uploaded
kagent_crewai-1.0.0a1.tar.gz 9.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for kagent-crewai 1.0.0a1
File Interpreter ABI Platform
kagent_crewai-1.0.0a1-py3-none-any.whl Python 3 none any Details

Total release size: 19.0 kB

Release files / kagent_crewai-1.0.0a1.tar.gz

Download URL kagent_crewai-1.0.0a1.tar.gz
Size 9.8 kB
Tags Source
SHA-256 checksum
How to use checksums
647abebbb271118bbb295b5fb0e29ddd51ef7c8fd1c426a229d485fa09cf41ce
BLAKE2b-256 checksum
How to use checksums
d3a238edfb8773c27e71e0a43bace2f89ef4e98e872328b2f9205d283c56d027
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / kagent_crewai-1.0.0a1-py3-none-any.whl

Download URL kagent_crewai-1.0.0a1-py3-none-any.whl
Size 9.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
ec5b2d447120993d8c15d302ff3ff7b07a9839c8930b4f3e04b4c615299546cc
BLAKE2b-256 checksum
How to use checksums
107f22a136f5c7d7c1eee1273559c75db6c9ba465978df90c5d85efbf4e8633c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.12.16 {"installer":{"name":"uv","version":"0.12.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

This release

1.0.0a1 This release

2 release files

0.10.2

2 release files

0.9.12

2 release files

0.9.10

2 release files

0.9.9

2 release files

0.9.8

2 release files

0.9.7

2 release files

0.9.6

2 release files

0.9.5

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.6

2 release files

0.8.5

2 release files

0.8.4

2 release files

0.8.3

2 release files

0.8.2

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.19

2 release files

0.7.18

2 release files

0.7.17

2 release files

0.7.16

2 release files

0.7.15

2 release files

0.7.14

2 release files

0.7.12

2 release files

0.7.11

2 release files

0.7.10

2 release files

0.7.9

2 release files

0.7.8

2 release files

0.7.7

2 release files

0.7.6

2 release files

0.7.5

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page