agent-context-files
Agent Context Files
Create concise context files that help coding agents understand a repository without flooding every session with stale or low-value instructions.
Core Principles
- Less is more: keep the always-loaded file short, ideally under 100 lines and usually under 300.
- Answer WHAT, WHY, and HOW: project purpose, structure, stack, and verification commands.
- Use progressive disclosure: link to detailed docs instead of copying them into the context file.
- Prefer pointers over snippets: reference real files and commands that stay maintained by the project.
- Avoid policy duplication: do not restate linter, formatter, or test rules that the tooling already enforces.
Workflow
Create A New Context File
- Identify the target runtime or file name from the user's request.
- Explore the repository structure and existing docs.
- Identify the tech stack, project purpose, key directories, and common commands.
More from deanthompson/agent-skills
git-workflow
Use when the user wants Git workflow help around committing, rebasing, creating linked worktrees, bootstrapping a worktree environment, or cleaning up branches/worktrees. Covers smart conventional commits, grouping changes into focused commits, safe rebases, linked worktree setup under .worktrees, optional environment reuse through symlinks, branch cleanup, and safe local branch deletion without destructive reset operations.
1gitlab-mr
Use when the user wants to create a GitLab merge request, draft an MR title and description, compare the current branch against a target branch, push the branch, or run `glab mr create`. Covers previewing the generated MR copy and confirming before creation.
1cloudflare-dns-manager
Manage Cloudflare DNS zones, DNS records, and Cloudflare single redirect rules through the official API. Use when an agent needs to inspect Cloudflare zones, list DNS records, create or update SPF/DKIM/DMARC/MX/CNAME/TXT records, delete records, configure www-to-apex redirects, export zones, or prepare DNS changes for domains hosted on Cloudflare, especially when the account contains multiple zones.
1