← ClaudeAtlas

developer-plugins-integrationlisted

Detects installed developer plugins (python-developer, frontend-developer, php-developer) and project stack, then provides a list of relevant skills to load for code review and fix workflows. Supports Python (FastAPI, SQLAlchemy, Pydantic, Django, Celery, asyncio, uv), Frontend (React, Tailwind, Zustand, TanStack, pnpm), and PHP (Symfony, Doctrine, DDD).
AppVerk/av-marketplace · ★ 3 · Code & Development · score 79
Install: claude install-skill AppVerk/av-marketplace
# Developer Plugins Integration - Detection & Skill Loading Detects installed developer plugins and project stack, then provides a list of relevant skills to load for code review and fix workflows. Acts as the bridge between the code-review plugin and specialized developer plugins (python-developer, frontend-developer, php-developer). --- ## Overview This skill is the detection and integration layer between the code-review plugin and developer plugins. It performs three tasks: 1. **Stack Detection** - Identifies which technology stacks are present in the project (Python, Frontend/React, PHP) 2. **Plugin Detection** - Checks which developer plugins are installed and available in the current session 3. **Skill Resolution** - Produces a list of skills to load, based on detected stack and available plugins The output is consumed by the review command, auditors, and fix workflows to ensure framework-specific patterns are enforced during code review. --- ## Stack Detection ### Step 1: Detect Python Stack **ALWAYS check these files in project root and first-level subdirectories:** ```bash echo "=== Python Stack Detection ===" PYTHON_DETECTED=false # Project root [ -f "pyproject.toml" ] && echo "FOUND: pyproject.toml (modern Python)" && PYTHON_DETECTED=true [ -f "setup.py" ] && echo "FOUND: setup.py (legacy Python)" && PYTHON_DETECTED=true [ -f "setup.cfg" ] && echo "FOUND: setup.cfg (legacy Python)" && PYTHON_DETECTED=true [ -f "requirements.txt" ] && echo "FOUND: requir