chore(gitignore): ignore BES fleet workpads (AGENT_INBOX/FEEDBACK/SESSION_JOURNAL)#74
Merged
Merged
Conversation
…EDBACK.md, SESSION_JOURNAL.md) These root-level files are bootstrapped by the BES fleet engagement model that lays into the working tree on every fleet-sync. They carry internal handoff content that MUST NOT reach this public OSS remote. .agents/ and .claude/ are already gitignored; this completes the OSS gitignore set per bes-fleet-policy OPERATING_MODEL 'Public OSS posture'. Not pushed by the agent that authored this commit — owner reviews + pushes when ready.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.gitignore:AGENT_INBOX.md,AGENT_FEEDBACK.md,SESSION_JOURNAL.md.agents/and.claude/are already gitignored; this completes the OSS gitignore setWhy
The fleet engagement model lays internal handoff files into every repo's working tree on each sync. Three of those files (the workpads above) sit at the repo root and previously were not declared in this public OSS repo's
.gitignore. Any futuregit add .would have committed them; their contents are BES-internal and should never reach this public remote.The patterns are now enforced fleet-wide:
bes-fleet-policy/agents/scripts/fleet-sync.shauto-adds these patterns on every OSS-posture sync (idempotent).bes-fleet-policy/agents/scripts/audit-entry-docs.shflags any tracked instance of these files at a public-OSS repo as BLOCKING.Test plan
git check-ignore AGENT_INBOX.md AGENT_FEEDBACK.md SESSION_JOURNAL.mdresolves all three as ignored after the change.