Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.entire.io/llms.txt

Use this file to discover all available pages before exploring further.

Entire integrates with AI coding agents by installing lifecycle hooks that capture each session and link it to your Git history. When you commit, Entire writes a checkpoint with the full transcript, file changes, tokens, and tool calls to the entire/checkpoints/v1 branch — no extra commits on your working branch. The default agent is Claude Code. To choose a different one, run entire agent add <name>.

Built-in agents

  • Claude Code — Stable · --agent claude-code. Full feature support including nested subagent capture.
  • Codex — Preview · --agent codex. Native hook system; main session capture (no subagent hooks yet).
  • Copilot CLI — Preview · --agent copilot-cli. Native hooks; token usage available post-session.
  • Cursor — Preview · --agent cursor. IDE and CLI. Rewind and resume are not available.
  • Factory Droid — Preview · --agent factoryai-droid. Subagent-aware capture via pre-tool-use and post-tool-use hooks.
  • Gemini CLI — Preview · --agent gemini. File changes captured; conversation transcript and token tracking are limited.
  • OpenCode — Preview · --agent opencode. TypeScript plugin integration; supports mid-turn commits.

Don't see your agent?

Any agent can be added by writing an executable named entire-agent-<name> and placing it on your $PATH. The Entire CLI auto-discovers it. Working examples at github.com/entireio/external-agents.