A Claude Code plugin for Python development with architecture design, coding guidelines, testing patterns, and specialized review agents.
/plugin install python-dev@DmitriyYukhanov/claude-pluginsThis plugin delegates to standard Claude Code plugins for enhanced functionality:
| Agent | Delegates To | Purpose |
|---|---|---|
python-reviewer |
feature-dev:code-reviewer |
General code quality, logic, and bug detection |
Required plugins (install from official marketplace):
/plugin install feature-devThe Python agents apply domain-specific patterns first, then delegate to general-purpose agents for comprehensive coverage.
Orchestrates a complete Python development workflow:
- Discovery - Analyzes project structure and requirements
- Architecture - Designs module structure, protocols, test stubs, Mermaid diagrams
- Implementation - Follows PEP 8 and Python coding guidelines
- Review - Python-specific code review for type safety, error handling, async
- Testing - pytest patterns, fixtures, mocking, coverage
- python-architect - Architecture patterns, protocols, Mermaid diagrams, test stub templates
- python-coder - PEP 8, type hints, naming conventions, async patterns
- python-testing - pytest patterns, fixtures, mocking strategies, coverage guidelines
- python-reviewer - Python-specific review, then chains to
feature-dev:code-reviewer
# Full development workflow
/python-dev Add REST API with FastAPI
# Individual phases
/python-dev architect only - Design a data pipeline
/python-dev review only - Review recent changes- Missing type hints on public functions
Anyusage without justification- Incorrect Optional handling
- Naming convention violations
- Import ordering
- Whitespace issues
- Bare except clauses
- Missing context managers
- Error logging without context
- Blocking calls in async code
- Floating coroutines
- Missing resource cleanup
MIT