@atlashub/smartstack-cli 1.4.0 → 1.5.0

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.
Files changed (66) hide show
  1. package/.documentation/agents.html +8 -4
  2. package/.documentation/apex.html +8 -4
  3. package/.documentation/business-analyse.html +833 -406
  4. package/.documentation/commands.html +8 -4
  5. package/.documentation/css/styles.css +153 -15
  6. package/.documentation/efcore.html +8 -4
  7. package/.documentation/gitflow.html +795 -230
  8. package/.documentation/hooks.html +8 -4
  9. package/.documentation/index.html +13 -9
  10. package/.documentation/installation.html +23 -19
  11. package/.documentation/ralph-loop.html +530 -0
  12. package/.documentation/test-web.html +8 -4
  13. package/README.md +52 -10
  14. package/dist/index.js +813 -283
  15. package/dist/index.js.map +1 -1
  16. package/package.json +1 -1
  17. package/templates/agents/efcore/conflicts.md +44 -17
  18. package/templates/agents/efcore/db-status.md +27 -6
  19. package/templates/agents/efcore/scan.md +43 -13
  20. package/templates/commands/ai-prompt.md +315 -315
  21. package/templates/commands/application/create.md +362 -362
  22. package/templates/commands/controller/create.md +216 -216
  23. package/templates/commands/controller.md +59 -0
  24. package/templates/commands/create/agent.md +138 -0
  25. package/templates/commands/create/command.md +166 -0
  26. package/templates/commands/create/hook.md +234 -0
  27. package/templates/commands/create/plugin.md +329 -0
  28. package/templates/commands/create/project.md +507 -0
  29. package/templates/commands/create/skill.md +199 -0
  30. package/templates/commands/create.md +220 -0
  31. package/templates/commands/documentation/module.md +202 -202
  32. package/templates/commands/efcore/_env-check.md +153 -153
  33. package/templates/commands/efcore/conflicts.md +109 -192
  34. package/templates/commands/efcore/db-status.md +101 -89
  35. package/templates/commands/efcore/migration.md +23 -11
  36. package/templates/commands/efcore/scan.md +115 -119
  37. package/templates/commands/efcore.md +54 -6
  38. package/templates/commands/feature-full.md +267 -267
  39. package/templates/commands/gitflow/11-finish.md +145 -11
  40. package/templates/commands/gitflow/13-sync.md +216 -216
  41. package/templates/commands/gitflow/14-rebase.md +251 -251
  42. package/templates/commands/gitflow/2-status.md +120 -10
  43. package/templates/commands/gitflow/3-commit.md +150 -0
  44. package/templates/commands/gitflow/7-pull-request.md +134 -5
  45. package/templates/commands/gitflow/9-merge.md +142 -1
  46. package/templates/commands/implement.md +663 -663
  47. package/templates/commands/init.md +562 -0
  48. package/templates/commands/mcp-integration.md +330 -0
  49. package/templates/commands/notification.md +129 -129
  50. package/templates/commands/validate.md +233 -0
  51. package/templates/commands/workflow.md +193 -193
  52. package/templates/skills/ai-prompt/SKILL.md +778 -778
  53. package/templates/skills/application/SKILL.md +563 -563
  54. package/templates/skills/application/templates-backend.md +450 -450
  55. package/templates/skills/application/templates-frontend.md +531 -531
  56. package/templates/skills/application/templates-i18n.md +520 -520
  57. package/templates/skills/application/templates-seed.md +647 -647
  58. package/templates/skills/controller/SKILL.md +240 -240
  59. package/templates/skills/controller/postman-templates.md +614 -614
  60. package/templates/skills/controller/templates.md +1468 -1468
  61. package/templates/skills/documentation/SKILL.md +133 -133
  62. package/templates/skills/documentation/templates.md +476 -476
  63. package/templates/skills/feature-full/SKILL.md +838 -838
  64. package/templates/skills/notification/SKILL.md +555 -555
  65. package/templates/skills/ui-components/SKILL.md +870 -870
  66. package/templates/skills/workflow/SKILL.md +582 -582
@@ -3,16 +3,16 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Commandes - Claude Tools</title>
6
+ <title>Commandes - SmartStack CLI</title>
7
7
  <link rel="stylesheet" href="css/styles.css">
8
8
  </head>
9
9
  <body>
10
10
  <div class="app-container">
11
11
  <!-- Global Header (single unified element) -->
12
12
  <header class="global-header">
13
- <div class="logo">CT</div>
14
- <span class="site-title">Claude Tools</span>
15
- <span class="version-badge">v1.8.7</span>
13
+ <div class="logo">SS</div>
14
+ <span class="site-title">SmartStack CLI</span>
15
+ <span class="version-badge">v1.4.0</span>
16
16
  <div class="header-divider"></div>
17
17
  <span class="page-title" data-lang="fr">Référence des commandes</span>
18
18
  <span class="page-title" data-lang="en">Command Reference</span>
@@ -88,6 +88,10 @@
88
88
  <span class="icon">&#128202;</span>
89
89
  <span class="nav-text">Business Analyse</span>
90
90
  </a>
91
+ <a href="ralph-loop.html" class="nav-item">
92
+ <span class="icon">&#128260;</span>
93
+ <span class="nav-text">Ralph Loop</span>
94
+ </a>
91
95
  </div>
92
96
 
93
97
  <div class="nav-section">
@@ -587,13 +587,13 @@ body {
587
587
 
588
588
  /* Content Area */
589
589
  .content {
590
- max-width: 900px;
591
- margin: 0 auto;
592
- padding: 2rem;
590
+ max-width: none;
591
+ width: 100%;
592
+ padding: 2rem 2.5rem;
593
593
  }
594
594
 
595
595
  .content-wide {
596
- max-width: 1200px;
596
+ max-width: none;
597
597
  }
598
598
 
599
599
  /* ============================================
@@ -738,6 +738,22 @@ td code {
738
738
  box-shadow: none !important;
739
739
  }
740
740
 
741
+ /* Code in alerts - subtle style */
742
+ .alert code,
743
+ .alert-content code {
744
+ background: rgba(0, 0, 0, 0.3);
745
+ border: none;
746
+ color: #e2e8f0;
747
+ padding: 0.15rem 0.4rem;
748
+ }
749
+
750
+ /* Code in paragraphs - lighter style */
751
+ p code {
752
+ background: rgba(30, 41, 59, 0.8);
753
+ border: none;
754
+ color: #93c5fd;
755
+ }
756
+
741
757
  pre {
742
758
  background: var(--bg-code);
743
759
  border: 1px solid var(--border);
@@ -749,13 +765,50 @@ pre {
749
765
  }
750
766
 
751
767
  pre code {
752
- background: none;
753
- padding: 0;
768
+ background: none !important;
769
+ padding: 0 !important;
770
+ border: none !important;
754
771
  color: var(--text);
755
772
  font-size: 0.875rem;
756
773
  line-height: 1.6;
757
774
  }
758
775
 
776
+ /* Code block container */
777
+ .code-block pre code {
778
+ background: transparent !important;
779
+ border: none !important;
780
+ padding: 0 !important;
781
+ box-shadow: none !important;
782
+ }
783
+
784
+ /* Code syntax highlighting */
785
+ .code-comment {
786
+ color: #6b7280;
787
+ font-style: italic;
788
+ }
789
+
790
+ .code-cmd {
791
+ color: #22d3ee;
792
+ font-weight: 600;
793
+ }
794
+
795
+ .code-arg {
796
+ color: #a78bfa;
797
+ }
798
+
799
+ .code-string {
800
+ color: #4ade80;
801
+ }
802
+
803
+ .code-flag {
804
+ color: #fbbf24;
805
+ }
806
+
807
+ .code-output {
808
+ color: #64748b;
809
+ font-style: italic;
810
+ }
811
+
759
812
  .code-header {
760
813
  display: flex;
761
814
  justify-content: space-between;
@@ -1162,6 +1215,92 @@ body.lang-en [data-lang="fr"] { display: none !important; }
1162
1215
  margin-bottom: 1rem;
1163
1216
  }
1164
1217
 
1218
+ /* Lists in command body */
1219
+ .command-body ul,
1220
+ .command-body ol {
1221
+ margin: 1rem 0;
1222
+ padding-left: 1.75rem;
1223
+ }
1224
+
1225
+ .command-body ul {
1226
+ list-style-type: disc;
1227
+ }
1228
+
1229
+ .command-body ol {
1230
+ list-style-type: decimal;
1231
+ }
1232
+
1233
+ .command-body li {
1234
+ margin-bottom: 0.5rem;
1235
+ color: var(--text);
1236
+ line-height: 1.6;
1237
+ }
1238
+
1239
+ .command-body li::marker {
1240
+ color: var(--primary-light);
1241
+ }
1242
+
1243
+ /* Badges (for command cards) */
1244
+ .badge {
1245
+ display: inline-block;
1246
+ padding: 0.25rem 0.6rem;
1247
+ border-radius: 9999px;
1248
+ font-size: 0.7rem;
1249
+ font-weight: 600;
1250
+ text-transform: uppercase;
1251
+ letter-spacing: 0.03em;
1252
+ }
1253
+
1254
+ /* Workflow colors: WHAT (Blue), HOW (Teal), DOC (Purple) */
1255
+ .badge-blue {
1256
+ background: rgba(59, 130, 246, 0.15);
1257
+ color: #60a5fa;
1258
+ border: 1px solid rgba(59, 130, 246, 0.3);
1259
+ }
1260
+
1261
+ .badge-teal {
1262
+ background: rgba(13, 148, 136, 0.15);
1263
+ color: #2dd4bf;
1264
+ border: 1px solid rgba(13, 148, 136, 0.3);
1265
+ }
1266
+
1267
+ .badge-purple {
1268
+ background: rgba(139, 92, 246, 0.15);
1269
+ color: #a78bfa;
1270
+ border: 1px solid rgba(139, 92, 246, 0.3);
1271
+ }
1272
+
1273
+ /* Additional badge variants */
1274
+ .badge-pink {
1275
+ background: rgba(236, 72, 153, 0.15);
1276
+ color: #f472b6;
1277
+ border: 1px solid rgba(236, 72, 153, 0.3);
1278
+ }
1279
+
1280
+ .badge-green {
1281
+ background: rgba(34, 197, 94, 0.15);
1282
+ color: #4ade80;
1283
+ border: 1px solid rgba(34, 197, 94, 0.3);
1284
+ }
1285
+
1286
+ .badge-orange {
1287
+ background: rgba(249, 115, 22, 0.15);
1288
+ color: #fb923c;
1289
+ border: 1px solid rgba(249, 115, 22, 0.3);
1290
+ }
1291
+
1292
+ .badge-red {
1293
+ background: rgba(239, 68, 68, 0.15);
1294
+ color: #f87171;
1295
+ border: 1px solid rgba(239, 68, 68, 0.3);
1296
+ }
1297
+
1298
+ .badge-yellow {
1299
+ background: rgba(234, 179, 8, 0.15);
1300
+ color: #facc15;
1301
+ border: 1px solid rgba(234, 179, 8, 0.3);
1302
+ }
1303
+
1165
1304
  /* Prompt Details (Collapsible) */
1166
1305
  .prompt-details {
1167
1306
  margin-top: 1.25rem;
@@ -1394,8 +1533,8 @@ body.lang-en [data-lang="fr"] { display: none !important; }
1394
1533
 
1395
1534
  /* Full width content (no inline TOC) */
1396
1535
  .content-full {
1397
- max-width: 1000px;
1398
- margin: 0 auto;
1536
+ max-width: none;
1537
+ width: 100%;
1399
1538
  padding: 2rem 2.5rem;
1400
1539
  }
1401
1540
 
@@ -1407,9 +1546,9 @@ body.lang-en [data-lang="fr"] { display: none !important; }
1407
1546
 
1408
1547
  /* Wide content (no TOC) */
1409
1548
  .content-wide {
1410
- max-width: 900px;
1411
- margin: 0 auto;
1412
- padding: 2rem;
1549
+ max-width: none;
1550
+ width: 100%;
1551
+ padding: 2rem 2.5rem;
1413
1552
  }
1414
1553
 
1415
1554
  /* ============================================
@@ -1417,10 +1556,9 @@ body.lang-en [data-lang="fr"] { display: none !important; }
1417
1556
  ============================================ */
1418
1557
 
1419
1558
  .svg-diagram {
1420
- background: var(--bg-card);
1421
- border: 1px solid var(--border);
1422
- border-radius: 12px;
1423
- padding: 2rem;
1559
+ background: transparent;
1560
+ border: none;
1561
+ padding: 1rem 0;
1424
1562
  margin: 2rem 0;
1425
1563
  overflow-x: auto;
1426
1564
  display: flex;
@@ -3,16 +3,16 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>EF Core Migrations - Claude Tools</title>
6
+ <title>EF Core Migrations - SmartStack CLI</title>
7
7
  <link rel="stylesheet" href="css/styles.css">
8
8
  </head>
9
9
  <body>
10
10
  <div class="app-container">
11
11
  <!-- Global Header (single unified element) -->
12
12
  <header class="global-header">
13
- <div class="logo">CT</div>
14
- <span class="site-title">Claude Tools</span>
15
- <span class="version-badge">v1.8.7</span>
13
+ <div class="logo">SS</div>
14
+ <span class="site-title">SmartStack CLI</span>
15
+ <span class="version-badge">v1.4.0</span>
16
16
  <div class="header-divider"></div>
17
17
  <span class="page-title">EF Core Migrations</span>
18
18
  <nav class="breadcrumb">
@@ -118,6 +118,10 @@
118
118
  <span class="icon">&#128202;</span>
119
119
  <span class="nav-text">Business Analyse</span>
120
120
  </a>
121
+ <a href="ralph-loop.html" class="nav-item">
122
+ <span class="icon">&#128260;</span>
123
+ <span class="nav-text">Ralph Loop</span>
124
+ </a>
121
125
  </div>
122
126
 
123
127
  <div class="nav-section">