feat(GRO-2516): add agent-runtime credential stanza to .gitignore #84

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

Summary

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

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). ### 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:18:48 +00:00
feat(GRO-2516): add agent-runtime credential stanza to .gitignore
CI / Test (pull_request) Successful in 28s
CI / Lint & Typecheck (pull_request) Successful in 36s
CI / Build & Push Docker Image (pull_request) Successful in 14s
88995ff59b
Appends canonical ignore rules for .gh-token, .config/gh/,
.claude/, .codex/, and AGENT_HOME patterns per GRO-2516 guardrail
to prevent accidental commit of agent credential artifacts.

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