From 503ceb28077df035b21d917b497b7c1d4e260870 Mon Sep 17 00:00:00 2001 From: Jordan Coin Jackson Date: Sun, 2 Aug 2026 20:22:38 -0400 Subject: [PATCH] chore: Ignore local agent artifacts Four untracked paths were showing up in every `git status` and in `codemap --diff`, none of them authored in this repo: - .codex/config.toml pins an absolute path for one machine. Ignored by file rather than ignoring .codex/, mirroring how .claude/settings.local.json is ignored while .claude/ is not, so a project-scoped .codex/hooks.json can still be committed. - .agents/skills/ is populated by `codemap plugin install`. Scoped to skills/ because .agents/plugins/marketplace.json is tracked and a directory-wide rule would shadow it. - AGENTS.md is produced by agent tooling from CLAUDE.md. - codemapd/ is Rust build output left from the sockd prototype. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index f60dd28..5feb1d8 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,16 @@ coverage.out # Local settings .claude/settings.local.json + +# Local agent artifacts. Machine-specific or generated, never authored here: +# .codex/config.toml pins absolute paths for one machine (mirrors how +# .claude/settings.local.json is ignored while .claude/ is not, so project-scoped +# .codex/hooks.json can still be committed); .agents/skills/ is populated by +# `codemap plugin install` while .agents/plugins/marketplace.json stays tracked; +# AGENTS.md is produced by agent tooling from CLAUDE.md. +.codex/config.toml +.agents/skills/ +/AGENTS.md + +# Rust prototype build output +/codemapd/