npx skills add smithery/parcadei --skill environment-triage
parcadei/continuous-claude-v3
environment-triage
Environment Triage
Installation
npx skills add parcadei/continuous-claude-v3 --skill environment-triage
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Execute mcloud environments commands to list, get, create, delete, redeploy, or trigger builds …
10 installsCreate reproducible, cross-platform (macOS/Linux) development environments with Flox, a declara…
4.9K installsUse this skill when running PixiJS v8 outside a standard browser: Web Workers, OffscreenCanvas,…
4K installsComprehensive market environment analysis and reporting tool. Analyzes global markets including…
2.5K installsValidate and configure the local Salesforce development environment. Runs a prerequisite scan s…
2.3K installsSet up a working ML training/inference environment on NVIDIA DGX Spark (GB10, aarch64, CUDA 13)…
1.3K installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,086 B -
docs
SUMMARY.md41 B
History
- First seen on skills.sh
- First recorded snapshot · 471 installs
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 --versionwhen 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.12marker, but uv was using 3.11 - 4784f390: agentica import failures traced to wrong interpreter