@atlashub/smartstack-cli 2.6.2 → 2.7.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 (37) hide show
  1. package/.documentation/agents.html +1 -1
  2. package/.documentation/apex.html +1 -1
  3. package/.documentation/business-analyse.html +749 -1419
  4. package/.documentation/cli-commands.html +1 -1
  5. package/.documentation/commands.html +1 -1
  6. package/.documentation/css/styles.css +160 -0
  7. package/.documentation/efcore.html +1 -1
  8. package/.documentation/gitflow.html +3 -453
  9. package/.documentation/hooks.html +1 -1
  10. package/.documentation/index.html +177 -68
  11. package/.documentation/init.html +747 -290
  12. package/.documentation/installation.html +63 -8
  13. package/.documentation/ralph-loop.html +1 -1
  14. package/.documentation/test-web.html +1 -1
  15. package/dist/index.js +588 -339
  16. package/dist/index.js.map +1 -1
  17. package/package.json +1 -1
  18. package/templates/agents/ba-reader.md +23 -0
  19. package/templates/agents/ba-writer.md +63 -4
  20. package/templates/skills/business-analyse/questionnaire/00-application.md +1 -1
  21. package/templates/skills/business-analyse/questionnaire/03-scope.md +2 -2
  22. package/templates/skills/business-analyse/questionnaire.md +1 -1
  23. package/templates/skills/business-analyse/react/application-viewer.md +1 -1
  24. package/templates/skills/business-analyse/react/schema.md +88 -1
  25. package/templates/skills/business-analyse/schemas/application-schema.json +16 -1
  26. package/templates/skills/business-analyse/schemas/feature-schema.json +19 -986
  27. package/templates/skills/business-analyse/schemas/sections/analysis-schema.json +157 -0
  28. package/templates/skills/business-analyse/schemas/sections/discovery-schema.json +82 -0
  29. package/templates/skills/business-analyse/schemas/sections/handoff-schema.json +80 -0
  30. package/templates/skills/business-analyse/schemas/sections/metadata-schema.json +69 -0
  31. package/templates/skills/business-analyse/schemas/sections/specification-schema.json +445 -0
  32. package/templates/skills/business-analyse/schemas/sections/validation-schema.json +93 -0
  33. package/templates/skills/business-analyse/schemas/shared/common-defs.json +133 -0
  34. package/templates/skills/business-analyse/steps/step-01-cadrage.md +22 -3
  35. package/templates/skills/business-analyse/steps/step-03-specify.md +129 -0
  36. package/templates/skills/business-analyse/steps/step-04-consolidation.md +38 -5
  37. package/templates/skills/business-analyse/steps/step-05-handoff.md +94 -218
@@ -68,7 +68,7 @@
68
68
  </a>
69
69
  <a href="init.html" class="nav-item">
70
70
  <span class="icon">&#128640;</span>
71
- <span class="nav-text">Project Init</span>
71
+ <span class="nav-text">Projet Client</span>
72
72
  </a>
73
73
  </div>
74
74
 
@@ -70,7 +70,7 @@
70
70
  </a>
71
71
  <a href="init.html" class="nav-item">
72
72
  <span class="icon">&#128640;</span>
73
- <span class="nav-text">Project Init</span>
73
+ <span class="nav-text">Projet Client</span>
74
74
  </a>
75
75
  </div>
76
76
 
@@ -2166,3 +2166,163 @@ pre .file-link {
2166
2166
  pre .file-link:hover {
2167
2167
  text-decoration: underline;
2168
2168
  }
2169
+
2170
+ /* ============================================
2171
+ HOME PAGE - HERO & ECOSYSTEM
2172
+ ============================================ */
2173
+
2174
+ .hero-section {
2175
+ margin-bottom: 2.5rem;
2176
+ padding: 2rem 0;
2177
+ }
2178
+
2179
+ .hero-tagline {
2180
+ font-size: 1.5rem;
2181
+ font-weight: 700;
2182
+ color: var(--text-bright);
2183
+ margin-bottom: 0.75rem;
2184
+ line-height: 1.3;
2185
+ }
2186
+
2187
+ .hero-tagline .highlight {
2188
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
2189
+ -webkit-background-clip: text;
2190
+ -webkit-text-fill-color: transparent;
2191
+ background-clip: text;
2192
+ }
2193
+
2194
+ .hero-description {
2195
+ font-size: 1.05rem;
2196
+ color: var(--text-muted);
2197
+ line-height: 1.7;
2198
+ max-width: 720px;
2199
+ margin-bottom: 0;
2200
+ }
2201
+
2202
+ /* Ecosystem diagram */
2203
+ .ecosystem-grid {
2204
+ display: grid;
2205
+ grid-template-columns: repeat(3, 1fr);
2206
+ gap: 1rem;
2207
+ margin: 2rem 0;
2208
+ }
2209
+
2210
+ .ecosystem-card {
2211
+ background: var(--bg-card);
2212
+ border: 1px solid var(--border);
2213
+ border-radius: 10px;
2214
+ padding: 1.25rem;
2215
+ text-align: center;
2216
+ transition: all var(--transition-fast);
2217
+ position: relative;
2218
+ }
2219
+
2220
+ .ecosystem-card:hover {
2221
+ border-color: var(--primary);
2222
+ transform: translateY(-2px);
2223
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
2224
+ }
2225
+
2226
+ .ecosystem-card .eco-icon {
2227
+ width: 48px;
2228
+ height: 48px;
2229
+ border-radius: 12px;
2230
+ display: flex;
2231
+ align-items: center;
2232
+ justify-content: center;
2233
+ font-size: 1.5rem;
2234
+ margin: 0 auto 0.75rem;
2235
+ }
2236
+
2237
+ .ecosystem-card .eco-icon.eco-app {
2238
+ background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
2239
+ }
2240
+
2241
+ .ecosystem-card .eco-icon.eco-cli {
2242
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
2243
+ }
2244
+
2245
+ .ecosystem-card .eco-icon.eco-mcp {
2246
+ background: linear-gradient(135deg, var(--success) 0%, #0d9488 100%);
2247
+ }
2248
+
2249
+ .ecosystem-card .eco-name {
2250
+ font-size: 0.95rem;
2251
+ font-weight: 600;
2252
+ color: var(--text-bright);
2253
+ margin-bottom: 0.25rem;
2254
+ }
2255
+
2256
+ .ecosystem-card .eco-role {
2257
+ font-size: 0.8rem;
2258
+ color: var(--text-muted);
2259
+ line-height: 1.5;
2260
+ }
2261
+
2262
+ /* Ecosystem connectors (arrows between cards) */
2263
+ .ecosystem-connector {
2264
+ display: flex;
2265
+ align-items: center;
2266
+ justify-content: center;
2267
+ gap: 2rem;
2268
+ margin: -0.5rem 0;
2269
+ color: var(--text-muted);
2270
+ font-size: 0.75rem;
2271
+ }
2272
+
2273
+ .ecosystem-connector .arrow {
2274
+ color: var(--primary-light);
2275
+ font-size: 1.25rem;
2276
+ }
2277
+
2278
+ /* Stats bar */
2279
+ .stats-bar {
2280
+ display: grid;
2281
+ grid-template-columns: repeat(4, 1fr);
2282
+ gap: 1rem;
2283
+ margin: 1.5rem 0 2rem;
2284
+ }
2285
+
2286
+ .stat-item {
2287
+ background: var(--bg-card);
2288
+ border: 1px solid var(--border);
2289
+ border-radius: 10px;
2290
+ padding: 1.25rem 1rem;
2291
+ text-align: center;
2292
+ transition: all var(--transition-fast);
2293
+ }
2294
+
2295
+ .stat-item:hover {
2296
+ border-color: var(--primary);
2297
+ }
2298
+
2299
+ .stat-number {
2300
+ font-size: 1.75rem;
2301
+ font-weight: 700;
2302
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
2303
+ -webkit-background-clip: text;
2304
+ -webkit-text-fill-color: transparent;
2305
+ background-clip: text;
2306
+ line-height: 1.2;
2307
+ margin-bottom: 0.25rem;
2308
+ }
2309
+
2310
+ .stat-label {
2311
+ font-size: 0.8rem;
2312
+ color: var(--text-muted);
2313
+ font-weight: 500;
2314
+ }
2315
+
2316
+ @media (max-width: 768px) {
2317
+ .ecosystem-grid {
2318
+ grid-template-columns: 1fr;
2319
+ }
2320
+
2321
+ .stats-bar {
2322
+ grid-template-columns: repeat(2, 1fr);
2323
+ }
2324
+
2325
+ .hero-tagline {
2326
+ font-size: 1.25rem;
2327
+ }
2328
+ }
@@ -68,7 +68,7 @@
68
68
  </a>
69
69
  <a href="init.html" class="nav-item">
70
70
  <span class="icon">&#128640;</span>
71
- <span class="nav-text">Project Init</span>
71
+ <span class="nav-text">Projet Client</span>
72
72
  </a>
73
73
  </div>
74
74