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.

25 terms
Glossary termDefinition
AgentAn AI coding assistant connected to Entire, such as Claude Code, Codex, Cursor, Factory Droid, Gemini CLI, GitHub Copilot CLI, or OpenCode.
Agent runOne execution of an agent inside a session. Entire compares your work before each run with the agent’s changes so line attribution can stay accurate.
CheckpointA save point for your work. Entire creates checkpoints around agent activity and links committed checkpoints to Git commits.
Checkpoint IDA 12-character hexadecimal identifier for a checkpoint, such as 8a513f56ed70. You can find checkpoint IDs in the CLI and Entire.io.
Checkpoint linkingThe connection between a Git commit and the Entire checkpoint that captured the session context behind it.
Checkpoint remoteA Git remote used to store checkpoint metadata separately from your code remote. By default, Entire pushes checkpoint metadata to your code remote.
Checkpoints branchThe permanent Git branch where Entire stores checkpoint and session metadata. The branch is named entire/checkpoints/v1.
Commit trailerStructured metadata appended to a Git commit message. Entire uses trailers such as Entire-Checkpoint and Entire-Attribution.
Committed checkpointA checkpoint permanently linked to a Git commit and stored on the checkpoints branch.
DispatchA task or request started from Entire.io and handed to an agent or connected workflow.
Entire CLIThe command line tool that records sessions, creates checkpoints, links commits, and syncs metadata.
Entire.ioThe web application for browsing repositories, sessions, checkpoints, dispatches, and agent activity captured by Entire.
Entire-AttributionA commit trailer that records how much of a commit came from the agent versus a human.
Entire-CheckpointA commit trailer that records the checkpoint ID associated with a commit.
Line attributionEntire’s calculation of how many changed lines in a commit were written by the agent and how many were written by a human.
MetadataStructured data Entire records about sessions and checkpoints, including timestamps, agent type, token usage, attribution, and configuration.
Nested sessionA child session created when an agent spawns another agent or sub-agent during the same body of work.
RewindRestoring your worktree to an earlier checkpoint during an active session.
SessionA complete interaction with an AI coding agent from start to finish. Sessions include prompts, responses, code changes, checkpoints, token usage, metadata, and line attribution.
Session branchA Git branch used to store captured session data without adding commits to your working branch.
Session contextThe prompts, responses, tool activity, code changes, and metadata that explain what happened during a session.
Shadow branchA temporary local branch used to store checkpoints during active sessions. Shadow branches are named like entire/<sessionID>-<worktreeID> and are not pushed to remote repositories.
SkillA reusable workflow that helps an agent use Entire history, checkpoints, and session context for a specific task.
Token usageCounts of input tokens, output tokens, cache creation tokens, cache reads, and API calls recorded for a checkpoint or session.
Worktree IDAn opaque identifier Entire uses as part of a shadow branch name to distinguish active worktrees.