Repositories / agent-snapshot.git
agent-snapshot.git
Clone (read-only): git clone http://git.guha-anderson.com/git/agent-snapshot.git
@@ -230,6 +230,9 @@ The file is a JSON list of file or directory paths: ```json [ "$HOME/.cache", + "$HOME/.claude", + "$HOME/.codex", + "$HOME/.cursor", "$XDG_CONFIG_HOME/agent-snapshot/ignore.json", "/tmp/scratch-output", "/usr", @@ -254,4 +257,3 @@ Run the test suite with `uv`: ```bash uv run pytest ``` -
@@ -194,6 +194,9 @@ let expand_ignore_entry (entry : string) : string = let default_ignore_file_entries () : ignore_file_entries = [ "$HOME/.cache"; + "$HOME/.claude"; + "$HOME/.codex"; + "$HOME/.cursor"; "$XDG_CONFIG_HOME/agent-snapshot/ignore.json"; "/tmp/scratch-output"; "/usr";
@@ -128,6 +128,9 @@ def test_missing_ignore_config_creates_defaults(tmp_path, ignore_config): data = json.loads(ignore_config.read_text()) assert data == [ "$HOME/.cache", + "$HOME/.claude", + "$HOME/.codex", + "$HOME/.cursor", "$XDG_CONFIG_HOME/agent-snapshot/ignore.json", "/tmp/scratch-output", "/usr",