A set of Claude Code instructions for a dotfiles repository, which stores configuration files used to set up a developer's environment. It defines project boundaries and separate procedures for installing, upgrading, verifying, and developing the project.
Repository instructions for Claudex, a Rust program that manages several Claude Code instances and translates their API requests through a local proxy.
A software-development workflow plugin with 16 skills covering work from understanding requirements through implementation and review. It includes test-driven development, where tests are written to guide the code, and cooperation between multiple coding agents.
A collaborative skill for exploring requirements and turning unclear ideas into a structured spec.md design document. It uses Socratic questioning, a method based on guided questions.
A skill for carrying out tasks listed in a plan.md file, a Markdown checklist of planned work. It tracks completed tasks with checkboxes and runs a compile check after each batch of changes.
A decision guide for wrapping up a development branch, the separate line of code changes used for a task. It helps choose whether to merge it, open a pull request, keep it, or discard it.
A development workflow that assigns each planned task to an independent subagent, another agent working on a smaller task. It performs separate checks for specification compliance and code quality.
A four-stage debugging method that investigates a problem, looks for patterns, tests possible causes, and then fixes the confirmed cause. Debugging means finding and correcting faults in software.
A test-first development method built around a repeated red, green, and refactor cycle. TDD means writing a failing test before the production code, making it pass, and then improving the design.
A skill for creating isolated Git worktrees, which are separate working directories linked to one repository. They let different branches be worked on without changing the current directory's files.
A method for turning design specifications into a detailed implementation plan called plan.md. It breaks the work into small tasks and follows principles that avoid repetition and unnecessary features.