@signalpilot-labs/env-setup
BUse when setting up a project environment — installing dependencies, verifying builds, detecting the tech stack. Covers Phase 0 of a new session.
Install
agr install @signalpilot-labs/env-setup --target claudeWrites 1 file into .claude/skills/, pinned to git-067c861b.
- .claude/skills/env-setup/SKILL.md
Document
description: "Use when setting up a project environment — installing dependencies, verifying builds, detecting the tech stack. Covers Phase 0 of a new session."
Environment Setup
Stack Detection
Read these files to understand what needs to be installed:
| File | Indicates |
|---|---|
package.json | Node project — run npm ci |
pyproject.toml | Python project — run pip install -e . or uv pip install -e . |
requirements.txt | Python deps — run pip install -r requirements.txt |
Cargo.toml | Rust project — run cargo build |
go.mod | Go project — run go mod download |
Check CLAUDE.md and README.md first — they may specify exact setup commands.
Install Order
- Read project config files
- Install backend dependencies
- Install frontend dependencies (if separate)
- Run the build to verify it works
- Run tests to verify the environment is healthy
If Build Fails
- Read the error carefully — most setup failures are missing system deps or wrong versions
- Check if there's a
.tool-versions,.nvmrc, orDockerfilethat specifies required versions - If a dep is missing from the lockfile, do NOT add it yourself — flag it
Pre-installed Tools
See the verification-rules appended to build/review agent prompts for the full list. Key ones already in the sandbox: pytest, pyright, ruff, tsc, eslint. Do NOT pip/npm install these.
Trustgrade B
- passBody integrity
Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.
- passType matchnot applicable to this artifact type
Whether the artifact is really the kind of thing its metadata claims it is.
- passFreshness
How long since the source repository was last pushed to.
- passPrompt injection
Scans the artifact's own text for instructions aimed at your agent rather than at you.
- warnLicenseno SPDX license detected
Whether the source repository declares an SPDX license permissive enough to redistribute.
How the grade is calculated
Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:
- Aevery check passed
- Bone warning
- Ctwo warnings
- Dprompt injection or body integrity failed, or three warnings
- Fone of those failed, and something else is wrong
These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.
Versions
git-067c861b1e942026-07-31