بنقرة واحدة
start-project
Scaffold a new project to standard defaults and converge it — one command from idea to working skeleton
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Scaffold a new project to standard defaults and converge it — one command from idea to working skeleton
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a Context Resume for handing work off to a new session or a different AI tool
Version-guarded commit protocol — secret scan, SemVer triangulation, metadata sync, runtime validation
Release protocol — verify version, changelog from commits, tag, push, announce
Spec-driven, phase-bounded development — implement exactly one approved phase, verify, stop
| name | start-project |
| description | Scaffold a new project to standard defaults and converge it — one command from idea to working skeleton |
Use when the user wants to begin a new project or asks "where do I start". Produce a working skeleton, not a plan document. Give the user one explicit "start here" command at the end.
pyproject.toml only (no setup.py/setup.cfg/requirements.txt): hatchling, [project.scripts] entry, version 0.1.0.src/<pkg>/__init__.py (with __version__ = "0.1.0"), __main__.py, cli.py (click, --version from package metadata).tests/ with one real smoke test that runs via pytest.README.md (purpose, install via pipx install ., usage), CHANGELOG.md (0.1.0 entry), LICENSE, .gitignore.git init, initial commit (feat: initial project scaffold).crules <language> so the swarm skeleton, AGENTS.md, shims, and skills deploy immediately.python3 -m venv .venv && .venv/bin/pip install -e . && .venv/bin/pytest must pass before declaring done.