symfonia-ai-tools 1.4.0 → 1.4.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/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
 
@@ -221,7 +221,7 @@ AI przeczyta `SKILL.md` i wykona kroki po kolei.
221
221
 
222
222
  Wszystkie skille maja prefix `smf-` (Symfonia). Konfigurator pozwala wybrac checkboxami ktore skille zainstalowac.
223
223
 
224
- ### Skills bazowe (14 skilli)
224
+ ### Skills bazowe (15 skilli)
225
225
 
226
226
  | Skill | Cel | Kiedy uzywac | Wymaga |
227
227
  |-------|-----|-------------|--------|
@@ -239,6 +239,7 @@ Wszystkie skille maja prefix `smf-` (Symfonia). Konfigurator pozwala wybrac chec
239
239
  | `smf-fill-worklogs` | Wypelnianie worklogow | Uzupelnianie godzin na bazie commitow git | Jira MCP |
240
240
  | `smf-grafana-logs` | Logi z Grafany | Debugowanie prod — query Loki, analiza bledow | Grafana MCP |
241
241
  | `smf-aws-analysis` | Analiza AWS | Dobor serwisow, architektura, koszty | Context7 MCP |
242
+ | `smf-figma-analysis` | Analiza mockupu Figma | Link do selekcji Figma → specyfikacja UI | Figma MCP |
242
243
 
243
244
  ### Skills Vue 3 + TypeScript (3 skille)
244
245
 
@@ -333,6 +334,7 @@ Skille deklaruja wymagane serwery MCP. Gdy wybierzesz np. `smf-jira-task`, Jira
333
334
  | `smf-jira-task`, `smf-jira-explorer`, `smf-fill-worklogs` | Jira Cloud |
334
335
  | `smf-grafana-logs` | Grafana |
335
336
  | `smf-aws-analysis` | Context7 |
337
+ | `smf-figma-analysis` | Figma |
336
338
 
337
339
  ### Auto-detect
338
340
 
@@ -372,13 +374,13 @@ npx get-shit-done-cc@latest
372
374
 
373
375
  | Komenda | Cel |
374
376
  |---------|-----|
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 |
377
+ | `/gsd-new-project` | Inicjalizacja projektu |
378
+ | `/gsd-plan-phase` | Planowanie fazy |
379
+ | `/gsd-execute-phase` | Wykonanie |
380
+ | `/gsd-verify-work` | Weryfikacja UAT |
381
+ | `/gsd-progress` | Status i nastepne kroki |
382
+ | `/gsd-debug` | Systematyczny debugging |
383
+ | `/gsd-map-codebase` | Mapowanie istniejacego kodu |
382
384
 
383
385
  ---
384
386
 
@@ -501,7 +503,7 @@ templates/
501
503
  │ │ ├── _guidelines_header.md # Naglowek guidelines
502
504
  │ │ ├── context/ # Kontekst projektowy
503
505
  │ │ ├── prompts/ # codereview, security-review, figma, duplicates
504
- │ │ └── skills/ # 14 skilli bazowych (smf-*)
506
+ │ │ └── skills/ # 15 skilli bazowych (smf-*)
505
507
  │ ├── _claude/ # → .claude/ (permissions + deny)
506
508
  │ ├── _github/ # → .github/ (copilot pointer + PR template)
507
509
  │ ├── _cursor/ # → .cursor/
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
@@ -16,6 +16,7 @@ const SKILL_MCP_DEPS = {
16
16
  'smf-fill-worklogs': ['mcpJira'],
17
17
  'smf-grafana-logs': ['mcpGrafana'],
18
18
  'smf-aws-analysis': ['mcpContext7'],
19
+ 'smf-figma-analysis': ['mcpFigma'],
19
20
  };
20
21
 
21
22
  const SKILL_CLI_DEPS = {
@@ -487,8 +488,8 @@ function printSummary(answers, allPacks) {
487
488
 
488
489
  if (answers.toolClaude) {
489
490
  const gsdSteps = [];
490
- if (answers.projectType === 'existing') gsdSteps.push('/gsd:map-codebase');
491
- gsdSteps.push('/gsd:new-project');
491
+ if (answers.projectType === 'existing') gsdSteps.push('/gsd-map-codebase');
492
+ gsdSteps.push('/gsd-new-project');
492
493
  tableRow(t('q.summary.gsd'), cyan(gsdSteps.join(dim(' → '))));
493
494
  }
494
495
  }
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.2",
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.