soleri-env-setuplisted
Install: claude install-skill adrozdenko/soleri
# Environment Setup
Detect what a project needs, diagnose what's missing, and produce an actionable setup checklist.
## Overview
Scan the project root for configuration files, detect the tech stack and dependencies, identify gaps between what's required and what's present, then generate ordered setup steps. Offer to execute each step.
## When to Use
- Just cloned a repo and need to get it running
- Getting errors after pulling changes (missing deps, env vars, DB migrations)
- Onboarding to an unfamiliar project
- Setting up a project on a new machine
- Docker/container environment not starting
- Missing `.env` file or environment variables
## Check Vault for Known Setup Patterns
```
YOUR_AGENT_core op:search_intelligent
params: { query: "<tech stack> setup gotchas" }
YOUR_AGENT_core op:memory_search
params: { query: "environment setup <project>" }
```
## Detection Phase
Scan the project root and identify:
### Package Managers & Dependencies
| File | Stack | Install Command |
| ------------------ | ------- | ------------------------------------------------------------ |
| `package.json` | Node.js | `npm install` / `yarn` / `pnpm install` (check for lockfile) |
| `requirements.txt` | Python | `pip install -r requirements.txt` |
| `pyproject.toml` | Python | `pip install -e .` or `poetry install` or `uv sync` |
| `Pipfile` | Python | `pipenv install`