Skip to content

/ss-create

Create a change directory and git branch. Artifacts (proposal, spec, checklist) are generated by AI on demand.

Syntax

/ss-create <feature> [options]

Arguments

ArgumentDescription
<feature>Feature name / change description

Options

OptionDescription
-bBoost mode
-cCreative mode
-d <desc>Change description
--no-branchDon't create git branch
--spec-dir <dir>Custom spec directory
--branch-prefix <prefix>Branch prefix
--branch-template <tpl>Branch name template
--change-name-template <tpl>Folder name template
--intent-type <type>Intent type
--user <user> or @userDeveloper identifier
--lang <lang>Document language

Examples

Basic Usage

/ss-create add-dark-mode

Boost Mode

/ss-create add-user-auth -b

With Description

/ss-create add-auth -d "OAuth2 login with Google and GitHub"

Specify Developer

/ss-create add-feature @jay

Full Example

/ss-create add-user-auth -b -d "Implement user authentication" --intent-type feature @jay

AI Behavior

After executing this command, AI will:

  1. Run superspec create <feature> [options] (creates folder + git branch only)
  2. Generate artifacts on demand: proposal.md (Standard/Boost), spec.md (Boost), checklist.md (both)
  3. Standard: proposal → checklist (/10) → prompt /ss-tasks
  4. Boost: proposal → spec → [auto: split? design?] → checklist (/25) → prompt /ss-tasks
  5. Wait for you to confirm content, suggest next steps

Next Steps

After creation and checklist passes:

/ss-tasks    # Generate task list

Released under the MIT License