feat(GRO-2516): create .gitignore with agent-runtime credential stanza #14

Merged
Flea Flicker merged 1 commits from feature/gro-2516-harden-gitignore into main 2026-06-25 02:24:20 +00:00
Member

Summary

Adds agent-runtime credential ignore rules per the GRO-2516 guardrail (spun out of GRO-2515 security follow-up).

Creates root-level .gitignore (repo previously had none).

Rules added

# Agent runtime artifacts — never commit
.gh-token
*.gh-token
**/.gh-token
.config/gh/
**/.config/gh/
**/AGENT_HOME/**
$AGENT_HOME/**
.claude/
.codex/

Verification

  • git check-ignore -v .gh-token → matched by **/.gh-token
  • git check-ignore -v '$AGENT_HOME/x' → matched by $AGENT_HOME/**

References

  • Parent: GRO-2516 — Harden agent-runtime .gitignore across groombook repos
  • Security root cause: GRO-2515
## Summary Adds agent-runtime credential ignore rules per the [GRO-2516](/GRO/issues/GRO-2516) guardrail (spun out of GRO-2515 security follow-up). Creates root-level `.gitignore` (repo previously had none). ### Rules added ```gitignore # Agent runtime artifacts — never commit .gh-token *.gh-token **/.gh-token .config/gh/ **/.config/gh/ **/AGENT_HOME/** $AGENT_HOME/** .claude/ .codex/ ``` ### Verification - `git check-ignore -v .gh-token` → matched by `**/.gh-token` - `git check-ignore -v '$AGENT_HOME/x'` → matched by `$AGENT_HOME/**` ### References - Parent: [GRO-2516](/GRO/issues/GRO-2516) — Harden agent-runtime .gitignore across groombook repos - Security root cause: [GRO-2515](/GRO/issues/GRO-2515)
Flea Flicker added 1 commit 2026-06-25 02:19:02 +00:00
Adds root-level .gitignore to prevent accidental commit of agent
credential artifacts (.gh-token, .config/gh/, .claude/, .codex/,
AGENT_HOME) per the GRO-2516 guardrail.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Flea Flicker merged commit 96ca9d993d into main 2026-06-25 02:24:20 +00:00
Sign in to join this conversation.