Rem's buddy — reusable Claude Code skills packaged as a plugin marketplace. Install once, use across all projects.
Add to your Claude Code plugins:
/plugins add /Users/remihuguet/workspaces/rems-buddy
Or add to .claude/settings.json:
{
"plugins": ["/Users/remihuguet/workspaces/rems-buddy"]
}
Strict red-green workflow: write a failing test reproducing the bug, implement minimal fix, run full suite, commit.
/bugfix users can log in with expired tokens
Commands: /commit, /commit-push
Always-on skill: conventional commit message formatting rules.
Always-on guidance for domain naming, intent-revealing identifiers, comment strategies, and minimal docstrings.
Three skills providing always-on guidance:
Six skills for Python backend architecture:
Always-on prompt interpretation: resolve ambiguity from context, decompose vague requests, minimize unnecessary questions.
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest (name, description, version, author)
├── commands/ # On-demand slash commands
│ └── my-command.md
├── skills/ # Always-on behavioral guidance
│ └── my-skill/
│ └── SKILL.md
└── README.md
.claude-plugin/plugin.json with name, description, version, and authorskills/<skill-name>/SKILL.mdcommands/<command-name>.md with YAML frontmatter.claude-plugin/marketplace.jsonmarketplace.json are relative to the plugin source (e.g., ./skills/my-skill)Runs pre-commands
Contains inline bash commands via ! syntax
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub remihuguet/rems-buddy --plugin bugfixCoding conventions for self-documenting code: naming, comments, docstrings
Conventional commit and push workflows with always-on commit conventions
Python backend architecture: hexagonal layers, DDD, CQRS, event-driven patterns
Always-on prompt interpretation: resolve ambiguity from context, decompose vague requests, minimize unnecessary questions
Python testing conventions, philosophy, and organization with pytest
Find and fix a bug. Default is the careful path (reproduce, investigate, test). Add `--fast` for emergency hotfix mode.
Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.
Battle-tested skills, agents, and commands for Claude Code — TDD workflows, systematic debugging, code review, and parallel task execution.
Implementation workflow skills: feature, fix, refactor, plan, debug
Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.
Interactive debugging workflow with git bisect integration