context
Analyze and optimize Claude Code's context configuration (analyze, optimize, or reset).
Initialize OpenSpec in a project directory with the scaffolding-workflow schema.
> /plugin marketplace add komluk/scaffolding > /plugin install scaffolding@komluk-scaffolding
How it fires
How this command gets triggered: by you, by Claude, or both.
/init-openspecContext preview
What this command does when you run it.
Initialize OpenSpec in a project directory with the scaffolding-workflow schema.
name: init-openspec description: Initialize OpenSpec in a project directory with the scaffolding-workflow schema.
Initialize OpenSpec in a project directory with the scaffolding-workflow schema.
/init-openspec [project-path]
If no path is provided, initializes in the current working directory.
Sets up OpenSpec spec-driven development tooling in a project:
1. Installs/verifies OpenSpec CLI 2. Initializes OpenSpec directory structure 3. Copies the scaffolding-workflow custom schema
1. **Verify OpenSpec CLI is available**
openspec --version || npm install -g @fission-ai/openspec@latest
2. **Initialize OpenSpec in target directory**
openspec init --tools claude [project-path]
This creates `.scaffolding/openspec/` directory and `.claude/commands/specs/` command files.
3. **Copy the scaffolding-workflow schema**
openspec schema fork spec-driven scaffolding-workflow
Then replace the generated schema with the customized version from: `./schemas/scaffolding-workflow/schema.yaml`
4. **Create the conversations directory**
mkdir -p .scaffolding/conversations/
5. **Verify installation**
openspec schemas openspec schema validate scaffolding-workflow
After completion, confirm:
| Command | Purpose | |---------|---------| | `/specs:new` | Start a new spec-driven change | | `/specs:ff` | Fast-forward: generate all artifacts at once | | `/specs:apply` | Implement tasks from specs | | `/specs:continue` | Create the next artifact | | `/specs:verify` | Verify implementation matches specs | | `/specs:archive` | Archive completed change |
Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 36 skills, 19 commands, 15 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.
Repo: komluk/scaffolding
Analyze and optimize Claude Code's context configuration (analyze, optimize, or reset).
Scaffold a new scaffolding-compatible skill: an interactive flow that creates `skills/<name>/SKILL.md` from the canonical template, composes a `TRIGGER`/`SKIP`…
Health-check the scaffolding install and report install problems plus exact fixes (diagnose-only, never mutates).
Scaffold opt-in path-scoped nested CLAUDE.md rule files into the project to lazy-load per-area conventions while keeping routing always-loaded.
Bootstrap a new project with the scaffolding CLAUDE.md, settings.json, and `.scaffolding/` directory structure.