← Browse

@signalpilot-labs/env-setup

B

Use when setting up a project environment — installing dependencies, verifying builds, detecting the tech stack. Covers Phase 0 of a new session.

skillclaude

Install

agr install @signalpilot-labs/env-setup --target claude

Writes 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:

FileIndicates
package.jsonNode project — run npm ci
pyproject.tomlPython project — run pip install -e . or uv pip install -e .
requirements.txtPython deps — run pip install -r requirements.txt
Cargo.tomlRust project — run cargo build
go.modGo project — run go mod download

Check CLAUDE.md and README.md first — they may specify exact setup commands.

Install Order

  1. Read project config files
  2. Install backend dependencies
  3. Install frontend dependencies (if separate)
  4. Run the build to verify it works
  5. 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, or Dockerfile that 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