Generate project templates with lint CI and structure
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill project-scaffolding --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Project Scaffolding?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-project-scaffolding)More formats (shields.io, HTML) on the badges page.
---
name: project-scaffolding
description: "Generate project templates with lint CI and structure"
---
# Project Scaffolding
## Python Package Template
```bash
mkdir myproject && cd myproject
mkdir src/myproject tests
touch src/myproject/__init__.py src/myproject/main.py
touch tests/__init__.py tests/test_main.py
```
## Essential Files
```bash
cat > README.md << 'EOF'
# Project
EOF
cat > .gitignore << 'EOF'
__pycache__/ .venv/ .env dist/
EOF
```
## CI Template
```yaml
# .github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install -e ".[dev]"
- run: pytest
- run: ruff check .
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!