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
1---2name: environment-triage3description: Environment Triage4---56# Environment Triage78When `uv sync` or `pip install` behaves unexpectedly, check the actual interpreter.910## Pattern1112System Python is not authoritative if uv/venv selects a different interpreter.1314## DO1516```bash17# What uv ACTUALLY uses18uv run python --version1920# What's pinned (this controls uv)21cat .python-version2223# Confirm package is installed24uv pip show <package>2526# Confirm import works in uv context27uv run python -c "import <package>; print(<package>.__version__)"28```2930## Common Fix3132If optional deps require Python 3.12+ but .python-version is 3.11:3334```bash35echo "3.13" > .python-version36rm -rf .venv && uv venv && uv sync --all-extras37```3839## DON'T4041- Trust `python3 --version` when using uv42- Assume install succeeded without verifying import43- Debug further before checking interpreter version4445## Source Sessions4647- 2243c067: symbolica-agentica skipped due to `python_version >= 3.12` marker, but uv was using 3.1148- 4784f390: agentica import failures traced to wrong interpreter
Run npx skillmds@latest add vibeeval/environment-triage in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Environment Triage It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
vibeeval (@vibeeval) published this skill. Their other Agent Skills are listed on their SkillMD profile.