symfonia-ai-tools 1.4.0 → 1.4.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/README.md CHANGED
@@ -29,8 +29,8 @@ Konfigurator przeprowadzi Cie przez:
29
29
  Caly konfigurator uzywa nawigacji strzalkami — zero wpisywania cyferek.
30
30
 
31
31
  Na koniec automatycznie uruchamia GSD:
32
- - **Nowy projekt** → `/gsd:new-project`
33
- - **Istniejacy projekt** → `/gsd:map-codebase` → `/gsd:new-project`
32
+ - **Nowy projekt** → `/gsd-new-project`
33
+ - **Istniejacy projekt** → `/gsd-map-codebase` → `/gsd-new-project`
34
34
 
35
35
  ### Tryby instalacji (istniejacy projekt)
36
36
 
@@ -372,13 +372,13 @@ npx get-shit-done-cc@latest
372
372
 
373
373
  | Komenda | Cel |
374
374
  |---------|-----|
375
- | `/gsd:new-project` | Inicjalizacja projektu |
376
- | `/gsd:plan-phase` | Planowanie fazy |
377
- | `/gsd:execute-phase` | Wykonanie |
378
- | `/gsd:verify-work` | Weryfikacja UAT |
379
- | `/gsd:progress` | Status i nastepne kroki |
380
- | `/gsd:debug` | Systematyczny debugging |
381
- | `/gsd:map-codebase` | Mapowanie istniejacego kodu |
375
+ | `/gsd-new-project` | Inicjalizacja projektu |
376
+ | `/gsd-plan-phase` | Planowanie fazy |
377
+ | `/gsd-execute-phase` | Wykonanie |
378
+ | `/gsd-verify-work` | Weryfikacja UAT |
379
+ | `/gsd-progress` | Status i nastepne kroki |
380
+ | `/gsd-debug` | Systematyczny debugging |
381
+ | `/gsd-map-codebase` | Mapowanie istniejacego kodu |
382
382
 
383
383
  ---
384
384
 
package/lib/installer.mjs CHANGED
@@ -456,7 +456,7 @@ function printNextSteps(answers, mode) {
456
456
  steps.push(` ${boldGreen(`${n++}.`)} ${t('i.done.check_mcp_label')}\n ${gray('claude mcp list')}`);
457
457
  }
458
458
  if (!answers.toolClaude) {
459
- steps.push(` ${boldGreen(`${n++}.`)} ${t('i.done.start_gsd')}\n ${gray('/gsd:new-project')}`);
459
+ steps.push(` ${boldGreen(`${n++}.`)} ${t('i.done.start_gsd')}\n ${gray('/gsd-new-project')}`);
460
460
  }
461
461
  console.log(` ${bold(t('i.done.next_steps'))}\n`);
462
462
  console.log(steps.join('\n\n'));
@@ -472,8 +472,8 @@ function hasClaudeCli() {
472
472
  async function bootstrapGsd(targetDir, answers) {
473
473
  if (!hasClaudeCli()) {
474
474
  console.log(warn(t('i.gsd.no_cli')));
475
- if (answers.projectType === 'existing') console.log(` ${gray('claude /gsd:map-codebase')}`);
476
- console.log(` ${gray('claude /gsd:new-project')}`);
475
+ if (answers.projectType === 'existing') console.log(` ${gray('claude /gsd-map-codebase')}`);
476
+ console.log(` ${gray('claude /gsd-new-project')}`);
477
477
  console.log('');
478
478
  return;
479
479
  }
@@ -481,20 +481,20 @@ async function bootstrapGsd(targetDir, answers) {
481
481
  if (answers.projectType === 'existing') {
482
482
  section(t('i.gsd.section_map'));
483
483
  try {
484
- execSync('claude /gsd:map-codebase', { stdio: 'inherit', cwd: targetDir });
484
+ execSync('claude /gsd-map-codebase', { stdio: 'inherit', cwd: targetDir });
485
485
  console.log(success(t('i.gsd.map_ok')));
486
486
  } catch {
487
487
  console.log(error(t('i.gsd.map_fail')));
488
- console.log(` ${dim(t('i.cli.try_manual'))} ${gray('claude /gsd:map-codebase')}`);
488
+ console.log(` ${dim(t('i.cli.try_manual'))} ${gray('claude /gsd-map-codebase')}`);
489
489
  }
490
490
  }
491
491
 
492
492
  section(t('i.gsd.section_init'));
493
493
  try {
494
- execSync('claude /gsd:new-project', { stdio: 'inherit', cwd: targetDir });
494
+ execSync('claude /gsd-new-project', { stdio: 'inherit', cwd: targetDir });
495
495
  console.log(success(t('i.gsd.init_ok')));
496
496
  } catch {
497
497
  console.log(error(t('i.gsd.init_fail')));
498
- console.log(` ${dim(t('i.cli.try_manual'))} ${gray('claude /gsd:new-project')}`);
498
+ console.log(` ${dim(t('i.cli.try_manual'))} ${gray('claude /gsd-new-project')}`);
499
499
  }
500
500
  }
package/lib/questions.mjs CHANGED
@@ -487,8 +487,8 @@ function printSummary(answers, allPacks) {
487
487
 
488
488
  if (answers.toolClaude) {
489
489
  const gsdSteps = [];
490
- if (answers.projectType === 'existing') gsdSteps.push('/gsd:map-codebase');
491
- gsdSteps.push('/gsd:new-project');
490
+ if (answers.projectType === 'existing') gsdSteps.push('/gsd-map-codebase');
491
+ gsdSteps.push('/gsd-new-project');
492
492
  tableRow(t('q.summary.gsd'), cyan(gsdSteps.join(dim(' → '))));
493
493
  }
494
494
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "symfonia-ai-tools",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "AI tooling setup for your project - Claude Code, GitHub Copilot, Cursor, Gemini, Junie, GSD",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,11 +19,11 @@ Read and follow `.ai/guidelines.md` as mandatory context for all work.
19
19
 
20
20
  ## Workflow
21
21
  This project uses GSD (Get Shit Done) for structured development.
22
- - `/gsd:progress` - Check project status
23
- - `/gsd:plan-phase` - Plan next phase
24
- - `/gsd:execute-phase` - Execute current phase
25
- - `/gsd:verify-work` - Verify completed work
26
- - `/gsd:debug` - Systematic debugging
22
+ - `/gsd-progress` - Check project status
23
+ - `/gsd-plan-phase` - Plan next phase
24
+ - `/gsd-execute-phase` - Execute current phase
25
+ - `/gsd-verify-work` - Verify completed work
26
+ - `/gsd-debug` - Systematic debugging
27
27
 
28
28
  ## Commits
29
29
  Extract issue number from branch name and use as prefix.