Python-specific skills and workflows: two-tier sniff (pivot model), audit (aidd-dev:reviewer), improve, legacy, log-analysis, teach (Django/FastAPI).
Python code quality auditor. Detects the project stack via sniff (01-scan), loads the applicable Python knowledge pivots from the plugin, and delegates a structured code review to aidd-dev:reviewer using the pivots as acceptance criteria. Use when the user asks to: audit Python code, check Python best practices, review code quality, check my Python, audit Django/FastAPI conventions, check Pythonic compliance, or invokes /sc-python:audit. Does not install any files to .claude/rules/.
Analyzes the Python codebase for Pythonic idiom gaps, design pattern opportunities, and maintainability issues, then produces a prioritized improvement plan. Covers EAFP/LBYL patterns, proper type hints, async best practices, dependency injection, dataclasses vs NamedTuple, mutable default arguments, context managers, and framework idioms (Django, FastAPI). Use when the user says "how can I improve this", "is this Pythonic", "find anti-patterns", "code quality", "refactoring suggestions", "how to better structure this". Do NOT use for performance (web-optimize), data layer (data-optimize), version migrations (legacy), or line-by-line code review (aidd-dev:05-review).
Scans Python code for version-specific and deprecated patterns, then proposes an upgrade (toward Python 3.12+) or a downgrade (for target Python version compatibility). Handles Python 2 remnants (print statements, xrange, unicode, iteritems), typing evolution (PEP 484 → 604 → 695, Optional → X|None, List → list), old-style string formatting (% and .format() → f-strings), and framework version migrations (Django, FastAPI). Use when the user says "modernize", "upgrade to Python 3.12", "add type hints", "this is Python 2 style", "downgrade for 3.8 compat", or when deprecated patterns appear in the codebase. Do NOT use for dependency management (pip/poetry), performance optimization (web-optimize), or general refactoring unrelated to Python version compatibility.
Analyzes Python application logs across three environments: host filesystem (local), Docker containers (docker), and remote production server (prod via SSH). Works with Django request logs, uvicorn/gunicorn access logs, Python tracebacks, structlog JSON output, and Celery task logs. Auto-discovers Docker containers. Use when the user says "check logs", "Python errors", "find in logs", "log summary", "500 errors", "traceback in prod", "analyze logs", "what's wrong in prod". Do NOT use for application debugging (use aidd-dev:08-debug), DB queries (use data-optimize), or performance profiling.
Python stack detector. Reads requirements.txt, pyproject.toml, setup.py, Pipfile, and sentinel files (manage.py) to detect the framework (Django, FastAPI, Flask), ORM (Django ORM, SQLAlchemy), and capabilities including ActivityPub federation (activitypub/ module + httpx + cryptography). Uses a three-tier model: capability pivots (Python idioms) are loaded at audit time by /sc-python:audit and never written to disk; perf pivots (for web-optimize), data pivots (for data-optimize), and AP pivots (for ap-optimize) are installed selectively to .claude/rules/07-quality/. Emits a pivot manifeste for use by /sc-python:audit. Reports gaps when a capability is detected but no matching plugin pivot exists. Do NOT use to update a single rule manually — edit it directly instead.
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.
Marketplace personnelle de plugins Claude Code, qui inclut overlay du framework AIDD que j'utilise pour tous mes développements.
Ajouter dans ~/.claude/settings.json :
{
"extraKnownMarketplaces": {
"my-marketplace": {
"source": {
"source": "github",
"repo": "RebelliousSmile/my-claude-marketplace"
}
}
},
"enabledPlugins": {
"overcode@my-marketplace": true
}
}
Sur la machine de développement, utiliser une clé distincte avec
"source": "directory"et le chemin local — les modifications sont prises en compte sans push.
Si Claude Code demande « Enter marketplace source », saisir :
RebelliousSmile/my-claude-marketplace
Ajouter dans .claude/settings.json à la racine du projet :
{
"enabledPlugins": {
"sc-js@my-marketplace": true
}
}
Ou via commande dans le projet :
/plugin install sc-js@my-marketplace
Référence rapide par type de projet :
| Type de projet | Plugin à activer |
|---|---|
| Design system / UI mobile-first | design@my-marketplace |
| Documentation (guides, technique, cahier des charges) | doc-writer@my-marketplace |
| Web JavaScript / Nuxt / Vue | sc-js@my-marketplace |
| Web PHP | sc-php@my-marketplace |
| Web Python | sc-python@my-marketplace |
| Web Rust | sc-rust@my-marketplace |
| Intégrations SaaS (Firebase, Klaviyo, GTM…) | sc-tiers@my-marketplace |
| Jeu vidéo | gamedesign@my-marketplace |
| Projet rédactionnel | rpg-writer@my-marketplace |
| Projet avec Obsidian | obsidian@my-marketplace |
Le détail des skills de chaque plugin vit dans son propre README (colonne Doc) — ce tableau est l'index.
| Plugin | Doc | recommended | Description |
|---|---|---|---|
overcode | README · CHANGELOG | ✅ | Socle commun — workflows projet-agnostiques (alias, harvest, audits perf, readme, changelog…) |
design | README · CHANGELOG | — | Design system mobile-first : référence/brief → tokens, wireframes HTML, composants, audit, doctor/refactor (prod), export WordPress |
doc-writer | README · CHANGELOG | — | Documentation : guides utilisateur, documents techniques, cahiers des charges (specification) |
sc-js | README · CHANGELOG | — | Stack JavaScript : Nuxt / Vue SPA / Vite / Alpine / Astro |
sc-php | README · CHANGELOG | — | Stack PHP : Laravel / Symfony / WordPress / HTMX |
sc-python | README · CHANGELOG | — | Stack Python : Django / FastAPI / Flask |
sc-rust | README · CHANGELOG | — | Stack Rust : Axum / Actix-web |
sc-tiers | README · CHANGELOG | — | SaaS tiers : Firebase, Klaviyo, GTM, Clarity, PSI |
gamedesign | README · CHANGELOG | — | Game design (8-MINE) : timelines dialogiques, bank d'assets |
rpg-writer | README · CHANGELOG | — | Rédaction narrative : concept, TOC, chapitres, ton, lore, relecture |
obsidian | README · CHANGELOG | — | Notes Obsidian — projets Pro, JDR solo (PJ, scénarios, prep de campagne, jeu en direct), tri d'emails |
supprimer le répertoire ~/.claude/plugins/cache/my-marketplace/<plugin>/ et réinstaller via /plugin install <plugin>@my-marketplace. |
npx claudepluginhub rebellioussmile/my-claude-marketplace --plugin sc-pythonSource des skills natives Hermes Agent (Nous Research, agentskills.io). solo-mc (MJ JDR solo en direct, agent unique, modules oracle/narrateur) est déployée vers ~/.hermes/skills/ — pas exécutée par Claude Code (variante Claude Code : obsidian:solo-mc).
Rust-specific skills and workflows: two-tier sniff (pivot model), audit (aidd-dev:reviewer), improve, legacy, log-analysis, teach (Axum/Actix + SQLx/Diesel).
Extends the AIDD framework with project-agnostic workflows: interactive codebase quiz (dig), memory maintenance (harvest, reconcile-normative), obsolescence detection (taste), prospective analysis (foresee), behavioural-test harness (behave), performance audits (data-optimize, web-optimize, ap-optimize), SEO/GEO audits (seo-optimize), project health reporting (status), and planning utilities (decompose, journey, changelog, end-plan). Alias chains: rechallenge, endtask, bump-plugin, previously, smarten, skillconf, weeklyemail, gitit, mirror.
PHP ecosystem skills: sniff, audit, improve, legacy, teach. design-bridge: réceptacle du pivot design (enforce → linter PHP/WP natif + pre-commit ; diffuse → block pattern WP + theme.json).
Personal Obsidian notes management — project lifecycle, sessions, meetings, invoices, RAG export; email triage; solo TTRPG domain tooling (pc, rpg, solo-mc) on autonomous local game domains; the Documents/ organiser tree (cache-based: index, check, fix, sort); and brief/lore/data assembly for writing: brief (builds the portable _brief/ working dir), forge (concept), research (data), lore-extract, rules-keeper, extract-pdf.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Design fluency for frontend development. 1 skill with 23 commands (/impeccable polish, /impeccable audit, /impeccable critique, etc.) and curated anti-pattern detection.
UI/UX design intelligence. 67 styles, 161 palettes, 57 font pairings, 25 charts, 15 stacks (React, Next.js, Vue, Svelte, Astro, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, Nuxt, Jetpack Compose). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.