spec-first-copilot 0.6.0-beta.1 → 0.6.0-beta.2

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/lib/init.js CHANGED
@@ -52,8 +52,9 @@ function init({ name, templatesDir, targetDir }) {
52
52
  console.log('\nNext steps:');
53
53
  console.log(` 1. cd ${name}`);
54
54
  console.log(' 2. Create a folder in workspace/Input/ with your project files (e.g. workspace/Input/my_app/)');
55
- console.log(' 3. Copy sfw.config.yml.example to sfw.config.yml and configure your backend');
56
- console.log(' 4. Run /sf-new-project <folder-name> to start the pipeline');
55
+ console.log(' 3. (Optional) Copy sfw.config.yml.example to sfw.config.yml and configure your backend');
56
+ console.log(' 4. Open VS Code with Copilot Chat and run: /sf-start <folder-name>');
57
+ console.log(' Framework detects first-run automatically (creates docs/) vs feature (updates docs/).');
57
58
  console.log('');
58
59
  }
59
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-first-copilot",
3
- "version": "0.6.0-beta.1",
3
+ "version": "0.6.0-beta.2",
4
4
  "description": "Spec-first workflow kit for GitHub Copilot — AI-driven development with specs, not guesswork",
5
5
  "bin": {
6
6
  "spec-first-copilot": "bin/cli.js"
@@ -8,6 +8,16 @@
8
8
 
9
9
  ---
10
10
 
11
+ ## 0.6.0-beta.2 (2026-04-12)
12
+
13
+ ### Fix: CLI `init` output
14
+
15
+ - Mensagem "Next steps" do `npx spec-first-copilot init` apontava pro `/sf-new-project` removido no v3
16
+ - Agora aponta pro `/sf-start <folder-name>` + nota que framework detecta first-run automaticamente
17
+ - sfw.config.yml.example marcado como opcional (projeto funciona 100% local)
18
+
19
+ ---
20
+
11
21
  ## 0.6.0-beta.1 (2026-04-12) — Redesign v3 (BREAKING)
12
22
 
13
23
  Redesign estrutural eliminando o TRD e unificando o pipeline em uma skill única.