From 8e19c93a003e4a2ed47fbf7a5354ab8f26e32d46 Mon Sep 17 00:00:00 2001 From: Sicheng Date: Sat, 21 Feb 2026 22:22:55 -0500 Subject: [PATCH 1/2] docs: clarify README wording and agent-agnostic troubleshooting --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b2274521..25e946d8c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Entire CLI -Entire hooks into your git workflow to capture AI agent sessions on every push. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. +Entire hooks into your git workflow to capture AI agent sessions throughout development. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. With Entire, you can: @@ -58,7 +58,7 @@ entire enable This installs agent and git hooks to work with your AI agent (Claude Code or Gemini CLI). The hooks capture session data at specific points in your workflow. Your code commits stay clean—all session metadata is stored on a separate `entire/checkpoints/v1` branch. -**When checkpoints are created** depends on your chosen strategy (default is `manual-commit`): +Checkpoint creation depends on your chosen strategy (default is `manual-commit`): - **Manual-commit**: Checkpoints are created when you or the agent make a git commit - **Auto-commit**: Checkpoints are created after each agent response @@ -180,7 +180,7 @@ Multiple AI sessions can run on the same commit. If you start a second session w | Flag | Description | |------------------------|--------------------------------------------------------------------| -| `--agent ` | AI agent to setup hooks for: `claude-code` (default) or `gemini` | +| `--agent ` | AI agent to set up hooks for: `claude-code` (default) or `gemini` | | `--force`, `-f` | Force reinstall hooks (removes existing Entire hooks first) | | `--local` | Write settings to `settings.local.json` instead of `settings.json` | | `--project` | Write settings to `settings.json` even if it already exists | @@ -291,7 +291,7 @@ Entire automatically redacts detected secrets (API keys, tokens, credentials) wh |--------------------------|-------------------------------------------------------------------------------------------| | "Not a git repository" | Navigate to a Git repository first | | "Entire is disabled" | Run `entire enable` | -| "No rewind points found" | Work with Claude Code and commit (manual-commit) or wait for agent response (auto-commit) | +| "No rewind points found" | Work with your configured agent and commit (manual-commit) or wait for an agent response (auto-commit) | | "shadow branch conflict" | Run `entire reset --force` | ### SSH Authentication Errors From 517f9d4f67c6e1b513b43527b379ff02a474c4d0 Mon Sep 17 00:00:00 2001 From: paul <423357+toothbrush@users.noreply.github.com> Date: Mon, 23 Feb 2026 11:30:41 +0930 Subject: [PATCH 2/2] Small changes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25e946d8c..e2a6a0fb1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Entire CLI -Entire hooks into your git workflow to capture AI agent sessions throughout development. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. +Entire hooks into your Git workflow to capture AI agent sessions as you work. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. With Entire, you can: @@ -58,7 +58,7 @@ entire enable This installs agent and git hooks to work with your AI agent (Claude Code or Gemini CLI). The hooks capture session data at specific points in your workflow. Your code commits stay clean—all session metadata is stored on a separate `entire/checkpoints/v1` branch. -Checkpoint creation depends on your chosen strategy (default is `manual-commit`): +**When checkpoints are created** depends on your chosen strategy (default is `manual-commit`): - **Manual-commit**: Checkpoints are created when you or the agent make a git commit - **Auto-commit**: Checkpoints are created after each agent response @@ -180,7 +180,7 @@ Multiple AI sessions can run on the same commit. If you start a second session w | Flag | Description | |------------------------|--------------------------------------------------------------------| -| `--agent ` | AI agent to set up hooks for: `claude-code` (default) or `gemini` | +| `--agent ` | AI agent to install hooks for: `claude-code` (default) or `gemini` | | `--force`, `-f` | Force reinstall hooks (removes existing Entire hooks first) | | `--local` | Write settings to `settings.local.json` instead of `settings.json` | | `--project` | Write settings to `settings.json` even if it already exists |