@atlashub/smartstack-cli 1.1.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 (144) hide show
  1. package/.documentation/agents.html +912 -0
  2. package/.documentation/apex.html +1014 -0
  3. package/.documentation/business-analyse.html +1074 -0
  4. package/.documentation/commands.html +676 -0
  5. package/.documentation/css/styles.css +2030 -0
  6. package/.documentation/efcore.html +2501 -0
  7. package/.documentation/gitflow.html +2053 -0
  8. package/.documentation/hooks.html +409 -0
  9. package/.documentation/index.html +319 -0
  10. package/.documentation/installation.html +458 -0
  11. package/.documentation/js/app.js +794 -0
  12. package/.documentation/test-web.html +509 -0
  13. package/README.md +90 -0
  14. package/config/default-config.json +86 -0
  15. package/config/settings.json +53 -0
  16. package/config/settings.local.example.json +16 -0
  17. package/dist/index.d.ts +2 -0
  18. package/dist/index.js +38198 -0
  19. package/dist/index.js.map +1 -0
  20. package/package.json +86 -0
  21. package/templates/agents/action.md +36 -0
  22. package/templates/agents/efcore/conflicts.md +57 -0
  23. package/templates/agents/efcore/db-deploy.md +51 -0
  24. package/templates/agents/efcore/db-reset.md +59 -0
  25. package/templates/agents/efcore/db-seed.md +56 -0
  26. package/templates/agents/efcore/db-status.md +43 -0
  27. package/templates/agents/efcore/migration.md +85 -0
  28. package/templates/agents/efcore/rebase-snapshot.md +62 -0
  29. package/templates/agents/efcore/scan.md +60 -0
  30. package/templates/agents/efcore/squash.md +67 -0
  31. package/templates/agents/explore-codebase.md +65 -0
  32. package/templates/agents/explore-docs.md +97 -0
  33. package/templates/agents/fix-grammar.md +49 -0
  34. package/templates/agents/gitflow/abort.md +45 -0
  35. package/templates/agents/gitflow/cleanup.md +85 -0
  36. package/templates/agents/gitflow/commit.md +40 -0
  37. package/templates/agents/gitflow/exec.md +48 -0
  38. package/templates/agents/gitflow/finish.md +92 -0
  39. package/templates/agents/gitflow/init.md +139 -0
  40. package/templates/agents/gitflow/merge.md +62 -0
  41. package/templates/agents/gitflow/plan.md +42 -0
  42. package/templates/agents/gitflow/pr.md +78 -0
  43. package/templates/agents/gitflow/review.md +49 -0
  44. package/templates/agents/gitflow/start.md +61 -0
  45. package/templates/agents/gitflow/status.md +32 -0
  46. package/templates/agents/snipper.md +36 -0
  47. package/templates/agents/websearch.md +46 -0
  48. package/templates/commands/_resources/formatting-guide.md +124 -0
  49. package/templates/commands/ai-prompt.md +315 -0
  50. package/templates/commands/apex/1-analyze.md +100 -0
  51. package/templates/commands/apex/2-plan.md +145 -0
  52. package/templates/commands/apex/3-execute.md +171 -0
  53. package/templates/commands/apex/4-examine.md +116 -0
  54. package/templates/commands/apex/5-tasks.md +209 -0
  55. package/templates/commands/apex.md +76 -0
  56. package/templates/commands/application/create.md +362 -0
  57. package/templates/commands/application/templates-backend.md +463 -0
  58. package/templates/commands/application/templates-frontend.md +517 -0
  59. package/templates/commands/application/templates-i18n.md +478 -0
  60. package/templates/commands/application/templates-seed.md +362 -0
  61. package/templates/commands/application.md +303 -0
  62. package/templates/commands/business-analyse/1-init.md +269 -0
  63. package/templates/commands/business-analyse/2-discover.md +520 -0
  64. package/templates/commands/business-analyse/3-analyse.md +408 -0
  65. package/templates/commands/business-analyse/4-specify.md +598 -0
  66. package/templates/commands/business-analyse/5-validate.md +326 -0
  67. package/templates/commands/business-analyse/6-handoff.md +746 -0
  68. package/templates/commands/business-analyse/7-doc-html.md +602 -0
  69. package/templates/commands/business-analyse/bug.md +325 -0
  70. package/templates/commands/business-analyse/change-request.md +368 -0
  71. package/templates/commands/business-analyse/hotfix.md +200 -0
  72. package/templates/commands/business-analyse.md +559 -0
  73. package/templates/commands/controller/create.md +216 -0
  74. package/templates/commands/controller/postman-templates.md +528 -0
  75. package/templates/commands/controller/templates.md +600 -0
  76. package/templates/commands/controller.md +278 -0
  77. package/templates/commands/debug.md +95 -0
  78. package/templates/commands/documentation/module.md +202 -0
  79. package/templates/commands/documentation/templates.md +432 -0
  80. package/templates/commands/documentation.md +190 -0
  81. package/templates/commands/efcore/_env-check.md +153 -0
  82. package/templates/commands/efcore/conflicts.md +269 -0
  83. package/templates/commands/efcore/db-deploy.md +193 -0
  84. package/templates/commands/efcore/db-reset.md +426 -0
  85. package/templates/commands/efcore/db-seed.md +326 -0
  86. package/templates/commands/efcore/db-status.md +214 -0
  87. package/templates/commands/efcore/migration.md +388 -0
  88. package/templates/commands/efcore/rebase-snapshot.md +264 -0
  89. package/templates/commands/efcore/scan.md +202 -0
  90. package/templates/commands/efcore/squash.md +298 -0
  91. package/templates/commands/efcore.md +176 -0
  92. package/templates/commands/epct.md +69 -0
  93. package/templates/commands/explain.md +186 -0
  94. package/templates/commands/explore.md +45 -0
  95. package/templates/commands/feature-full.md +267 -0
  96. package/templates/commands/gitflow/1-init.md +1038 -0
  97. package/templates/commands/gitflow/10-start.md +768 -0
  98. package/templates/commands/gitflow/11-finish.md +323 -0
  99. package/templates/commands/gitflow/12-cleanup.md +276 -0
  100. package/templates/commands/gitflow/13-sync.md +216 -0
  101. package/templates/commands/gitflow/14-rebase.md +251 -0
  102. package/templates/commands/gitflow/2-status.md +167 -0
  103. package/templates/commands/gitflow/3-commit.md +194 -0
  104. package/templates/commands/gitflow/4-plan.md +145 -0
  105. package/templates/commands/gitflow/5-exec.md +147 -0
  106. package/templates/commands/gitflow/6-abort.md +344 -0
  107. package/templates/commands/gitflow/7-pull-request.md +226 -0
  108. package/templates/commands/gitflow/8-review.md +176 -0
  109. package/templates/commands/gitflow/9-merge.md +224 -0
  110. package/templates/commands/gitflow.md +128 -0
  111. package/templates/commands/implement.md +663 -0
  112. package/templates/commands/notification.md +129 -0
  113. package/templates/commands/oneshot.md +57 -0
  114. package/templates/commands/quick-search.md +72 -0
  115. package/templates/commands/review.md +106 -0
  116. package/templates/commands/utils/test-web-config.md +160 -0
  117. package/templates/commands/utils/test-web.md +151 -0
  118. package/templates/commands/workflow.md +193 -0
  119. package/templates/gitflow/config.json +138 -0
  120. package/templates/hooks/ef-migration-check.md +139 -0
  121. package/templates/hooks/hooks.json +15 -0
  122. package/templates/skills/ai-prompt/SKILL.md +778 -0
  123. package/templates/skills/application/SKILL.md +563 -0
  124. package/templates/skills/application/templates-backend.md +450 -0
  125. package/templates/skills/application/templates-frontend.md +531 -0
  126. package/templates/skills/application/templates-i18n.md +520 -0
  127. package/templates/skills/application/templates-seed.md +647 -0
  128. package/templates/skills/business-analyse/SKILL.md +191 -0
  129. package/templates/skills/business-analyse/questionnaire.md +283 -0
  130. package/templates/skills/business-analyse/templates-frd.md +477 -0
  131. package/templates/skills/business-analyse/templates-react.md +580 -0
  132. package/templates/skills/controller/SKILL.md +240 -0
  133. package/templates/skills/controller/postman-templates.md +614 -0
  134. package/templates/skills/controller/templates.md +1468 -0
  135. package/templates/skills/documentation/SKILL.md +133 -0
  136. package/templates/skills/documentation/templates.md +476 -0
  137. package/templates/skills/feature-full/SKILL.md +838 -0
  138. package/templates/skills/notification/SKILL.md +555 -0
  139. package/templates/skills/ui-components/SKILL.md +870 -0
  140. package/templates/skills/workflow/SKILL.md +582 -0
  141. package/templates/test-web/api-health.json +38 -0
  142. package/templates/test-web/minimal.json +19 -0
  143. package/templates/test-web/npm-package.json +46 -0
  144. package/templates/test-web/seo-check.json +54 -0
@@ -0,0 +1,1014 @@
1
+ <!DOCTYPE html>
2
+ <html lang="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>APEX Methodology - Claude Tools</title>
7
+ <link rel="stylesheet" href="css/styles.css">
8
+ </head>
9
+ <body>
10
+ <div class="app-container">
11
+ <!-- Global Header (single unified element) -->
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>
16
+ <div class="header-divider"></div>
17
+ <span class="page-title">APEX Methodology</span>
18
+ <nav class="breadcrumb">
19
+ <a href="index.html">
20
+ <span data-lang="fr">Accueil</span>
21
+ <span data-lang="en">Home</span>
22
+ </a>
23
+ <span class="breadcrumb-separator">&#8250;</span>
24
+ <span data-lang="fr">Workflows</span>
25
+ <span data-lang="en">Workflows</span>
26
+ <span class="breadcrumb-separator">&#8250;</span>
27
+ <span class="breadcrumb-current">APEX</span>
28
+ </nav>
29
+ <!-- Language Select -->
30
+ <select class="lang-select" id="lang-select" onchange="setLanguage(this.value); localStorage.setItem('doc-language', this.value);">
31
+ <option value="fr">🇫🇷 FR</option>
32
+ <option value="en">🇬🇧 EN</option>
33
+ </select>
34
+ <!-- Search -->
35
+ <div class="header-search">
36
+ <div class="search-input-wrapper">
37
+ <span class="search-icon">&#128269;</span>
38
+ <input type="text" id="search-input" class="search-input" placeholder="Rechercher..." data-placeholder-fr="Rechercher..." data-placeholder-en="Search..." autocomplete="off">
39
+ <span class="search-shortcut">Ctrl+K</span>
40
+ </div>
41
+ <div id="search-results" class="search-results"></div>
42
+ </div>
43
+ </header>
44
+
45
+ <!-- App Body -->
46
+ <div class="app-body">
47
+ <!-- Sidebar -->
48
+ <aside class="sidebar">
49
+ <button class="sidebar-toggle" title="Toggle sidebar">
50
+ <span class="toggle-icon-collapse">&#171;</span>
51
+ <span class="toggle-icon-expand">&#187;</span>
52
+ </button>
53
+
54
+ <nav class="sidebar-nav">
55
+ <div class="nav-section">
56
+ <div class="nav-section-title">
57
+ <span data-lang="fr">Demarrage</span>
58
+ <span data-lang="en">Getting Started</span>
59
+ </div>
60
+ <a href="index.html" class="nav-item">
61
+ <span class="icon">&#127968;</span>
62
+ <span class="nav-text" data-lang="fr">Accueil</span>
63
+ <span class="nav-text" data-lang="en">Home</span>
64
+ </a>
65
+ <a href="installation.html" class="nav-item">
66
+ <span class="icon">&#128230;</span>
67
+ <span class="nav-text">Installation</span>
68
+ </a>
69
+ </div>
70
+
71
+ <div class="nav-section">
72
+ <div class="nav-section-title">Workflows</div>
73
+ <a href="gitflow.html" class="nav-item">
74
+ <span class="icon">&#128256;</span>
75
+ <span class="nav-text">GitFlow</span>
76
+ </a>
77
+ <a href="efcore.html" class="nav-item">
78
+ <span class="icon">&#128452;</span>
79
+ <span class="nav-text">EF Core</span>
80
+ </a>
81
+ <div class="nav-item-with-toc">
82
+ <a href="apex.html" class="active">
83
+ <span class="icon">&#127919;</span>
84
+ <span class="nav-text">APEX</span>
85
+ <button class="toc-toggle">&#9654;</button>
86
+ </a>
87
+ <nav class="sidebar-toc">
88
+ <a href="#introduction" class="sidebar-toc-link">Introduction</a>
89
+ <a href="#workflow" class="sidebar-toc-link">Workflow</a>
90
+ <a href="#analyze" class="sidebar-toc-link">1. Analyze</a>
91
+ <a href="#plan" class="sidebar-toc-link">2. Plan</a>
92
+ <a href="#execute" class="sidebar-toc-link">3. Execute</a>
93
+ <a href="#examine" class="sidebar-toc-link">4. eXamine</a>
94
+ <a href="#tasks" class="sidebar-toc-link">5. Tasks</a>
95
+ <a href="#best-practices" class="sidebar-toc-link">
96
+ <span data-lang="fr">Bonnes pratiques</span>
97
+ <span data-lang="en">Best Practices</span>
98
+ </a>
99
+ </nav>
100
+ </div>
101
+ <a href="business-analyse.html" class="nav-item">
102
+ <span class="icon">&#128202;</span>
103
+ <span class="nav-text">Business Analyse</span>
104
+ </a>
105
+ </div>
106
+
107
+ <div class="nav-section">
108
+ <div class="nav-section-title">
109
+ <span data-lang="fr">Outils</span>
110
+ <span data-lang="en">Tools</span>
111
+ </div>
112
+ <a href="agents.html" class="nav-item">
113
+ <span class="icon">&#129302;</span>
114
+ <span class="nav-text">Agents</span>
115
+ </a>
116
+ <a href="commands.html" class="nav-item">
117
+ <span class="icon">&#9889;</span>
118
+ <span class="nav-text" data-lang="fr">Commandes</span>
119
+ <span class="nav-text" data-lang="en">Commands</span>
120
+ </a>
121
+ <a href="hooks.html" class="nav-item">
122
+ <span class="icon">&#128279;</span>
123
+ <span class="nav-text">Hooks</span>
124
+ </a>
125
+ <a href="test-web.html" class="nav-item">
126
+ <span class="icon">&#127760;</span>
127
+ <span class="nav-text">Test Web</span>
128
+ </a>
129
+ </div>
130
+ </nav>
131
+
132
+ </aside>
133
+
134
+ <!-- Main Content -->
135
+ <main class="main-content">
136
+ <div class="content-full">
137
+ <!-- Introduction -->
138
+ <section id="introduction">
139
+ <h2>Introduction</h2>
140
+ <p data-lang="fr">
141
+ APEX (Analyze-Plan-Execute-eXamine) est une methodologie systematique pour l'implementation de features complexes. Elle garantit une approche structuree avec une comprehension complete du contexte avant d'ecrire du code.
142
+ </p>
143
+ <p data-lang="en">
144
+ APEX (Analyze-Plan-Execute-eXamine) is a systematic methodology for implementing complex features. It ensures a structured approach with complete context understanding before writing code.
145
+ </p>
146
+
147
+ <div class="alert alert-info">
148
+ <span class="alert-icon">&#127919;</span>
149
+ <div class="alert-content">
150
+ <h5 data-lang="fr">Principe fondamental</h5>
151
+ <h5 data-lang="en">Core Principle</h5>
152
+ <p data-lang="fr">
153
+ <strong>Context depth > Speed</strong>. Une analyse incomplete mene a des implementations defaillantes.
154
+ </p>
155
+ <p data-lang="en">
156
+ <strong>Context depth > Speed</strong>. Incomplete analysis leads to failed implementations.
157
+ </p>
158
+ </div>
159
+ </div>
160
+ </section>
161
+
162
+ <!-- Workflow Diagram -->
163
+ <section id="workflow">
164
+ <h2>Workflow</h2>
165
+
166
+ <div class="svg-diagram">
167
+ <svg viewBox="0 0 500 400" xmlns="http://www.w3.org/2000/svg" style="font-family: 'Inter', system-ui, sans-serif;">
168
+ <defs>
169
+ <!-- Gradients for each phase -->
170
+ <linearGradient id="analyzeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
171
+ <stop offset="0%" style="stop-color:#3b82f6"/>
172
+ <stop offset="100%" style="stop-color:#1d4ed8"/>
173
+ </linearGradient>
174
+ <linearGradient id="planGrad" x1="0%" y1="0%" x2="100%" y2="100%">
175
+ <stop offset="0%" style="stop-color:#8b5cf6"/>
176
+ <stop offset="100%" style="stop-color:#6d28d9"/>
177
+ </linearGradient>
178
+ <linearGradient id="executeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
179
+ <stop offset="0%" style="stop-color:#22c55e"/>
180
+ <stop offset="100%" style="stop-color:#15803d"/>
181
+ </linearGradient>
182
+ <linearGradient id="examineGrad" x1="0%" y1="0%" x2="100%" y2="100%">
183
+ <stop offset="0%" style="stop-color:#f97316"/>
184
+ <stop offset="100%" style="stop-color:#c2410c"/>
185
+ </linearGradient>
186
+ <!-- Glow filter -->
187
+ <filter id="glow2" x="-20%" y="-20%" width="140%" height="140%">
188
+ <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
189
+ <feMerge>
190
+ <feMergeNode in="coloredBlur"/>
191
+ <feMergeNode in="SourceGraphic"/>
192
+ </feMerge>
193
+ </filter>
194
+ <!-- Arrow marker -->
195
+ <marker id="arrowhead" markerWidth="10" markerHeight="7" refX="9" refY="3.5" orient="auto">
196
+ <polygon points="0 0, 10 3.5, 0 7" fill="#94a3b8"/>
197
+ </marker>
198
+ </defs>
199
+
200
+ <!-- Center circle with APEX text -->
201
+ <circle cx="250" cy="200" r="50" fill="#1e293b" stroke="#334155" stroke-width="2"/>
202
+ <text x="250" y="195" text-anchor="middle" fill="#e2e8f0" font-size="20" font-weight="700">APEX</text>
203
+ <text x="250" y="215" text-anchor="middle" fill="#94a3b8" font-size="10">Methodology</text>
204
+
205
+ <!-- Connecting arrows (circular path) -->
206
+ <path d="M 170 120 Q 80 200 170 280" fill="none" stroke="#94a3b8" stroke-width="2" stroke-dasharray="5,5"/>
207
+ <path d="M 170 280 Q 250 360 330 280" fill="none" stroke="#94a3b8" stroke-width="2" stroke-dasharray="5,5"/>
208
+ <path d="M 330 280 Q 420 200 330 120" fill="none" stroke="#94a3b8" stroke-width="2" stroke-dasharray="5,5"/>
209
+ <path d="M 330 120 Q 250 40 170 120" fill="none" stroke="#94a3b8" stroke-width="2" stroke-dasharray="5,5"/>
210
+
211
+ <!-- Phase 1: ANALYZE (top-left) -->
212
+ <g transform="translate(100, 80)" filter="url(#glow2)">
213
+ <rect x="0" y="0" width="140" height="70" rx="12" fill="url(#analyzeGrad)"/>
214
+ <text x="70" y="30" text-anchor="middle" fill="white" font-size="11" font-weight="500">1. ANALYZE</text>
215
+ <text x="70" y="50" text-anchor="middle" fill="rgba(255,255,255,0.7)" font-size="9">Gather context</text>
216
+ <circle cx="12" cy="12" r="14" fill="#1d4ed8" stroke="white" stroke-width="2"/>
217
+ <text x="12" y="17" text-anchor="middle" fill="white" font-size="12" font-weight="700">A</text>
218
+ </g>
219
+
220
+ <!-- Phase 2: PLAN (top-right) -->
221
+ <g transform="translate(260, 80)" filter="url(#glow2)">
222
+ <rect x="0" y="0" width="140" height="70" rx="12" fill="url(#planGrad)"/>
223
+ <text x="70" y="30" text-anchor="middle" fill="white" font-size="11" font-weight="500">2. PLAN</text>
224
+ <text x="70" y="50" text-anchor="middle" fill="rgba(255,255,255,0.7)" font-size="9">Design strategy</text>
225
+ <circle cx="12" cy="12" r="14" fill="#6d28d9" stroke="white" stroke-width="2"/>
226
+ <text x="12" y="17" text-anchor="middle" fill="white" font-size="12" font-weight="700">P</text>
227
+ </g>
228
+
229
+ <!-- Phase 3: EXECUTE (bottom-right) -->
230
+ <g transform="translate(260, 250)" filter="url(#glow2)">
231
+ <rect x="0" y="0" width="140" height="70" rx="12" fill="url(#executeGrad)"/>
232
+ <text x="70" y="30" text-anchor="middle" fill="white" font-size="11" font-weight="500">3. EXECUTE</text>
233
+ <text x="70" y="50" text-anchor="middle" fill="rgba(255,255,255,0.7)" font-size="9">Implement code</text>
234
+ <circle cx="12" cy="12" r="14" fill="#15803d" stroke="white" stroke-width="2"/>
235
+ <text x="12" y="17" text-anchor="middle" fill="white" font-size="12" font-weight="700">E</text>
236
+ </g>
237
+
238
+ <!-- Phase 4: eXAMINE (bottom-left) -->
239
+ <g transform="translate(100, 250)" filter="url(#glow2)">
240
+ <rect x="0" y="0" width="140" height="70" rx="12" fill="url(#examineGrad)"/>
241
+ <text x="70" y="30" text-anchor="middle" fill="white" font-size="11" font-weight="500">4. eXAMINE</text>
242
+ <text x="70" y="50" text-anchor="middle" fill="rgba(255,255,255,0.7)" font-size="9">Validate & test</text>
243
+ <circle cx="12" cy="12" r="14" fill="#c2410c" stroke="white" stroke-width="2"/>
244
+ <text x="12" y="17" text-anchor="middle" fill="white" font-size="12" font-weight="700">X</text>
245
+ </g>
246
+
247
+ <!-- Directional arrows between phases -->
248
+ <polygon points="240,115 250,100 260,115" fill="#94a3b8"/>
249
+ <polygon points="385,185 400,200 385,215" fill="#94a3b8"/>
250
+ <polygon points="260,285 250,300 240,285" fill="#94a3b8"/>
251
+ <polygon points="115,215 100,200 115,185" fill="#94a3b8"/>
252
+ </svg>
253
+ </div>
254
+
255
+ <p data-lang="fr">Chaque phase produit un artefact qui sert d'input a la phase suivante :</p>
256
+ <p data-lang="en">Each phase produces an artifact that serves as input for the next phase:</p>
257
+
258
+ <div class="table-container">
259
+ <table>
260
+ <thead>
261
+ <tr>
262
+ <th>Phase</th>
263
+ <th>
264
+ <span data-lang="fr">Commande</span>
265
+ <span data-lang="en">Command</span>
266
+ </th>
267
+ <th>
268
+ <span data-lang="fr">Artefact</span>
269
+ <span data-lang="en">Artifact</span>
270
+ </th>
271
+ </tr>
272
+ </thead>
273
+ <tbody>
274
+ <tr>
275
+ <td><strong>Analyze</strong></td>
276
+ <td><code>/apex:1-analyze</code></td>
277
+ <td><code>analyze.md</code></td>
278
+ </tr>
279
+ <tr>
280
+ <td><strong>Plan</strong></td>
281
+ <td><code>/apex:2-plan</code></td>
282
+ <td><code>plan.md</code></td>
283
+ </tr>
284
+ <tr>
285
+ <td><strong>Execute</strong></td>
286
+ <td><code>/apex:3-execute</code></td>
287
+ <td><code>implementation.md</code></td>
288
+ </tr>
289
+ <tr>
290
+ <td><strong>eXamine</strong></td>
291
+ <td><code>/apex:4-examine</code></td>
292
+ <td><code>validation.md</code></td>
293
+ </tr>
294
+ <tr>
295
+ <td><strong>Tasks</strong></td>
296
+ <td><code>/apex:5-tasks</code></td>
297
+ <td><code>task-*.md</code></td>
298
+ </tr>
299
+ </tbody>
300
+ </table>
301
+ </div>
302
+ </section>
303
+
304
+ <!-- Phase 1: Analyze -->
305
+ <section id="analyze">
306
+ <h2>
307
+ <span style="color: var(--info);">1.</span> Analyze
308
+ </h2>
309
+
310
+ <p data-lang="fr">
311
+ La phase d'analyse collecte tout le contexte necessaire avant l'implementation. Elle utilise des agents paralleles pour explorer le codebase, la documentation et le web.
312
+ </p>
313
+ <p data-lang="en">
314
+ The analysis phase collects all necessary context before implementation. It uses parallel agents to explore the codebase, documentation, and web.
315
+ </p>
316
+
317
+ <div class="command-card">
318
+ <div class="command-header">
319
+ <code class="command-name">/apex:1-analyze</code>
320
+ <span class="tag tag-command">Analysis</span>
321
+ </div>
322
+ <div class="command-body">
323
+ <div class="code-block">
324
+ <button class="copy-btn">Copy</button>
325
+ <pre><code>/apex:1-analyze Add user authentication with JWT tokens</code></pre>
326
+ </div>
327
+
328
+ <details class="template-section">
329
+ <summary>
330
+ <h4 style="display: inline; margin: 0;">
331
+ <span data-lang="fr">Template Prompt</span>
332
+ <span data-lang="en">Prompt Template</span>
333
+ </h4>
334
+ <span class="template-badge">1-analyze.md</span>
335
+ </summary>
336
+ <div class="template-content">
337
+ <p class="template-path">
338
+ <code>templates/commands/apex/1-analyze.md</code>
339
+ </p>
340
+ <div class="code-block template-code">
341
+ <button class="copy-btn">Copy</button>
342
+ <pre><code>---
343
+ description: Analyze phase - gather all context and create analysis report
344
+ argument-hint: &lt;task-description&gt;
345
+ ---
346
+
347
+ You are an analysis specialist. Your mission is to gather ALL relevant context before implementation.
348
+
349
+ **You need to ULTRA THINK before launching agents.**
350
+
351
+ ## Workflow
352
+
353
+ 1. **SETUP TASK FOLDER**: Create organized workspace in .claude/tasks
354
+ - Find next task number: Check `.claude/tasks/` for existing folders
355
+ - Parse task description to create kebab-case name
356
+ - Create `.claude/tasks/nn-task-name/` folder structure
357
+ - **EXAMPLE**: "Add user authentication" → `.claude/tasks/01-add-user-authentication/`
358
+
359
+ 2. **ULTRA THINK**: Plan analysis strategy
360
+ - **CRITICAL**: Know EXACTLY what to search for before launching agents
361
+ - Identify key concepts, files, patterns to find
362
+ - Determine which sources need analysis (codebase/docs/web)
363
+
364
+ 3. **LAUNCH PARALLEL ANALYSIS**: Gather context from all sources
365
+ - **Codebase exploration** (`explore-codebase` agent)
366
+ - **Documentation exploration** (`explore-docs` agent)
367
+ - **Web research** (`websearch` agent)
368
+ - **CRITICAL**: Launch ALL agents in parallel
369
+
370
+ 4. **SYNTHESIZE FINDINGS**: Create comprehensive analysis report
371
+
372
+ 5. **SAVE ANALYSIS**: Write to `analyze.md`
373
+ ```markdown
374
+ # Task: [Description]
375
+
376
+ ## Codebase Context
377
+ [Findings from codebase exploration]
378
+
379
+ ## Documentation Insights
380
+ [Key information from docs]
381
+
382
+ ## Key Files
383
+ - `path/to/file.ts:line` - Purpose
384
+
385
+ ## Patterns to Follow
386
+ [Existing conventions]
387
+ ```
388
+
389
+ ## Priority
390
+ Context depth > Speed. Missing context causes failed implementations.</code></pre>
391
+ </div>
392
+ </div>
393
+ </details>
394
+ </div>
395
+ </div>
396
+
397
+ <h3 data-lang="fr">Agents utilises</h3>
398
+ <h3 data-lang="en">Agents used</h3>
399
+
400
+ <div class="card-grid">
401
+ <div class="card">
402
+ <div class="card-header">
403
+ <div class="card-icon">&#128269;</div>
404
+ <div>
405
+ <div class="card-title">explore-codebase</div>
406
+ </div>
407
+ </div>
408
+ <div class="card-body">
409
+ <p data-lang="fr">Explore le codebase pour trouver des implementations similaires, patterns et conventions.</p>
410
+ <p data-lang="en">Explores codebase to find similar implementations, patterns and conventions.</p>
411
+ </div>
412
+ </div>
413
+
414
+ <div class="card">
415
+ <div class="card-header">
416
+ <div class="card-icon">&#128214;</div>
417
+ <div>
418
+ <div class="card-title">explore-docs</div>
419
+ </div>
420
+ </div>
421
+ <div class="card-body">
422
+ <p data-lang="fr">Recherche dans la documentation des librairies pour les APIs et best practices.</p>
423
+ <p data-lang="en">Searches library documentation for APIs and best practices.</p>
424
+ </div>
425
+ </div>
426
+
427
+ <div class="card">
428
+ <div class="card-header">
429
+ <div class="card-icon">&#127760;</div>
430
+ <div>
431
+ <div class="card-title">websearch</div>
432
+ </div>
433
+ </div>
434
+ <div class="card-body">
435
+ <p data-lang="fr">Recherche sur le web les dernieres approches et solutions.</p>
436
+ <p data-lang="en">Searches the web for latest approaches and solutions.</p>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </section>
441
+
442
+ <!-- Phase 2: Plan -->
443
+ <section id="plan">
444
+ <h2>
445
+ <span style="color: #8b5cf6;">2.</span> Plan
446
+ </h2>
447
+
448
+ <p data-lang="fr">
449
+ La phase de planification transforme l'analyse en un plan d'implementation detaille, organise par fichier.
450
+ </p>
451
+ <p data-lang="en">
452
+ The planning phase transforms the analysis into a detailed implementation plan, organized by file.
453
+ </p>
454
+
455
+ <div class="command-card">
456
+ <div class="command-header">
457
+ <code class="command-name">/apex:2-plan</code>
458
+ <span class="tag tag-workflow">Planning</span>
459
+ </div>
460
+ <div class="command-body">
461
+ <div class="code-block">
462
+ <button class="copy-btn">Copy</button>
463
+ <pre><code>/apex:2-plan 01-add-user-authentication</code></pre>
464
+ </div>
465
+
466
+ <details class="template-section">
467
+ <summary>
468
+ <h4 style="display: inline; margin: 0;">
469
+ <span data-lang="fr">Template Prompt</span>
470
+ <span data-lang="en">Prompt Template</span>
471
+ </h4>
472
+ <span class="template-badge">2-plan.md</span>
473
+ </summary>
474
+ <div class="template-content">
475
+ <p class="template-path">
476
+ <code>templates/commands/apex/2-plan.md</code>
477
+ </p>
478
+ <div class="code-block template-code">
479
+ <button class="copy-btn">Copy</button>
480
+ <pre><code>---
481
+ description: Planning phase - create detailed implementation strategy from analysis
482
+ argument-hint: &lt;task-folder-path&gt;
483
+ ---
484
+
485
+ You are a strategic planning specialist. Transform analysis findings into executable plans.
486
+
487
+ **You need to ULTRA THINK about the complete implementation strategy.**
488
+
489
+ ## Workflow
490
+
491
+ 1. **VALIDATE INPUT**: Verify task folder exists
492
+ - Check that `.claude/tasks/&lt;task-folder&gt;/` exists
493
+ - Verify `analyze.md` file is present
494
+
495
+ 2. **READ ANALYSIS**: Load all context
496
+
497
+ 3. **ULTRA THINK PLANNING**: Design comprehensive strategy
498
+ - **CRITICAL**: Think through ENTIRE implementation before writing
499
+ - Consider all edge cases and dependencies
500
+ - Plan file changes in logical dependency order
501
+
502
+ 4. **ASK FOR CLARITY**: Resolve ambiguities
503
+ - **STOP**: If anything is unclear about requirements
504
+ - **NEVER ASSUME**: Always clarify before planning
505
+
506
+ 5. **CREATE DETAILED PLAN**: Write file-by-file implementation guide
507
+ - **Structure**: Group by file, NOT by feature
508
+ - **Format**: Action-oriented, no code snippets
509
+
510
+ ## Plan Quality Guidelines
511
+
512
+ ### Good Plan Entry
513
+ ```markdown
514
+ ### `src/auth/middleware.ts`
515
+ - Add validateToken function that checks JWT expiration
516
+ - Extract token from Authorization header (follow pattern in `src/api/auth.ts:45`)
517
+ - Return 401 if token invalid or expired
518
+ ```
519
+
520
+ ### Bad Plan Entry
521
+ ```markdown
522
+ ### `src/auth/middleware.ts`
523
+ - Add authentication
524
+ - Fix security issues
525
+ ```
526
+
527
+ ## Priority
528
+ Clarity > Completeness. Every step must be unambiguous and executable.</code></pre>
529
+ </div>
530
+ </div>
531
+ </details>
532
+ </div>
533
+ </div>
534
+
535
+ <div class="alert alert-warning">
536
+ <span class="alert-icon">&#9888;</span>
537
+ <div class="alert-content">
538
+ <h5 data-lang="fr">Pas de code dans le plan</h5>
539
+ <h5 data-lang="en">No code in the plan</h5>
540
+ <p data-lang="fr">
541
+ Le plan decrit les <strong>actions</strong>, pas les implementations. Chaque item doit etre clair et executable sans montrer de code.
542
+ </p>
543
+ <p data-lang="en">
544
+ The plan describes <strong>actions</strong>, not implementations. Each item must be clear and executable without showing code.
545
+ </p>
546
+ </div>
547
+ </div>
548
+ </section>
549
+
550
+ <!-- Phase 3: Execute -->
551
+ <section id="execute">
552
+ <h2>
553
+ <span style="color: var(--success);">3.</span> Execute
554
+ </h2>
555
+
556
+ <p data-lang="fr">
557
+ La phase d'execution implemente le plan etape par etape, en suivant les patterns identifies lors de l'analyse.
558
+ </p>
559
+ <p data-lang="en">
560
+ The execution phase implements the plan step by step, following patterns identified during analysis.
561
+ </p>
562
+
563
+ <div class="command-card">
564
+ <div class="command-header">
565
+ <code class="command-name">/apex:3-execute</code>
566
+ <span class="tag tag-command">Implementation</span>
567
+ </div>
568
+ <div class="command-body">
569
+ <div class="code-block">
570
+ <button class="copy-btn">Copy</button>
571
+ <pre><code>/apex:3-execute 01-add-user-authentication</code></pre>
572
+ </div>
573
+
574
+ <details class="template-section">
575
+ <summary>
576
+ <h4 style="display: inline; margin: 0;">
577
+ <span data-lang="fr">Template Prompt</span>
578
+ <span data-lang="en">Prompt Template</span>
579
+ </h4>
580
+ <span class="template-badge">3-execute.md</span>
581
+ </summary>
582
+ <div class="template-content">
583
+ <p class="template-path">
584
+ <code>templates/commands/apex/3-execute.md</code>
585
+ </p>
586
+ <div class="code-block template-code">
587
+ <button class="copy-btn">Copy</button>
588
+ <pre><code>---
589
+ description: Execution phase - implement the plan step by step with ultra thinking
590
+ argument-hint: &lt;task-folder-path&gt;
591
+ ---
592
+
593
+ You are an implementation specialist. Execute plans precisely while maintaining code quality.
594
+
595
+ **You need to ULTRA THINK at every step.**
596
+
597
+ ## Workflow
598
+
599
+ 1. **VALIDATE INPUT**: Verify task folder is ready
600
+ 2. **LOAD CONTEXT**: Read analyze.md and plan.md
601
+
602
+ 3. **CREATE TODO LIST**: Track implementation progress
603
+ - **CRITICAL**: Use TodoWrite to create todos from plan
604
+ - Break down each file change into separate todo items
605
+
606
+ 4. **ULTRA THINK BEFORE EACH CHANGE**: Plan every modification
607
+ - **BEFORE** editing any file:
608
+ - Think through the exact changes needed
609
+ - Review analysis findings for patterns to follow
610
+ - **NEVER** make changes without thinking first
611
+
612
+ 5. **IMPLEMENT STEP BY STEP**: Execute plan methodically
613
+ - **ONE TODO AT A TIME**: Mark in_progress, complete, then move to next
614
+ - **Follow existing patterns**
615
+ - **Stay strictly in scope**
616
+
617
+ 6. **FORMAT AND LINT**: Clean up code
618
+ 7. **TEST PHASE**: Verify implementation works
619
+
620
+ ## Implementation Quality Rules
621
+
622
+ ### Code Style
623
+ - **NO COMMENTS**: Use clear names instead
624
+ - **MATCH PATTERNS**: Follow existing codebase conventions exactly
625
+ - **MINIMAL CHANGES**: Only touch what's needed
626
+
627
+ ### Scope Management
628
+ - **STRICTLY IN SCOPE**: Implement only what's in the plan
629
+ - **NO REFACTORING**: Don't improve unrelated code
630
+ - **NO EXTRAS**: Don't add unrequested features
631
+
632
+ ## Priority
633
+ Correctness > Completeness > Speed</code></pre>
634
+ </div>
635
+ </div>
636
+ </details>
637
+ </div>
638
+ </div>
639
+
640
+ <h3 data-lang="fr">Regles d'implementation</h3>
641
+ <h3 data-lang="en">Implementation Rules</h3>
642
+
643
+ <div class="best-practice">
644
+ <h4>
645
+ <span class="bp-icon">&#9989;</span>
646
+ <span data-lang="fr">Ultra Think avant chaque modification</span>
647
+ <span data-lang="en">Ultra Think before each modification</span>
648
+ </h4>
649
+ <p data-lang="fr">
650
+ Avant d'editer un fichier, reflechir aux changements exacts necessaires, revoir les patterns de l'analyse, et considerer l'impact sur les autres fichiers.
651
+ </p>
652
+ <p data-lang="en">
653
+ Before editing a file, think through the exact changes needed, review patterns from analysis, and consider impact on other files.
654
+ </p>
655
+ </div>
656
+
657
+ <div class="best-practice">
658
+ <h4>
659
+ <span class="bp-icon">&#9989;</span>
660
+ <span data-lang="fr">Un todo a la fois</span>
661
+ <span data-lang="en">One todo at a time</span>
662
+ </h4>
663
+ <p data-lang="fr">
664
+ Marquer le todo comme <code>in_progress</code>, completer la tache, puis marquer comme <code>completed</code> avant de passer au suivant.
665
+ </p>
666
+ <p data-lang="en">
667
+ Mark the todo as <code>in_progress</code>, complete the task, then mark as <code>completed</code> before moving to the next.
668
+ </p>
669
+ </div>
670
+
671
+ <div class="best-practice">
672
+ <h4>
673
+ <span class="bp-icon">&#9989;</span>
674
+ <span data-lang="fr">Rester dans le scope</span>
675
+ <span data-lang="en">Stay in scope</span>
676
+ </h4>
677
+ <p data-lang="fr">
678
+ Implementer uniquement ce qui est dans le plan. Pas de refactoring non demande, pas de features supplementaires.
679
+ </p>
680
+ <p data-lang="en">
681
+ Implement only what's in the plan. No unrequested refactoring, no extra features.
682
+ </p>
683
+ </div>
684
+ </section>
685
+
686
+ <!-- Phase 4: eXamine -->
687
+ <section id="examine">
688
+ <h2>
689
+ <span style="color: var(--secondary);">4.</span> eXamine
690
+ </h2>
691
+
692
+ <p data-lang="fr">
693
+ La phase d'examination valide l'implementation et s'assure que tout fonctionne correctement.
694
+ </p>
695
+ <p data-lang="en">
696
+ The examination phase validates the implementation and ensures everything works correctly.
697
+ </p>
698
+
699
+ <div class="command-card">
700
+ <div class="command-header">
701
+ <code class="command-name">/apex:4-examine</code>
702
+ <span class="tag tag-workflow">Validation</span>
703
+ </div>
704
+ <div class="command-body">
705
+ <div class="code-block">
706
+ <button class="copy-btn">Copy</button>
707
+ <pre><code>/apex:4-examine 01-add-user-authentication</code></pre>
708
+ </div>
709
+
710
+ <details class="template-section">
711
+ <summary>
712
+ <h4 style="display: inline; margin: 0;">
713
+ <span data-lang="fr">Template Prompt</span>
714
+ <span data-lang="en">Prompt Template</span>
715
+ </h4>
716
+ <span class="template-badge">4-examine.md</span>
717
+ </summary>
718
+ <div class="template-content">
719
+ <p class="template-path">
720
+ <code>templates/commands/apex/4-examine.md</code>
721
+ </p>
722
+ <div class="code-block template-code">
723
+ <button class="copy-btn">Copy</button>
724
+ <pre><code>---
725
+ description: Examine phase - validate and test application for deployment readiness
726
+ allowed-tools: Bash(npm :*), Bash(pnpm :*), Read, Task, Grep
727
+ ---
728
+
729
+ You are a validation specialist. Ensure implementation is complete and correct.
730
+
731
+ ## Workflow
732
+
733
+ 1. **LOAD CONTEXT**: Read analyze.md, plan.md, and implementation.md
734
+
735
+ 2. **RUN VALIDATION SUITE**: Execute all checks
736
+ - Type checking: npm run typecheck
737
+ - Linting: npm run lint
738
+ - Unit tests: npm run test
739
+ - Build: npm run build
740
+ - E2E tests: npm run test:e2e (if applicable)
741
+
742
+ 3. **VERIFY IMPLEMENTATION**: Cross-check against plan
743
+ - Every plan item is implemented
744
+ - No extra changes outside scope
745
+ - Code follows identified patterns
746
+
747
+ 4. **CREATE VALIDATION REPORT**: Write to validation.md
748
+ ```markdown
749
+ # Validation Report
750
+
751
+ ## Checks Passed
752
+ - [x] Type checking
753
+ - [x] Linting
754
+ - [x] Unit tests
755
+ - [x] Build
756
+
757
+ ## Implementation Verification
758
+ - [x] All plan items implemented
759
+ - [x] No scope creep
760
+ - [x] Patterns followed
761
+
762
+ ## Issues Found
763
+ [List any issues or "None"]
764
+
765
+ ## Status: PASSED/FAILED
766
+ ```
767
+
768
+ 5. **FIX ISSUES**: If validation fails, fix and re-run
769
+
770
+ ## Priority
771
+ Quality > Speed. Never approve a failing implementation.</code></pre>
772
+ </div>
773
+ </div>
774
+ </details>
775
+ </div>
776
+ </div>
777
+
778
+ <h3 data-lang="fr">Checklist de validation</h3>
779
+ <h3 data-lang="en">Validation Checklist</h3>
780
+
781
+ <div class="table-container">
782
+ <table>
783
+ <thead>
784
+ <tr>
785
+ <th>
786
+ <span data-lang="fr">Verification</span>
787
+ <span data-lang="en">Check</span>
788
+ </th>
789
+ <th>
790
+ <span data-lang="fr">Commande</span>
791
+ <span data-lang="en">Command</span>
792
+ </th>
793
+ </tr>
794
+ </thead>
795
+ <tbody>
796
+ <tr>
797
+ <td>
798
+ <span data-lang="fr">Type checking</span>
799
+ <span data-lang="en">Type checking</span>
800
+ </td>
801
+ <td><code>npm run typecheck</code></td>
802
+ </tr>
803
+ <tr>
804
+ <td>Linting</td>
805
+ <td><code>npm run lint</code></td>
806
+ </tr>
807
+ <tr>
808
+ <td>
809
+ <span data-lang="fr">Tests unitaires</span>
810
+ <span data-lang="en">Unit tests</span>
811
+ </td>
812
+ <td><code>npm run test</code></td>
813
+ </tr>
814
+ <tr>
815
+ <td>Build</td>
816
+ <td><code>npm run build</code></td>
817
+ </tr>
818
+ <tr>
819
+ <td>
820
+ <span data-lang="fr">Tests E2E</span>
821
+ <span data-lang="en">E2E tests</span>
822
+ </td>
823
+ <td><code>npm run test:e2e</code></td>
824
+ </tr>
825
+ </tbody>
826
+ </table>
827
+ </div>
828
+ </section>
829
+
830
+ <!-- Phase 5: Tasks -->
831
+ <section id="tasks">
832
+ <h2>
833
+ <span style="color: var(--accent);">5.</span> Tasks
834
+ </h2>
835
+
836
+ <p data-lang="fr">
837
+ La phase Tasks divise le plan en fichiers de taches individuels, utiles pour les grandes implementations ou le travail en equipe.
838
+ </p>
839
+ <p data-lang="en">
840
+ The Tasks phase divides the plan into individual task files, useful for large implementations or team work.
841
+ </p>
842
+
843
+ <div class="command-card">
844
+ <div class="command-header">
845
+ <code class="command-name">/apex:5-tasks</code>
846
+ <span class="tag tag-command">Division</span>
847
+ </div>
848
+ <div class="command-body">
849
+ <div class="code-block">
850
+ <button class="copy-btn">Copy</button>
851
+ <pre><code>/apex:5-tasks 01-add-user-authentication</code></pre>
852
+ </div>
853
+
854
+ <details class="template-section">
855
+ <summary>
856
+ <h4 style="display: inline; margin: 0;">
857
+ <span data-lang="fr">Template Prompt</span>
858
+ <span data-lang="en">Prompt Template</span>
859
+ </h4>
860
+ <span class="template-badge">5-tasks.md</span>
861
+ </summary>
862
+ <div class="template-content">
863
+ <p class="template-path">
864
+ <code>templates/commands/apex/5-tasks.md</code>
865
+ </p>
866
+ <div class="code-block template-code">
867
+ <button class="copy-btn">Copy</button>
868
+ <pre><code>---
869
+ description: Task creation - divide plan into small, actionable task files
870
+ argument-hint: &lt;task-folder-path&gt;
871
+ ---
872
+
873
+ You are a task division specialist. Break down plans into executable task files.
874
+
875
+ ## Workflow
876
+
877
+ 1. **LOAD CONTEXT**: Read analyze.md and plan.md
878
+
879
+ 2. **IDENTIFY TASK BOUNDARIES**: Group related changes
880
+ - Each task should be independently testable
881
+ - Tasks should follow dependency order
882
+ - Target 15-30 minutes per task
883
+
884
+ 3. **CREATE TASK FILES**: For each logical unit
885
+ ```markdown
886
+ # Task: [Short Name]
887
+
888
+ ## Context
889
+ [Relevant context from analyze.md]
890
+
891
+ ## Objective
892
+ [Clear, single objective]
893
+
894
+ ## Files to Modify
895
+ - `path/to/file.ts` - [changes]
896
+
897
+ ## Steps
898
+ 1. [Action 1]
899
+ 2. [Action 2]
900
+
901
+ ## Acceptance Criteria
902
+ - [ ] [Criterion 1]
903
+ - [ ] [Criterion 2]
904
+
905
+ ## Dependencies
906
+ - Requires: [Previous tasks]
907
+ - Enables: [Next tasks]
908
+ ```
909
+
910
+ 4. **SAVE TASKS**: Write to task-NN-name.md files
911
+
912
+ ## Task Naming
913
+ - task-01-setup-config.md
914
+ - task-02-create-types.md
915
+ - task-03-implement-service.md
916
+
917
+ ## Priority
918
+ Clarity > Granularity. Each task must be self-contained.</code></pre>
919
+ </div>
920
+ </div>
921
+ </details>
922
+
923
+ <p data-lang="fr">Genere des fichiers de taches individuels :</p>
924
+ <p data-lang="en">Generates individual task files:</p>
925
+
926
+ <div class="code-block">
927
+ <pre><code>.claude/tasks/01-add-user-authentication/
928
+ ├── analyze.md
929
+ ├── plan.md
930
+ ├── task-01-setup-jwt-config.md
931
+ ├── task-02-create-auth-middleware.md
932
+ ├── task-03-implement-login-endpoint.md
933
+ ├── task-04-add-token-refresh.md
934
+ └── task-05-write-tests.md</code></pre>
935
+ </div>
936
+ </div>
937
+ </div>
938
+ </section>
939
+
940
+ <!-- Best Practices -->
941
+ <section id="best-practices">
942
+ <h2>
943
+ <span data-lang="fr">Bonnes pratiques</span>
944
+ <span data-lang="en">Best Practices</span>
945
+ </h2>
946
+
947
+ <div class="best-practice">
948
+ <h4>
949
+ <span class="bp-icon">&#9989;</span>
950
+ <span data-lang="fr">Toujours commencer par /apex:1-analyze</span>
951
+ <span data-lang="en">Always start with /apex:1-analyze</span>
952
+ </h4>
953
+ <p data-lang="fr">
954
+ Ne jamais sauter l'analyse. Une comprehension incomplete du contexte mene a des implementations defaillantes.
955
+ </p>
956
+ <p data-lang="en">
957
+ Never skip analysis. Incomplete context understanding leads to failed implementations.
958
+ </p>
959
+ </div>
960
+
961
+ <div class="best-practice">
962
+ <h4>
963
+ <span class="bp-icon">&#9989;</span>
964
+ <span data-lang="fr">Utiliser /apex pour les taches complexes</span>
965
+ <span data-lang="en">Use /apex for complex tasks</span>
966
+ </h4>
967
+ <p data-lang="fr">
968
+ Pour les taches simples (renommer une variable, corriger un bug evident), utilisez directement la commande appropriee sans passer par APEX.
969
+ </p>
970
+ <p data-lang="en">
971
+ For simple tasks (renaming a variable, fixing an obvious bug), use the appropriate command directly without going through APEX.
972
+ </p>
973
+ </div>
974
+
975
+ <div class="best-practice">
976
+ <h4>
977
+ <span class="bp-icon">&#9989;</span>
978
+ <span data-lang="fr">Verifier les artefacts entre chaque phase</span>
979
+ <span data-lang="en">Review artifacts between each phase</span>
980
+ </h4>
981
+ <p data-lang="fr">
982
+ Avant de passer a la phase suivante, lire l'artefact genere pour s'assurer qu'il est complet et correct.
983
+ </p>
984
+ <p data-lang="en">
985
+ Before moving to the next phase, read the generated artifact to ensure it's complete and correct.
986
+ </p>
987
+ </div>
988
+
989
+ <div class="alert alert-info">
990
+ <span class="alert-icon">&#128161;</span>
991
+ <div class="alert-content">
992
+ <h5 data-lang="fr">Raccourci</h5>
993
+ <h5 data-lang="en">Shortcut</h5>
994
+ <p data-lang="fr">
995
+ Utilisez <code>/apex &lt;description&gt;</code> pour lancer le workflow complet en une seule commande. Claude executera automatiquement toutes les phases.
996
+ </p>
997
+ <p data-lang="en">
998
+ Use <code>/apex &lt;description&gt;</code> to launch the complete workflow in a single command. Claude will automatically execute all phases.
999
+ </p>
1000
+ </div>
1001
+ </div>
1002
+ </section>
1003
+ </div>
1004
+ </main>
1005
+ </div>
1006
+ </div>
1007
+
1008
+ <!-- Mobile Menu Button -->
1009
+ <button class="mobile-menu-btn">&#9776;</button>
1010
+ <div class="overlay"></div>
1011
+
1012
+ <script src="js/app.js"></script>
1013
+ </body>
1014
+ </html>