Curated skills, rules, and hooks for Claude Code — coding with taste
npx claudepluginhub eugeniosegala/claude-connoisseurA collection of skills, rules, hooks and more for Claude Code, curated with taste for good coding!
A collection of skills, rules, hooks and more for Claude Code, curated with taste for good coding!
Add the marketplace and install the plugin from within Claude Code:
/plugin marketplace add eugeniosegala/claude-connoisseur
/plugin install claude-connoisseur@eugeniosegala-claude-connoisseur
Third-party plugins do not auto-update by default. To get the latest version:
/plugin update claude-connoisseur@eugeniosegala-claude-connoisseur
To enable auto-updates, open /plugin → Marketplaces tab → select the marketplace → Enable auto-update.
/codex-review, /functional, etc. in the command palette. The full namespaced form (
/claude-connoisseur:codex-review) also works if you need to disambiguate from other plugins.Write or Edit — formatters are detected at runtime, so if a
formatter isn't installed it is silently skipped.mkdir -p .claude/rules
curl -o .claude/rules/coding-style.md https://raw.githubusercontent.com/eugeniosegala/claude-connoisseur/refs/heads/main/rules/coding-style.md
| Rule | Description |
|---|---|
| coding-style | Enforces consistent code style, modern syntax, meaningful comments, modularity, and test discipline across any language |
These skills modify code when invoked.
| Skill | Command | Can Claude invoke | Description |
|---|---|---|---|
| functional | /functional <files> | No | Convert specified files to functional programming style |
| object-oriented | /object-oriented <files> | No | Convert specified files to object-oriented programming style |
| testify | /testify [files] | Yes | Write and improve tests — reuse existing patterns, ensure consistency and quality |
| test-runner | /test-runner [files] | No | Run tests, fix failures, and re-run until the suite passes |
| learnify | /learnify <files> | No | Isolate a function or code block into a self-contained, runnable script for study |
| proofread | /proofread <files> | No | Fix grammar and improve writing while preserving the author's original voice |
These skills are read-only — they analyse code and report findings without making changes.
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations