chore: drop per-repo agent docs and tool-specific config#73
Merged
lukeocodes merged 2 commits intomainfrom May 8, 2026
Merged
Conversation
Removes tool-specific Claude Code config (.claude/commands/*.md and .claude/settings.json) from the repo. The DX direction is agent- agnostic — instructions live in AGENTS.md (read by every agent that supports the convention) and skills come from the deepgram/skills repo via 'dg skills install'. There's no longer a reason to ship Claude Code-specific slash commands here.
Removes the per-repo agent instruction files. The dx-stack convention
is that one canonical AGENTS.md (in deepgram/dx-stack) covers cross-
repo architecture; per-repo agent docs duplicate content that already
lives in README.md (architecture, packages, dev commands) or in
CONTRIBUTING.md (release process, code style).
CLAUDE.md (76 lines) was a tool-specific pointer to AGENTS.md plus DX
stack rules already encoded in deepgram/dx-stack docs. AGENTS.md (630
lines) duplicated the README's architecture and packages sections,
plus rules now enforced by CI (make check, release-please version
markers) or by the dg CLI itself (dg skills update).
Updates two dangling references so README/CONTRIBUTING don't 404:
- README.md: 'See AGENTS.md for detailed architecture and
conventions' -> 'See CONTRIBUTING.md for the contributor workflow'
- CONTRIBUTING.md: drops the trailing 'See AGENTS.md' line — the
surrounding section already describes the new-package checklist
in full
The .github/prompts/pr-interface-review.md mention is a generic cross-
repo example list ('if the repo has compat-tracking docs e.g. AGENTS.md
...') and remains correct as-is.
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
Removes per-repo agent instruction files and tool-specific Claude Code config:
Plus fixes two dangling references that would have 404'd:
The `.github/prompts/pr-interface-review.md` reference is a generic cross-repo example list ("if the repo has compat-tracking docs like `AGENTS.md`, `CHANGELOG.md`, `MIGRATION.md`...") and stays correct as-is.
Why
The DX direction is agent-agnostic and consolidates onto one canonical AGENTS.md in `deepgram/dx-stack`, which covers cross-repo architecture for every DX service.
Per-repo agent docs duplicate content that already lives elsewhere:
Shipping our own AGENTS.md alongside the canonical dx-stack one means two sources of truth that can drift; deleting solves that.
Net diff
```
11 files changed, 1 insertion(+), 776 deletions(-)
```
Single insertion is the README pointer rewrite to CONTRIBUTING.md.