environment-triage

parcadei/continuous-claude-v3 · updated Apr 8, 2026

$npx skills add https://github.com/parcadei/continuous-claude-v3 --skill environment-triage
0 commentsdiscussion
summary

When uv sync or pip install behaves unexpectedly, check the actual interpreter.

skill.md

Environment Triage

When uv sync or pip install behaves unexpectedly, check the actual interpreter.

Pattern

System Python is not authoritative if uv/venv selects a different interpreter.

DO

# What uv ACTUALLY uses
uv run python --version

# What's pinned (this controls uv)
cat .python-version

# Confirm package is installed
uv pip show <package>

# Confirm import works in uv context
uv run python -c "import <package>; print(<package>.__version__)"

Common Fix

If optional deps require Python 3.12+ but .python-version is 3.11:

echo "3.13" > .python-version
rm -rf .venv && uv venv && uv sync --all-extras

DON'T

  • Trust python3 --version when using uv
  • Assume install succeeded without verifying import
  • Debug further before checking interpreter version

Source Sessions

  • 2243c067: symbolica-agentica skipped due to python_version >= 3.12 marker, but uv was using 3.11
  • 4784f390: agentica import failures traced to wrong interpreter

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.840 reviews
  • Kabir Bhatia· Dec 20, 2024

    Useful defaults in environment-triage — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Henry Gill· Dec 16, 2024

    environment-triage fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Kabir Reddy· Dec 12, 2024

    environment-triage is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Shikha Mishra· Dec 8, 2024

    I recommend environment-triage for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Yash Thakker· Nov 27, 2024

    environment-triage fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Mia Mehta· Nov 27, 2024

    Registry listing for environment-triage matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Kabir Harris· Nov 7, 2024

    I recommend environment-triage for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Ira Gonzalez· Nov 3, 2024

    Keeps context tight: environment-triage is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Kabir Anderson· Oct 26, 2024

    Solid pick for teams standardizing on skills: environment-triage is focused, and the summary matches what you get after install.

  • Noah Brown· Oct 22, 2024

    We added environment-triage from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

showing 1-10 of 40

1 / 4