원클릭으로
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.