bootstrap-python-service
4
总安装量
3
周安装量
#49887
全站排名
安装命令
npx skills add https://github.com/gaelic-ghost/python-skills --skill bootstrap-python-service
Agent 安装分布
codex
3
cline
2
github-copilot
2
kimi-cli
2
gemini-cli
2
cursor
2
Skill 文档
Bootstrap Python Service
Create production-oriented FastAPI starter layouts using shared uv project/workspace scaffolding.
Workflow
- Choose mode:
- Project: single FastAPI service scaffold.
- Workspace: multi-member uv workspace scaffold.
- Run
scripts/init_python_service.shwith explicit--nameand optional--path,--python,--force,--no-git-init,--initial-commit. - For workspace mode, optionally pass
--membersand--profile-map. - Verify quality checks:
uv run pytestuv run ruff check .uv run mypy .
- Return exact next run/test commands.
Commands
# Project mode (default)
scripts/init_python_service.sh --name my-service
# Project mode with explicit options
scripts/init_python_service.sh --name my-service --mode project --python 3.13 --path /tmp/my-service
# Workspace mode with defaults (core-lib package + api-service service)
scripts/init_python_service.sh --name platform --mode workspace
# Workspace mode with explicit members and profile mapping
scripts/init_python_service.sh \
--name platform \
--mode workspace \
--members "core-lib,billing-service,orders-service" \
--profile-map "core-lib=package,billing-service=service,orders-service=service"
# Allow non-empty target directory
scripts/init_python_service.sh --name my-service --force
# Skip git initialization
scripts/init_python_service.sh --name my-service --no-git-init
# Create initial commit
scripts/init_python_service.sh --name my-service --initial-commit
FastAPI Guidance
Use uv FastAPI integration style as primary guidance:
uv add fastapi --extra standard
uv run fastapi dev app/main.py
# optional production-style local run
uv run fastapi run app/main.py
Guardrails
- Refuse non-empty target directories unless
--forceis set. - Require
uvandgit(unless--no-git-initis set and no initial commit is requested). - Fail when workspace-only options are used in project mode.
- Fail when
--initial-commitis used with--no-git-init.
Defaults
- Mode:
project - Python version:
3.13 - Quality tooling:
pytest,ruff,mypy - Workspace defaults (when mode is
workspace): - Members:
core-lib,api-service - Profiles: first member
package, remaining membersservice
Resources
scripts/
init_python_service.sh: thin orchestrator that delegates tobootstrap-uv-python-workspacescripts.
references/
conventions.md: runtime, dependency, and quality defaults.
assets/
README.md.tmpl: README template for service-focused output.