python-refactor

Custom Claude Code plugin repository with development workflow agents and skills

Installation
CLI
npx skills add https://github.com/acaprino/alfio-claude-plugins --skill python-refactor

Installez cette compétence avec la CLI et commencez à utiliser le flux de travail SKILL.md dans votre espace de travail.

Dernière mise à jour le 4/22/2026

ACP - Alfio Caprino Claude Code Plugins

39 specialized plugins for Claude Code -- so you spend less time prompting and more time shipping.

License: MIT
Marketplace
Plugins
Agents
Skills
Commands


Why ACP?

  • Domain experts, not generic prompts -- each plugin encodes months of specialized knowledge (Python, Rust, React, security, SEO, legal...)
  • Multi-agent orchestration -- code review fires architecture, security, and pattern analysis in parallel
  • End-to-end workflows -- chain brainstorming, planning, implementation, review, and cleanup into single commands
  • Install only what you need -- every plugin is independent, no runtime dependencies
  • Community-driven -- MIT licensed, upstream-synced with projects from Anthropic, Vercel, and others

Quick Start

# Add the marketplace
claude plugin marketplace add acaprino/alfio-claude-plugins

# Install the plugins you need
claude plugin install python-development@alfio-claude-plugins
claude plugin install senior-review@alfio-claude-plugins
claude plugin install frontend@alfio-claude-plugins

That's it. Plugins activate automatically when relevant -- or invoke them directly:

# Slash commands
/code-review          # Multi-agent architecture + security + pattern review
/agent-teams:team-feature  # Decompose -> spawn agents -> implement -> verify
/python-scaffold      # Scaffold a production-ready Python project

# Agents
"Use the python-engineer agent to implement rate limiting"
"Ask the rust-engineer to review my Tauri backend"

Plugins

Plugin Description A S C
python-development TDD, refactoring, async patterns, packaging, performance, dead code, Pydantic v2, /python-audit 3 9 3
senior-review 8 agents review architecture, security, patterns, distributed flows, logic integrity, API contracts, startup cycles, and UI races in parallel 8 1 4
frontend UI polish, layout design, modern CSS, web strategy, Radix/shadcn/daisyUI 3 5 1
codebase-mapper Generate 10 narrative docs with Mermaid diagrams from any codebase 10 1 4
ai-tooling Brainstorm, plan, execute, optimize prompts, Agent SDK 1 5 1
tauri-development Tauri 2 desktop + mobile, Rust backend, IPC optimization 3 1 -
digital-marketing SEO + AEO (AI Overviews/Perplexity/ChatGPT Search), GA4/GTM with Consent Mode v2, content strategy, brand naming, domain hunting, text humanization 5 5 6
react-development React 19 performance, state management, bundle optimization 1 1 1
rag-development RAG system design -- chunking, embeddings, vector DBs, advanced patterns 2 1 1
marketplace-ops Audit, scaffold, review, and manage plugins in this ecosystem 1 2 4
learning Mind maps in MarkMind format and interactive force-graphs - 3 1
deep-dive-analysis 7-phase systematic codebase analysis with pattern detection - 1 1
git-worktrees Parallel development with git worktrees -- create, pause, resume, merge 1 1 1
business Tech law, compliance, privacy docs, contracts, SaaS business planning 3 1 -
stripe Stripe payments, subscriptions, Connect, revenue optimization 2 1 -
research Quick search and deep multi-source investigation with shared web-search techniques skill 2 1 -
project-setup Create and maintain CLAUDE.md with ground truth verification 1 - 2
clean-code Rewrite code for readability without changing behavior 1 - 1
app-analyzer Analyze Android apps via ADB and webapps via Playwright 1 - -
xterm Build and debug xterm.js terminal emulators - 1 2
obsidian-development Pass ObsidianReviewBot on first try - 3 -
typescript-development TypeScript engineer agent, best practices, Knip dead code detection, and enterprise TypeScript mastery 1 3 -
system-utils Clean up messy folders, find duplicates - 1 1
messaging RabbitMQ queue design and AMQP patterns 1 - -
csp Scheduling, routing, assignment with OR-Tools CP-SAT 1 - -
browser-extensions Firefox extensions with Manifest V2/V3, /firefox-scaffold /firefox-lint /firefox-publish 1 1 3
playwright-skill General-purpose browser automation with Playwright - 1 -
cc-usage Token usage, costs, and billing analysis - 1 1
prompt-improver Enrich vague prompts with research-based questions - 1 -
acp-hooks Session hooks -- startup branding, skill awareness, security gate - - -
docs Craft top-tier README.md files - 1 1
testing TDD methodology, E2E testing patterns, behavior-driven test generation 1 2 -
platform-engineering Cross-platform security (passkeys/WebAuthn, Electron Fuses), architecture, and performance rulebook + /platform-review 1 1 1
ibkr-trading Interactive Brokers algotrading -- TWS API, ib_async, order execution 1 1 1
mt5-trading MetaTrader 5 Python algotrading -- API, polling events, order execution 1 1 1
opentelemetry OpenTelemetry Python -- distributed tracing, context propagation, exporters, /otel-audit 1 1 1
docker Optimized multi-stage Dockerfiles for any language or framework - 1 -
grabber-development Python web scraping -- coordinator + 3 specialists (stealth browser, HTTP fingerprint, AI scraping), anti-bot bypass 4 1 -
agent-teams Orchestrate multi-agent teams for parallel code review, debugging, codebase mapping, and coordinated feature development 4 6 10

A = Agents, S = Skills, C = Commands


How Plugins Work
Type What it is How to use
Agent A specialized AI persona with domain expertise Use the python-engineer agent to implement rate limiting
Skill A knowledge module Claude references automatically Activates when the task matches its trigger keywords
Command A slash command that kicks off a workflow /code-review, /python-scaffold, /agent-teams:team-feature

Plugins are pure Markdown with optional JS/Python helper scripts. No build step, no runtime framework.

Project Structure
acp/
├── .claude-plugin/
│   └── marketplace.json       # plugin registry
├── docs/plugins/              # per-plugin documentation
├── plugins/
│   ├── python-development/
│   │   ├── agents/            # .md files with YAML frontmatter
│   │   ├── skills/            # SKILL.md + optional references/
│   │   └── commands/          # slash-command .md files
│   ├── senior-review/
│   ├── frontend/
│   └── ...                    # 39 plugins total
├── LICENSE
└── README.md
Local Development Install
git clone https://github.com/acaprino/alfio-claude-plugins.git
claude plugin install ./acp/plugins/python-development

Contributing

  1. Fork the repository
  2. Add your agent/skill/command following existing patterns
  3. Register it in marketplace.json
  4. Submit a pull request
Agent Template
---
name: agent-name
description: When and how to use this agent
model: opus
tools: Read, Write, Edit, Bash, Glob, Grep
color: blue
---

Agent system prompt here...
Skill Template
---
name: skill-name
description: When this skill activates
---

# Skill Name

Instructions, references, and domain knowledge...

MIT License - LICENSE

Built by Alfio