Python scaffold
A collection of Claude Code skills for iOS, MERN, NEAN, and shared development workflows
npx -y skills add edfenton/claude-skills --skill python-scaffoldAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Add Python VS Code workspace config to a project. Composable — works standalone or merges into existing .vscode/ from a prior kit scaffold.
SKILL.md
2.4 KB, 513 tokens by cl100k_base, as published. Nobody here has run it
Purpose
Configure VS Code for Python development by creating or merging .vscode/settings.json and .vscode/extensions.json. Designed to compose with /mern-scaffold, /nean-scaffold, or /ios-scaffold — or run standalone for Python-only projects.
Template-first rule
Use files from templates/ as the source of truth for Python VS Code config.
Templates provide:
- VS Code workspace settings (interpreter path, pytest, Ruff, Black formatter)
- VS Code extension recommendations (Python, Pylance, Ruff, Black, mypy, coverage gutters)
What gets created or merged
<project>/
└── .vscode/
├── settings.json # Python workspace settings (merged if exists)
└── extensions.json # Python extension recommendations (merged if exists)
Scaffold steps
1. Detect virtual environment location
- Check if
.venv/directory exists in the project root - If not, check if
venv/directory exists - Use whichever exists; default to
.venv/if neither exists yet - Update the
python.defaultInterpreterPathvalue in settings template accordingly
2. Handle .vscode/extensions.json
If .vscode/extensions.json already exists (from a prior kit scaffold):
- Read the existing file
- Parse the
recommendationsarray - Append Python recommendations from the template (deduplicate — skip any already present)
- Write back the merged file
If .vscode/extensions.json does not exist:
- Copy
templates/.vscode/extensions.jsondirectly
3. Handle .vscode/settings.json
If .vscode/settings.json already exists (from a prior kit scaffold):
- Read the existing file
- Merge Python-specific keys from the template into the existing object:
python.defaultInterpreterPathpython.testing.pytestEnabledpython.testing.pytestArgsruff.enable[python]formatter and code actions block
- Do NOT overwrite existing keys from the prior scaffold
- Write back the merged file
If .vscode/settings.json does not exist:
- Copy
templates/.vscode/settings.jsondirectly (with venv path adjusted per step 1)
Output
Summarize: what was created vs merged, venv path used, and list the recommended extensions.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.