The sk-cliCreating Projects

Creating Projects

Use sk-cli create to download your licensed bundle and scaffold a new SiteKnock project.

Scaffold a project

Run create from your workspace folder (where sk-cli.json lives):

sk-cli create --project my-saas

This downloads the licensed bundle, configures registry access, scaffolds the project root, and registers the project in your workspace.

Options

FlagDescription
--project, -p <folder>Project folder name inside the workspace
--version <semver>Request a specific SiteKnock version
--yesSkip the interactive confirmation

Examples

# Interactive
sk-cli create --project my-saas

# Pin a version and skip confirmation
sk-cli create --project my-saas --version 1.0.48 --yes

After scaffolding

A fresh project starts with no apps. Install dependencies and create your first app:

cd my-saas
pnpm install
pnpm app create my-app --type fe+be

See the Quickstart for the full first-run sequence.

Prefer a visual flow? Studio's workspace manager can create projects too — see Managing Projects.

Next steps