chore(beads): remove tracked .beads and drop NTM/Beads docs#424
Merged
Conversation
Deploying allagents with
|
| Latest commit: |
b67dc33
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://629c3498.allagents.pages.dev |
| Branch Preview URL: | https://chore-remove-tracked-beads.allagents.pages.dev |
4053140 to
3f9d1b3
Compare
3f9d1b3 to
850ec0f
Compare
The .beads directory was tracked inside this source repo. Beads should live in an external workspace (~/workspaces/allagents-ws/.beads) accessed via bd, never initialized or committed inside the upstream source repo. NTM/Beads coordination is now handled by a dedicated skill, so the repo docs no longer describe it. - git rm --cached the tracked .beads files and delete the directory - gitignore .beads/ so it is never re-committed (matches agentv pattern) - remove the 'NTM & Beads Coordination' subsection from AGENTS.md (heading + all bullets); no lingering NTM/Beads references remain
850ec0f to
b67dc33
Compare
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.
What
Removes Beads tracking from the source repo and drops the NTM/Beads documentation (a dedicated skill now handles NTM/Beads, so the repo docs no longer describe it).
git rm --cachedthe four tracked files (.beads/.gitignore,.beads/config.yaml,.beads/issues.jsonl,.beads/metadata.json) and delete the directory.Why
Beads must live in an external workspace (
~/workspaces/allagents-ws/.beads) and never be tracked or initialized inside the upstream source repo. NTM/Beads coordination is now owned by a dedicated skill, so the repo docs should not describe it at all.Validation
git ls-files .beads→ empty.grep -i 'ntm\|beads' AGENTS.md CLAUDE.md→ no matches.bun run typecheck→ clean pass.bun run lint→ clean (85 files, no fixes).