developer-plugins-integration

Solid

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).

Code & Development 3 stars 2 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 79/100

Stars 20%
20
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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...

Details

Author
AppVerk
Repository
AppVerk/av-marketplace
Created
6 months ago
Last Updated
4 days ago
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category