一键导入
new-python-project
Scaffold a fresh Python project — folder, virtualenv, .gitignore, README, git init (use when the user wants to start a new Python project)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scaffold a fresh Python project — folder, virtualenv, .gitignore, README, git init (use when the user wants to start a new Python project)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Sort a messy Downloads folder into per-type subfolders (use when the user says their Downloads is a mess / wants it organized)
Track down a bug methodically instead of guessing (use when the user reports something is broken / throwing / not working)
Stage changes and write a clean conventional commit message (use when the user wants to commit their work / says "commit this")
Read recent email and sort it into what actually needs a reply (use when the user asks what's in their inbox / to triage their email)
Move screenshots into YYYY-MM dated folders so the desktop/screenshots folder stops drowning (use when screenshots are piling up)
Research a topic across several sources and write a cited brief (use when the user asks you to research / "look into" / summarize a topic from the web)
| name | new-python-project |
| description | Scaffold a fresh Python project — folder, virtualenv, .gitignore, README, git init (use when the user wants to start a new Python project) |
| version | 1.0.0 |
| author | 0pen-sourcer |
| tools | ["create_directory","write_file","run_command"] |
Set up a clean Python project so the user can start coding immediately.
Ask only if not given: the project name and where to create it (default: a Projects or Code folder under the user's home, or the current working directory).
create_directory <location>/<name>.write_file these into the project:
README.md — # <name> + a one-line placeholder..gitignore — Python defaults: .venv/, __pycache__/, *.pyc, .env, dist/, build/, *.egg-info/.requirements.txt — empty (or the deps the user named).main.py — def main():\n ...\n\n\nif __name__ == "__main__":\n main()run_command in the project dir: create the venv — python -m venv .venv.run_command: git init (only if git is available; if not, skip and mention it).requirements.txt and run_command the venv pip install (.venv\Scripts\python -m pip install -r requirements.txt)..venv\Scripts\Activate.ps1 on PowerShell).