Skip to main content

LangGraph and CrewAI adapter for Entire checkpoint tracking.

Project description

Entire Adapter

Python adapter that lets LangGraph/LangChain and CrewAI agents participate in Entire checkpoint tracking.

It provides:

  • EntireCallbackHandler for LangChain and LangGraph callback configs.
  • EntireCrewAIListener for CrewAI's event bus.
  • Three Entire external-agent binaries:
    • entire-agent-langgraph
    • entire-agent-crewai
    • entire-agent-entire-adapter for backward-compatible generic use.

Why

Custom Python agents often edit files through tools, but their prompt/tool context is easy to lose once the final Git diff lands. Entire Adapter maps framework lifecycle events to Entire hooks so commits can be linked to agent sessions, tool calls, and checkpoint history.

Install

For LangGraph/LangChain:

pip install "entire-adapter[langgraph]"
entire enable --agent langgraph --telemetry=false

For CrewAI:

pip install "entire-adapter[crewai]"
entire enable --agent crewai --telemetry=false

Generic compatibility mode:

entire enable --agent entire-adapter --telemetry=false

For local development from this repo:

pip install -e ".[langgraph,crewai,dev]"

The adapter does not auto-commit your work. Persistent checkpoint metadata is finalized by Entire's existing Git hooks when you commit.

LangGraph / LangChain

from entire_adapter import EntireCallbackHandler

entire = EntireCallbackHandler(agent_label="reviewer")

result = graph.invoke(
    {"prompt": "Refactor the parser"},
    config={"callbacks": [entire]},
)

print(entire.session_id)

EntireCallbackHandler defaults to Entire agent name langgraph. It maps top-level chain start/end, agent actions, LLM output, tool start/end, and tool errors into transcript records and Entire lifecycle hooks.

CrewAI

from entire_adapter import EntireCrewAIListener

entire_listener = EntireCrewAIListener(agent_label="research-crew")

EntireCrewAIListener defaults to Entire agent name crewai. It listens for crew kickoff, agent execution, and tool usage events. Tool completions trigger turn-end so file changes can become checkpoints.

Checkpoint Policies

Use per-tool policies when not every tool should create a checkpoint:

from entire_adapter import EntireCallbackHandler, ToolCheckpointContext

def checkpoint_writes(context: ToolCheckpointContext) -> bool:
    return context.tool_name == "write_file"

entire = EntireCallbackHandler(
    agent_label="repo-editor",
    checkpoint_policy={
        "read_file": "never",
        "write_file": checkpoint_writes,
    },
)

Supported policy names:

always
never
on_success
on_error

Mapping by tool name wins first, then a global policy, then the legacy checkpoint_on_tool_end flag.

Async Hook Dispatch

Synchronous hook dispatch remains the default:

EntireCallbackHandler(hook_dispatch="sync")

For high-volume agents, opt into a bounded background queue:

entire = EntireCallbackHandler(
    hook_dispatch="async",
    async_queue_size=1024,
    flush_timeout=10.0,
)

# Optional explicit drain at process shutdown.
entire.close()

If the async queue fills, non-strict mode warns and skips the hook. strict=True raises instead.

External-Agent Protocol

Entire discovers external agents from executables named:

entire-agent-<name>

This package installs:

entire-agent-langgraph
entire-agent-crewai
entire-agent-entire-adapter

Protocol commands include:

entire-agent-langgraph info
entire-agent-crewai info
entire-agent-entire-adapter info
entire-agent-langgraph parse-hook --hook turn-end < payload.json
entire-agent-langgraph read-transcript --session-ref .git/entire-adapter/sessions/demo.jsonl
entire-agent-langgraph compact-transcript --session-ref .git/entire-adapter/sessions/demo.jsonl

Metadata And Dashboard Labels

Each hook/transcript record includes richer labels for dashboards:

  • framework
  • agent_label
  • display_name
  • entire_agent_name
  • run_id
  • tool_name
  • tool_use_id
  • checkpoint_policy
  • checkpoint_reason

The adapter writes append-only JSONL transcripts outside the worktree when possible:

.git/entire-adapter/sessions/<session-id>.jsonl

Entire reads this transcript through the external-agent protocol so reasoning and tool context can be displayed alongside file changes.

Examples

python usage_example.py
python examples/langgraph_repo_editor.py
python examples/langgraph_checkpoint_policies.py
python examples/crewai_multi_agent.py

The CrewAI example requires CrewAI and normal CrewAI LLM configuration.

Graceful Degradation

By default, the adapter never crashes your agent if Entire is unavailable. It logs one warning and continues when:

  • entire is not installed or not on PATH
  • the current directory is not an Entire-enabled Git repo
  • an Entire hook command exits non-zero
  • a hook call times out
  • an async hook queue rejects work in non-strict mode

Use strict=True if you want those failures to raise.

Verification

Run unit tests:

python -m pytest -q

Run gated Entire integration tests when the Entire CLI is available:

ENTIRE_E2E=1 python -m pytest tests/e2e -q

Build and check the package:

python -m build
python -m twine check dist/*

After running an agent that edits files:

git status
git add .
git commit -m "test entire adapter"
entire checkpoint list --session "$SESSION_ID"

Manual live checkpoint commands are in adapter_live_test/README.md.

Development

python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -e ".[langgraph,crewai,dev]"
python -m pytest -q

Release notes are in CHANGELOG.md. Architecture/interview notes are in docs/INTERVIEW_BRIEF.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

entire_adapter-0.2.0.tar.gz (32.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

entire_adapter-0.2.0-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file entire_adapter-0.2.0.tar.gz.

File metadata

  • Download URL: entire_adapter-0.2.0.tar.gz
  • Upload date:
  • Size: 32.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for entire_adapter-0.2.0.tar.gz
Algorithm Hash digest
SHA256 813c5050233d61a2af0c21a24746402bc71214ad5b8b49816bd061d83e5ceeb7
MD5 810bf8ad0bf9336f0e3ce9110b03b90b
BLAKE2b-256 b54900adeb52e8e349e4daaaf0802203aed337465728af5ade7b9d2159c825aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for entire_adapter-0.2.0.tar.gz:

Publisher: publish.yml on suhaanthayyil/entire-adapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file entire_adapter-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: entire_adapter-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 19.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for entire_adapter-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 22bdb3047dc068220621bc5ccf36f3aa370fb51320c529bf56fbb43bc2bd5882
MD5 7bdf8faa1b07ba2b792fa1f2829f1887
BLAKE2b-256 03168f30ec93bab76d852a9b7a5cbbb8d85708ae64114ecb9dffd8b534a57add

See more details on using hashes here.

Provenance

The following attestation bundles were made for entire_adapter-0.2.0-py3-none-any.whl:

Publisher: publish.yml on suhaanthayyil/entire-adapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page