xdg-claude
01Plugin Claude Code
Plugin marketplace listing 18 plugins: coding-best-practices, code-review-agent, context-efficient-tools, elements-of-style, git-commit-agent.
Plugin Claude Code
Plugin marketplace listing 18 plugins: coding-best-practices, code-review-agent, context-efficient-tools, elements-of-style, git-commit-agent.
Settings file Claude Code
Agent settings configuring enabledPlugins.
Instructions file
Instructions for xdg/xdg-claude, covering xdg-claude — plugin marketplace repository, authoring or revising a plugin and repository conventions (apply to every change here).
Plugin Claude Code
Implement TODO.md items one checkbox at a time via isolated subagents, with adversarial verification, code review, human-in-the-loop checks, and per-subsection commits.
Skill Claude CodeCodex
Implement TODO.md items via isolated subagents, then adversarially verify correctness. Drives a phased loop that implements one checkbox at a time, runs independent lint/test/review subagents, handles human verification, and commits per subsection.
Plugin Claude Code
Injects writing style guidance at session start to avoid common AI writing patterns.
Hook
Runs when a session starts, executing session-start.sh. From xdg/xdg-claude.
Plugin Claude Code
Code review agent for analyzing code quality, security, performance, and maintainability.
Agent
Reviews code for correctness, security, performance, and maintainability. Use when the user asks for a code review, PR review, or critical look at recent changes.
Skill Claude CodeCodex
Analyze code quality, security, performance, and maintainability.
Skill Claude CodeCodex
When the user asks for a code review, PR review, or critical look at recent changes, consult this skill to decide whether to delegate to the code-review subagent and how to craft the prompt.
Plugin Claude Code
Injects coding best practices from Philosophy of Software Design and The Art of Readable Code at session start and on subagent dispatch.
Plugin Claude Code
CLI tool skills that minimize context usage through targeted extraction instead of reading entire files.
Skill Claude CodeCodex
Structural code search and refactoring via ast-grep. Reach for this when Edit fails with "oldstring not unique", when refactoring across formatting variations, or when matching code shape rather than text.
Skill Claude CodeCodex
Outline a file or package (functions, classes, methods, types, imports, exports) instead of reading it whole. Use before opening an unfamiliar or large file to orient, when surveying a package's API surface, or to find where a symbol is defined so you can Read just that range -- any "what's in / list / show me the…
Skill Claude CodeCodex
Extract a known field from a JSON file by running jq instead of reading the whole file.
Skill Claude CodeCodex
Search code and text files via ripgrep (rg) in Bash. Prefer rg over the Grep tool: rg gives full unredacted output, supports pipe composition, and exposes flags Grep does not (-F, -w, -L, -v).
Skill Claude CodeCodex
Extract a known field from a YAML file by running yq instead of reading the whole file.
Plugin Claude Code
Record durable engineering decisions in an append-only decision log, with a fixed entry template and consent before creating the log in an unfamiliar repo.
Skill Claude CodeCodex
Record a durable engineering decision in the repo's append-only decision log (docs/decisions.md by default). Use after choosing between real alternatives — a dependency, a version pin, an architecture or protocol choice, a deliberate non-implementation, or a reversal of an earlier decision. Also use when the user says…
Plugin Claude Code
Injects writing style guidance from The Elements of Style at session start.
Plugin Claude Code
Enforce golangci-lint: run on Stop, block git commit on failure, block //nolint directives and edits to .golangci.yml.
Plugin Claude Code
Git commit agent with intelligent change analysis and commit message conventions.
Agent
Stages and commits current working changes with a well-formed message. Use when the user asks to commit, check in, or save changes.