kickstart
Installation
SKILL.md
Kickstart
Overview
Use this skill when setting up new project structures with consistent conventions.
Python App (Hatchling)
Use src layout with Hatchling, and keep package code isolated under src/{name}.
Suggested layout:
{project-root}/
├─ pyproject.toml
└─ src/
└─ {name}/
└─ __init__.py
Related skills