specflow-cc 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to SpecFlow will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.3.1] - 2026-01-21
9
+
10
+ ### Fixed
11
+
12
+ - Command format in installer output: `/sf init` → `/sf:init`
13
+
14
+ ---
15
+
8
16
  ## [1.3.0] - 2026-01-21
9
17
 
10
18
  ### Added
package/bin/install.js CHANGED
@@ -269,12 +269,12 @@ function finishInstall(settingsPath, settings, statuslineCommand, shouldInstallS
269
269
  writeSettings(settingsPath, settings);
270
270
 
271
271
  console.log(`
272
- ${green}Done!${reset} Launch Claude Code and run ${cyan}/sf help${reset}.
272
+ ${green}Done!${reset} Launch Claude Code and run ${cyan}/sf:help${reset}.
273
273
 
274
274
  ${yellow}Quick start:${reset}
275
- /sf init - Initialize project
276
- /sf new - Create specification
277
- /sf help - Show all commands
275
+ /sf:init - Initialize project
276
+ /sf:new - Create specification
277
+ /sf:help - Show all commands
278
278
  `);
279
279
  }
280
280
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specflow-cc",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Spec-driven development system for Claude Code — quality-first workflow with explicit audit cycles",
5
5
  "bin": {
6
6
  "specflow-cc": "bin/install.js"