Orchestrate complete Python dev environment setup by invoking specialized generator skills. Creates pyproject.toml, config/settings.py, .pre-commit-config.yaml, and Makefile.local.
Orchestrates complete Python development environment setup by generating configuration files and creating a virtual environment.
npx claudepluginhub jugrajsingh/skillgardenThis skill is limited to using the following tools:
Orchestrates complete Python dev environment setup by invoking specialized generator skills.
curl -LsSf https://astral.sh/uv/install.sh | shwhich uv
If not found, instruct user to install uv first.
Glob: pyproject.toml, config/settings.py, .pre-commit-config.yaml, Makefile.local
Report what exists vs what will be created.
If no pyproject.toml:
Invoke the pysmith:generating-pyproject skill and follow it exactly.
This generates:
[project] with dependencies[dependency-groups] with dev deps[tool.*] configurations for ruff, pytest, mypy, coverageIf no config/settings.py:
Invoke the pysmith:generating-settings skill and follow it exactly.
This generates:
config/settings.py - Settings class with selected sectionsexample.env.yaml - Configuration template.gitignore for *.env.yamlIf no .pre-commit-config.yaml:
Invoke the pysmith:generating-precommit skill and follow it exactly.
This generates:
.pre-commit-config.yaml with gitleaks, pip-audit, ruff hooksIf no Makefile.local:
Invoke the makesmith:generating-local skill and follow it exactly.
This:
Makefile.local with all dev commandsUV_PROJECT_ENVIRONMENT for chosen venv locationAfter all configs are generated, run the setup via Makefile.local:
make -f Makefile.local setup-local
This executes:
create-venv - Creates venv at configured locationinstall-dev - Runs uv sync to install all dependenciesinstall-hooks - Runs pre-commit install============================================================================
Python Local Environment Ready
============================================================================
Files created/updated:
✓ pyproject.toml - Dependencies + tool configs
✓ config/settings.py - Pydantic Settings
✓ example.env.yaml - Configuration template
✓ .pre-commit-config.yaml - Pre-commit hooks
✓ Makefile.local - Dev commands
Virtual environment:
Location: {venv_location}
Python: {python_version}
Next steps:
1. cp example.env.yaml local.env.yaml
2. Edit local.env.yaml with your settings
3. make -f Makefile.local test
Common commands:
make -f Makefile.local help # Show all targets
make -f Makefile.local test # Run tests
make -f Makefile.local lint # Check code
make -f Makefile.local format # Format code
============================================================================
If some files already exist, the orchestrator:
make -f Makefile.local setup-local to ensure venv is readyIf uv not installed:
Error: uv is not installed.
Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
Or see: https://docs.astral.sh/uv/getting-started/installation/
If generator skill fails:
This orchestrator invokes these skills in order:
pysmith:generating-pyprojectpysmith:generating-settingspysmith:generating-precommitmakesmith:generating-localEach skill handles its own user interactions (merge vs overwrite, section selection, etc.).
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.