Setup profile: Bootstrap

The first phase of the Project setup profile: get blueprints/ on disk, docs/ as needed, and a project sdlc/ workspace.

Project setup profile — Bootstrap (steps 1–3)

What it is

The first phase of the Project setup profile: get blueprints/ on disk, docs/ as needed, and a project sdlc/ workspace.

When to use it

As the first block of the full checklist after First hour or alongside it.

Prerequisites

Steps

  1. Submodule — Ensure blueprints/ is present; git submodule update --init so blueprints/sdlc exists.
  2. Documentation tree (as needed) — Create docs/ per the layout template on GitHub.
  3. Project sdlc/ workspace — From repo root:
    ./blueprints/sdlc/scripts/init-sdlc-workspace.sh "Project Name"
    Context and layout: Initializing the project `sdlc/` workspace.

How to verify success

  • test -f blueprints/sdlc/README.md from repo root.
  • Project sdlc/README.md exists and describes your project (not edits under frozen blueprints/sdlc/).

What to do next