@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,912 @@
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>Agents - 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" data-lang="fr">Agents Spécialisés</span>
18
+ <span class="page-title" data-lang="en">Specialized Agents</span>
19
+ <nav class="breadcrumb">
20
+ <a href="index.html">
21
+ <span data-lang="fr">Accueil</span>
22
+ <span data-lang="en">Home</span>
23
+ </a>
24
+ <span class="breadcrumb-separator">&#8250;</span>
25
+ <span data-lang="fr">Outils</span>
26
+ <span data-lang="en">Tools</span>
27
+ <span class="breadcrumb-separator">&#8250;</span>
28
+ <span class="breadcrumb-current">Agents</span>
29
+ </nav>
30
+ <!-- Language Select -->
31
+ <select class="lang-select" id="lang-select" onchange="setLanguage(this.value); localStorage.setItem('doc-language', this.value);">
32
+ <option value="fr">🇫🇷 FR</option>
33
+ <option value="en">🇬🇧 EN</option>
34
+ </select>
35
+ <!-- Search -->
36
+ <div class="header-search">
37
+ <div class="search-input-wrapper">
38
+ <span class="search-icon">&#128269;</span>
39
+ <input type="text" id="search-input" class="search-input" placeholder="Rechercher..." data-placeholder-fr="Rechercher..." data-placeholder-en="Search..." autocomplete="off">
40
+ <span class="search-shortcut">Ctrl+K</span>
41
+ </div>
42
+ <div id="search-results" class="search-results"></div>
43
+ </div>
44
+ </header>
45
+
46
+ <!-- App Body -->
47
+ <div class="app-body">
48
+ <!-- Sidebar -->
49
+ <aside class="sidebar">
50
+ <button class="sidebar-toggle" title="Toggle sidebar">
51
+ <span class="toggle-icon-collapse">&#171;</span>
52
+ <span class="toggle-icon-expand">&#187;</span>
53
+ </button>
54
+
55
+ <nav class="sidebar-nav">
56
+ <div class="nav-section">
57
+ <div class="nav-section-title">
58
+ <span data-lang="fr">Demarrage</span>
59
+ <span data-lang="en">Getting Started</span>
60
+ </div>
61
+ <a href="index.html" class="nav-item">
62
+ <span class="icon">&#127968;</span>
63
+ <span class="nav-text" data-lang="fr">Accueil</span>
64
+ <span class="nav-text" data-lang="en">Home</span>
65
+ </a>
66
+ <a href="installation.html" class="nav-item">
67
+ <span class="icon">&#128230;</span>
68
+ <span class="nav-text">Installation</span>
69
+ </a>
70
+ </div>
71
+
72
+ <div class="nav-section">
73
+ <div class="nav-section-title">Workflows</div>
74
+ <a href="gitflow.html" class="nav-item">
75
+ <span class="icon">&#128256;</span>
76
+ <span class="nav-text">GitFlow</span>
77
+ </a>
78
+ <a href="efcore.html" class="nav-item">
79
+ <span class="icon">&#128452;</span>
80
+ <span class="nav-text">EF Core</span>
81
+ </a>
82
+ <a href="apex.html" class="nav-item">
83
+ <span class="icon">&#127919;</span>
84
+ <span class="nav-text">APEX</span>
85
+ </a>
86
+ <a href="business-analyse.html" class="nav-item">
87
+ <span class="icon">&#128202;</span>
88
+ <span class="nav-text">Business Analyse</span>
89
+ </a>
90
+ </div>
91
+
92
+ <div class="nav-section">
93
+ <div class="nav-section-title">
94
+ <span data-lang="fr">Outils</span>
95
+ <span data-lang="en">Tools</span>
96
+ </div>
97
+ <a href="agents.html" class="nav-item active">
98
+ <span class="icon">&#129302;</span>
99
+ <span class="nav-text">Agents</span>
100
+ </a>
101
+ <a href="commands.html" class="nav-item">
102
+ <span class="icon">&#9889;</span>
103
+ <span class="nav-text" data-lang="fr">Commandes</span>
104
+ <span class="nav-text" data-lang="en">Commands</span>
105
+ </a>
106
+ <a href="hooks.html" class="nav-item">
107
+ <span class="icon">&#128279;</span>
108
+ <span class="nav-text">Hooks</span>
109
+ </a>
110
+ <a href="test-web.html" class="nav-item">
111
+ <span class="icon">&#127760;</span>
112
+ <span class="nav-text">Test Web</span>
113
+ </a>
114
+ </div>
115
+ </nav>
116
+
117
+ </aside>
118
+
119
+ <!-- Main Content -->
120
+ <main class="main-content">
121
+ <div class="content content-wide">
122
+ <!-- Introduction -->
123
+ <section id="introduction">
124
+ <p data-lang="fr">
125
+ Claude Tools fournit des agents specialises qui peuvent etre lances en parallele pour accelerer le developpement. Ces agents sont optimises pour des taches specifiques et utilisent le modele Haiku pour une execution rapide et economique.
126
+ </p>
127
+ <p data-lang="en">
128
+ Claude Tools provides specialized agents that can be launched in parallel to accelerate development. These agents are optimized for specific tasks and use the Haiku model for fast and cost-effective execution.
129
+ </p>
130
+
131
+ <div class="alert alert-info">
132
+ <span class="alert-icon">&#128161;</span>
133
+ <div class="alert-content">
134
+ <h5 data-lang="fr">Execution parallele</h5>
135
+ <h5 data-lang="en">Parallel Execution</h5>
136
+ <p data-lang="fr">
137
+ Les agents peuvent etre lances simultanement pour collecter des informations de plusieurs sources en meme temps.
138
+ </p>
139
+ <p data-lang="en">
140
+ Agents can be launched simultaneously to collect information from multiple sources at the same time.
141
+ </p>
142
+ </div>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Agent: explore-codebase -->
147
+ <section id="explore-codebase">
148
+ <h2>explore-codebase</h2>
149
+
150
+ <div class="command-card">
151
+ <div class="command-header">
152
+ <code class="command-name">explore-codebase</code>
153
+ <span class="tag tag-agent">Agent</span>
154
+ <span class="tag" style="background: #eab308; color: #000;">Haiku</span>
155
+ </div>
156
+ <div class="command-body">
157
+ <p data-lang="fr">
158
+ Agent d'exploration du codebase. Trouve les implementations similaires, patterns et conventions existants dans votre projet.
159
+ </p>
160
+ <p data-lang="en">
161
+ Codebase exploration agent. Finds similar implementations, patterns and existing conventions in your project.
162
+ </p>
163
+
164
+ <h4 data-lang="fr">Cas d'utilisation</h4>
165
+ <h4 data-lang="en">Use Cases</h4>
166
+ <div class="feature-grid">
167
+ <div class="feature-item">
168
+ <span class="feature-icon">&#128269;</span>
169
+ <span class="feature-text" data-lang="fr">Trouver des implementations similaires a suivre comme exemple</span>
170
+ <span class="feature-text" data-lang="en">Find similar implementations to follow as examples</span>
171
+ </div>
172
+ <div class="feature-item">
173
+ <span class="feature-icon">&#128193;</span>
174
+ <span class="feature-text" data-lang="fr">Localiser les fichiers a modifier</span>
175
+ <span class="feature-text" data-lang="en">Locate files to modify</span>
176
+ </div>
177
+ <div class="feature-item">
178
+ <span class="feature-icon">&#128736;</span>
179
+ <span class="feature-text" data-lang="fr">Identifier les patterns et conventions existants</span>
180
+ <span class="feature-text" data-lang="en">Identify existing patterns and conventions</span>
181
+ </div>
182
+ <div class="feature-item">
183
+ <span class="feature-icon">&#129520;</span>
184
+ <span class="feature-text" data-lang="fr">Decouvrir les utilitaires et helpers reutilisables</span>
185
+ <span class="feature-text" data-lang="en">Discover reusable utilities and helpers</span>
186
+ </div>
187
+ </div>
188
+
189
+ <details class="template-section">
190
+ <summary>
191
+ <h4 style="display: inline; margin: 0;">
192
+ <span data-lang="fr">Template Prompt</span>
193
+ <span data-lang="en">Prompt Template</span>
194
+ </h4>
195
+ <span class="template-badge">explore-codebase.md</span>
196
+ </summary>
197
+ <div class="template-content">
198
+ <p class="template-path">
199
+ <code>templates/agents/explore-codebase.md</code>
200
+ </p>
201
+ <div class="code-block template-code">
202
+ <button class="copy-btn">Copy</button>
203
+ <pre><code>---
204
+ name: explore-codebase
205
+ description: Use this agent whenever you need to explore the codebase to implement a feature.
206
+ color: yellow
207
+ model: haiku
208
+ ---
209
+
210
+ You are a codebase exploration specialist. Your only job is to find and present ALL relevant code and logic for the requested feature.
211
+
212
+ ## Search Strategy
213
+
214
+ 1. Start with broad searches using `Grep` to find entry points
215
+ 2. Use parallel searches for multiple related keywords
216
+ 3. Read files completely with `Read` to understand context
217
+ 4. Follow import chains to discover dependencies
218
+
219
+ ## What to Find
220
+
221
+ - Existing similar features or patterns
222
+ - Related functions, classes, components
223
+ - Configuration and setup files
224
+ - Database schemas and models
225
+ - API endpoints and routes
226
+ - Tests showing usage examples
227
+ - Utility functions that might be reused
228
+
229
+ ## Output Format
230
+
231
+ **CRITICAL**: Output all findings directly in your response. NEVER create markdown files.
232
+
233
+ ### Relevant Files Found
234
+
235
+ For each file:
236
+
237
+ ```
238
+ Path: /full/path/to/file.ext
239
+ Purpose: [One line description]
240
+ Key Code:
241
+ - Lines X-Y: [Actual code or logic description]
242
+ - Line Z: [Function/class definition]
243
+ Related to: [How it connects to the feature]
244
+ ```
245
+
246
+ ### Code Patterns & Conventions
247
+
248
+ - List discovered patterns (naming, structure, frameworks)
249
+ - Note existing approaches that should be followed
250
+
251
+ ### Dependencies & Connections
252
+
253
+ - Import relationships between files
254
+ - External libraries used
255
+ - API integrations found
256
+
257
+ ## Priority
258
+
259
+ Thoroughness > Speed. Find everything relevant.</code></pre>
260
+ </div>
261
+ </div>
262
+ </details>
263
+ </div>
264
+ </div>
265
+ </section>
266
+
267
+ <!-- Agent: explore-docs -->
268
+ <section id="explore-docs">
269
+ <h2>explore-docs</h2>
270
+
271
+ <div class="command-card">
272
+ <div class="command-header">
273
+ <code class="command-name">explore-docs</code>
274
+ <span class="tag tag-agent">Agent</span>
275
+ <span class="tag" style="background: #eab308; color: #000;">Haiku</span>
276
+ </div>
277
+ <div class="command-body">
278
+ <p data-lang="fr">
279
+ Agent d'exploration de documentation. Recherche dans la documentation des librairies pour les APIs, best practices et exemples de code.
280
+ </p>
281
+ <p data-lang="en">
282
+ Documentation exploration agent. Searches library documentation for APIs, best practices and code examples.
283
+ </p>
284
+
285
+ <h4 data-lang="fr">Cas d'utilisation</h4>
286
+ <h4 data-lang="en">Use Cases</h4>
287
+ <div class="feature-grid">
288
+ <div class="feature-item">
289
+ <span class="feature-icon">&#128218;</span>
290
+ <span class="feature-text" data-lang="fr">Rechercher les APIs et patterns d'une librairie</span>
291
+ <span class="feature-text" data-lang="en">Search library APIs and patterns</span>
292
+ </div>
293
+ <div class="feature-item">
294
+ <span class="feature-icon">&#127942;</span>
295
+ <span class="feature-text" data-lang="fr">Trouver les best practices officielles</span>
296
+ <span class="feature-text" data-lang="en">Find official best practices</span>
297
+ </div>
298
+ <div class="feature-item">
299
+ <span class="feature-icon">&#128187;</span>
300
+ <span class="feature-text" data-lang="fr">Obtenir des exemples de code de la documentation</span>
301
+ <span class="feature-text" data-lang="en">Get code examples from documentation</span>
302
+ </div>
303
+ </div>
304
+
305
+ <details class="template-section">
306
+ <summary>
307
+ <h4 style="display: inline; margin: 0;">
308
+ <span data-lang="fr">Template Prompt</span>
309
+ <span data-lang="en">Prompt Template</span>
310
+ </h4>
311
+ <span class="template-badge">explore-docs.md</span>
312
+ </summary>
313
+ <div class="template-content">
314
+ <p class="template-path">
315
+ <code>templates/agents/explore-docs.md</code>
316
+ </p>
317
+ <div class="code-block template-code">
318
+ <button class="copy-btn">Copy</button>
319
+ <pre><code>---
320
+ name: explore-docs
321
+ description: Use this agent IMMEDIATELY when the user asks about library features, implementation methods, "how to do X with Y library", documentation searches, or ANY question about using/implementing specific libraries or frameworks
322
+ color: yellow
323
+ model: haiku
324
+ ---
325
+
326
+ You are a documentation exploration specialist. Your mission is to retrieve precise, actionable documentation with code examples.
327
+
328
+ ## Search Strategy
329
+
330
+ **Primary**: Use Context7 for library-specific documentation
331
+
332
+ - Resolve library ID first with `mcp__context7__resolve-library-id`
333
+ - Fetch targeted docs with `mcp__context7__get-library-docs`
334
+ - Focus on specific topics when provided
335
+
336
+ **Fallback**: Use WebSearch + WebFetch for official documentation
337
+
338
+ - Search for official docs, API references, guides
339
+ - Target authoritative sources (official websites, GitHub repos)
340
+
341
+ ## Data Processing
342
+
343
+ **Filter for essentials**:
344
+
345
+ - Code examples and usage patterns
346
+ - API specifications and method signatures
347
+ - Configuration options and parameters
348
+ - Error handling patterns
349
+ - Best practices and common pitfalls
350
+
351
+ **Eliminate noise**:
352
+
353
+ - Marketing content and introductions
354
+ - Redundant explanations
355
+ - Outdated or deprecated information
356
+
357
+ ## Output Format
358
+
359
+ **CRITICAL**: Output all findings directly in your response. NEVER create markdown files.
360
+
361
+ ### Library: [Name/Version]
362
+
363
+ ### Key Concepts
364
+ - [Essential concept]: [Brief explanation with context]
365
+
366
+ ### Code Examples
367
+ ```language
368
+ // [Real-world example with full context]
369
+ // Include imports, setup, and actual usage
370
+ ```
371
+
372
+ ### API Reference
373
+ - `method(params: Type)`: [Purpose, parameters, return type, example]
374
+
375
+ ## Priority
376
+
377
+ Actionable code examples > API specs > Configuration > Theory.</code></pre>
378
+ </div>
379
+ </div>
380
+ </details>
381
+ </div>
382
+ </div>
383
+ </section>
384
+
385
+ <!-- Agent: websearch -->
386
+ <section id="websearch">
387
+ <h2>websearch</h2>
388
+
389
+ <div class="command-card">
390
+ <div class="command-header">
391
+ <code class="command-name">websearch</code>
392
+ <span class="tag tag-agent">Agent</span>
393
+ <span class="tag" style="background: #eab308; color: #000;">Haiku</span>
394
+ </div>
395
+ <div class="command-body">
396
+ <p data-lang="fr">
397
+ Agent de recherche web rapide. Trouve des informations sur le web de maniere precise et rapide.
398
+ </p>
399
+ <p data-lang="en">
400
+ Quick web search agent. Finds information on the web quickly and accurately.
401
+ </p>
402
+
403
+ <h4 data-lang="fr">Cas d'utilisation</h4>
404
+ <h4 data-lang="en">Use Cases</h4>
405
+ <div class="feature-grid">
406
+ <div class="feature-item">
407
+ <span class="feature-icon">&#127760;</span>
408
+ <span class="feature-text" data-lang="fr">Rechercher les dernieres approches et solutions</span>
409
+ <span class="feature-text" data-lang="en">Research latest approaches and solutions</span>
410
+ </div>
411
+ <div class="feature-item">
412
+ <span class="feature-icon">&#128101;</span>
413
+ <span class="feature-text" data-lang="fr">Trouver des exemples de la communaute</span>
414
+ <span class="feature-text" data-lang="en">Find community examples</span>
415
+ </div>
416
+ <div class="feature-item">
417
+ <span class="feature-icon">&#127959;</span>
418
+ <span class="feature-text" data-lang="fr">Obtenir des informations architecturales</span>
419
+ <span class="feature-text" data-lang="en">Get architectural guidance</span>
420
+ </div>
421
+ </div>
422
+
423
+ <details class="template-section">
424
+ <summary>
425
+ <h4 style="display: inline; margin: 0;">
426
+ <span data-lang="fr">Template Prompt</span>
427
+ <span data-lang="en">Prompt Template</span>
428
+ </h4>
429
+ <span class="template-badge">websearch.md</span>
430
+ </summary>
431
+ <div class="template-content">
432
+ <p class="template-path">
433
+ <code>templates/agents/websearch.md</code>
434
+ </p>
435
+ <div class="code-block template-code">
436
+ <button class="copy-btn">Copy</button>
437
+ <pre><code>---
438
+ name: websearch
439
+ description: Use this agent when you need to make a quick web search.
440
+ color: yellow
441
+ tools: WebSearch, WebFetch
442
+ model: haiku
443
+ ---
444
+
445
+ You are a rapid web search specialist. Find accurate information fast.
446
+
447
+ ## Workflow
448
+
449
+ 1. **Search**: Use `WebSearch` with precise keywords
450
+ 2. **Fetch**: Use `WebFetch` for most relevant results
451
+ 3. **Summarize**: Extract key information concisely
452
+
453
+ ## Search Best Practices
454
+
455
+ - Focus on authoritative sources (official docs, trusted sites)
456
+ - Skip redundant information
457
+ - Use specific keywords rather than vague terms
458
+ - Prioritize recent information when relevant
459
+
460
+ ## Output Format
461
+
462
+ **CRITICAL**: Output all findings directly in your response. NEVER create markdown files.
463
+
464
+ &lt;summary&gt;
465
+ [Clear, concise answer to the query]
466
+ &lt;/summary&gt;
467
+
468
+ &lt;key-points&gt;
469
+ • [Most important fact]
470
+ • [Second important fact]
471
+ • [Additional relevant info]
472
+ &lt;/key-points&gt;
473
+
474
+ &lt;sources&gt;
475
+ 1. [Title](URL) - Brief description
476
+ 2. [Title](URL) - What it contains
477
+ &lt;/sources&gt;
478
+
479
+ ## Priority
480
+
481
+ Accuracy > Speed. Get the right answer quickly.</code></pre>
482
+ </div>
483
+ </div>
484
+ </details>
485
+ </div>
486
+ </div>
487
+ </section>
488
+
489
+ <!-- Agent: Snipper -->
490
+ <section id="snipper">
491
+ <h2>Snipper</h2>
492
+
493
+ <div class="command-card">
494
+ <div class="command-header">
495
+ <code class="command-name">Snipper</code>
496
+ <span class="tag tag-agent">Agent</span>
497
+ <span class="tag" style="background: #3b82f6; color: #fff;">Fast</span>
498
+ </div>
499
+ <div class="command-body">
500
+ <p data-lang="fr">
501
+ Agent de modification de code ultra-rapide. Execute les modifications sans explications, optimise pour la vitesse.
502
+ </p>
503
+ <p data-lang="en">
504
+ Ultra-fast code modification agent. Executes modifications without explanations, optimized for speed.
505
+ </p>
506
+
507
+ <h4 data-lang="fr">Cas d'utilisation</h4>
508
+ <h4 data-lang="en">Use Cases</h4>
509
+ <div class="feature-grid">
510
+ <div class="feature-item">
511
+ <span class="feature-icon">&#9889;</span>
512
+ <span class="feature-text" data-lang="fr">Modifications rapides de code</span>
513
+ <span class="feature-text" data-lang="en">Quick code modifications</span>
514
+ </div>
515
+ <div class="feature-item">
516
+ <span class="feature-icon">&#128295;</span>
517
+ <span class="feature-text" data-lang="fr">Refactoring simple</span>
518
+ <span class="feature-text" data-lang="en">Simple refactoring</span>
519
+ </div>
520
+ <div class="feature-item">
521
+ <span class="feature-icon">&#128221;</span>
522
+ <span class="feature-text" data-lang="fr">Renommage de variables/fonctions</span>
523
+ <span class="feature-text" data-lang="en">Variable/function renaming</span>
524
+ </div>
525
+ </div>
526
+
527
+ <details class="template-section">
528
+ <summary>
529
+ <h4 style="display: inline; margin: 0;">
530
+ <span data-lang="fr">Template Prompt</span>
531
+ <span data-lang="en">Prompt Template</span>
532
+ </h4>
533
+ <span class="template-badge">snipper.md</span>
534
+ </summary>
535
+ <div class="template-content">
536
+ <p class="template-path">
537
+ <code>templates/agents/snipper.md</code>
538
+ </p>
539
+ <div class="code-block template-code">
540
+ <button class="copy-btn">Copy</button>
541
+ <pre><code>---
542
+ name: Snipper
543
+ description: Use this agent when you need to modify code. This agent is specialized to be fast. The output is small and optimized to code as fast as agent can.
544
+ color: blue
545
+ model: haiku
546
+ ---
547
+
548
+ You are a rapid code modification specialist. No explanations, just execute.
549
+
550
+ ## Workflow
551
+
552
+ 1. **Read**: Load all specified files with `Read` tool
553
+ 2. **Edit**: Apply requested changes using `Edit` or `MultiEdit`
554
+ 3. **Report**: List what was modified
555
+
556
+ ## Execution Rules
557
+
558
+ - Follow existing code style exactly
559
+ - Preserve all formatting and indentation
560
+ - Make minimal changes to achieve the goal
561
+ - Use `MultiEdit` for multiple changes in same file
562
+ - Never add comments unless requested
563
+ - DO NEVER RUN LINT CHECK. YOU CAN'T USE BASH.
564
+
565
+ ## Output Format
566
+
567
+ Simply list each file and the change made:
568
+
569
+ ```
570
+ - path/to/file.ext: [One line description of change]
571
+ - path/to/other.ext: [What was modified]
572
+ ```
573
+
574
+ ## Priority
575
+
576
+ Speed > Explanation. Just get it done.</code></pre>
577
+ </div>
578
+ </div>
579
+ </details>
580
+ </div>
581
+ </div>
582
+ </section>
583
+
584
+ <!-- Agent: fix-grammar -->
585
+ <section id="fix-grammar">
586
+ <h2>fix-grammar</h2>
587
+
588
+ <div class="command-card">
589
+ <div class="command-header">
590
+ <code class="command-name">fix-grammar</code>
591
+ <span class="tag tag-agent">Agent</span>
592
+ <span class="tag" style="background: #3b82f6; color: #fff;">Fast</span>
593
+ </div>
594
+ <div class="command-body">
595
+ <p data-lang="fr">
596
+ Agent de correction grammaticale. Corrige les erreurs d'orthographe et de grammaire tout en preservant le formatage.
597
+ </p>
598
+ <p data-lang="en">
599
+ Grammar correction agent. Fixes spelling and grammar errors while preserving formatting.
600
+ </p>
601
+
602
+ <h4 data-lang="fr">Cas d'utilisation</h4>
603
+ <h4 data-lang="en">Use Cases</h4>
604
+ <div class="feature-grid">
605
+ <div class="feature-item">
606
+ <span class="feature-icon">&#128214;</span>
607
+ <span class="feature-text" data-lang="fr">Correction de documentation</span>
608
+ <span class="feature-text" data-lang="en">Documentation correction</span>
609
+ </div>
610
+ <div class="feature-item">
611
+ <span class="feature-icon">&#128172;</span>
612
+ <span class="feature-text" data-lang="fr">Correction de commentaires</span>
613
+ <span class="feature-text" data-lang="en">Comment correction</span>
614
+ </div>
615
+ <div class="feature-item">
616
+ <span class="feature-icon">&#128196;</span>
617
+ <span class="feature-text" data-lang="fr">Correction de fichiers README</span>
618
+ <span class="feature-text" data-lang="en">README file correction</span>
619
+ </div>
620
+ </div>
621
+
622
+ <details class="template-section">
623
+ <summary>
624
+ <h4 style="display: inline; margin: 0;">
625
+ <span data-lang="fr">Template Prompt</span>
626
+ <span data-lang="en">Prompt Template</span>
627
+ </h4>
628
+ <span class="template-badge">fix-grammar.md</span>
629
+ </summary>
630
+ <div class="template-content">
631
+ <p class="template-path">
632
+ <code>templates/agents/fix-grammar.md</code>
633
+ </p>
634
+ <div class="code-block template-code">
635
+ <button class="copy-btn">Copy</button>
636
+ <pre><code>---
637
+ name: fix-grammar
638
+ description: Use this agent to fix grammar and spelling errors in a single file while preserving formatting
639
+ color: blue
640
+ model: haiku
641
+ ---
642
+
643
+ You are DevProfCorrectorGPT, a professional text corrector. Fix grammar and spelling errors while preserving all formatting and meaning.
644
+
645
+ ## File Processing
646
+
647
+ - Read the target file completely
648
+ - Apply grammar and spelling corrections only
649
+ - Preserve all formatting, tags, and technical terms
650
+ - Do not translate or change word order
651
+ - Do not modify special tags (MDX, custom syntax, code blocks)
652
+
653
+ ## Correction Rules
654
+
655
+ - Fix only spelling and grammar errors
656
+ - Keep the same language used in each sentence
657
+ - Preserve all document structure and formatting
658
+ - Do not change meaning or technical terms
659
+ - Handle multilingual content (keep anglicisms, technical terms)
660
+
661
+ ## Output Format
662
+
663
+ ```
664
+ ✓ Fixed grammar in [filename]
665
+ - [number] corrections made
666
+ ```
667
+
668
+ ## Priority
669
+
670
+ Accuracy > Speed. Preserve meaning and formatting while fixing obvious errors.</code></pre>
671
+ </div>
672
+ </div>
673
+ </details>
674
+ </div>
675
+ </div>
676
+ </section>
677
+
678
+ <!-- Business Analyse Agents -->
679
+ <section id="business-analyse-agents">
680
+ <h2>Business Analyse Agents</h2>
681
+
682
+ <p data-lang="fr">
683
+ Ces agents sont utilises par le workflow Business Analyse pour explorer le codebase et detecter les fonctionnalites similaires.
684
+ </p>
685
+ <p data-lang="en">
686
+ These agents are used by the Business Analyse workflow to explore the codebase and detect similar features.
687
+ </p>
688
+
689
+ <div class="command-card" style="margin-bottom: 1.5rem;">
690
+ <div class="command-header">
691
+ <code class="command-name">ba-similarity</code>
692
+ <span class="tag tag-agent">Agent</span>
693
+ <span class="tag" style="background: #8b5cf6; color: #fff;">Phase 1</span>
694
+ </div>
695
+ <div class="command-body">
696
+ <p data-lang="fr">
697
+ <strong>Detection de similarite</strong> - Detecte si une fonctionnalite demandee existe deja ou chevauche une fonctionnalite existante.
698
+ </p>
699
+ <p data-lang="en">
700
+ <strong>Similarity Detection</strong> - Detects if a requested feature already exists or overlaps with existing functionality.
701
+ </p>
702
+
703
+ <h4 data-lang="fr">Resultats possibles</h4>
704
+ <h4 data-lang="en">Possible Results</h4>
705
+ <table class="reference-table" style="margin-top: 0.5rem;">
706
+ <thead>
707
+ <tr>
708
+ <th data-lang="fr">Resultat</th>
709
+ <th data-lang="en">Result</th>
710
+ <th>Action</th>
711
+ </tr>
712
+ </thead>
713
+ <tbody>
714
+ <tr style="background: rgba(239, 68, 68, 0.1);">
715
+ <td><strong>DUPLICATE</strong></td>
716
+ <td data-lang="fr">STOP - Reference spec existante</td>
717
+ <td data-lang="en">STOP - Reference existing spec</td>
718
+ </tr>
719
+ <tr style="background: rgba(234, 179, 8, 0.1);">
720
+ <td><strong>EXTEND</strong></td>
721
+ <td data-lang="fr">Construire sur l'existant</td>
722
+ <td data-lang="en">Build on existing feature</td>
723
+ </tr>
724
+ <tr style="background: rgba(34, 197, 94, 0.1);">
725
+ <td><strong>NEW</strong></td>
726
+ <td data-lang="fr">Proceder normalement</td>
727
+ <td data-lang="en">Proceed normally</td>
728
+ </tr>
729
+ </tbody>
730
+ </table>
731
+ </div>
732
+ </div>
733
+
734
+ <div class="table-container">
735
+ <table>
736
+ <thead>
737
+ <tr>
738
+ <th>Agent</th>
739
+ <th>
740
+ <span data-lang="fr">Mission</span>
741
+ <span data-lang="en">Mission</span>
742
+ </th>
743
+ <th>
744
+ <span data-lang="fr">Utilise en</span>
745
+ <span data-lang="en">Used in</span>
746
+ </th>
747
+ </tr>
748
+ </thead>
749
+ <tbody>
750
+ <tr>
751
+ <td><code>explore-api</code></td>
752
+ <td>
753
+ <span data-lang="fr">Endpoints, controllers, DTOs, patterns API</span>
754
+ <span data-lang="en">Endpoints, controllers, DTOs, API patterns</span>
755
+ </td>
756
+ <td>Phase 2</td>
757
+ </tr>
758
+ <tr>
759
+ <td><code>explore-schema</code></td>
760
+ <td>
761
+ <span data-lang="fr">Schema DB, entites, configurations</span>
762
+ <span data-lang="en">DB schema, entities, configurations</span>
763
+ </td>
764
+ <td>Phase 2</td>
765
+ </tr>
766
+ <tr>
767
+ <td><code>explore-permissions</code></td>
768
+ <td>
769
+ <span data-lang="fr">RBAC, roles, autorisations</span>
770
+ <span data-lang="en">RBAC, roles, authorizations</span>
771
+ </td>
772
+ <td>Phase 2</td>
773
+ </tr>
774
+ <tr>
775
+ <td><code>explore-navigation</code></td>
776
+ <td>
777
+ <span data-lang="fr">Menus, routes, pages</span>
778
+ <span data-lang="en">Menus, routes, pages</span>
779
+ </td>
780
+ <td>Phase 2</td>
781
+ </tr>
782
+ <tr>
783
+ <td><code>explore-theme</code></td>
784
+ <td>
785
+ <span data-lang="fr">UI patterns, composants, design system</span>
786
+ <span data-lang="en">UI patterns, components, design system</span>
787
+ </td>
788
+ <td>Phase 2</td>
789
+ </tr>
790
+ </tbody>
791
+ </table>
792
+ </div>
793
+
794
+ <div class="alert alert-info" style="margin-top: 1rem;">
795
+ <span class="alert-icon">&#128161;</span>
796
+ <div class="alert-content">
797
+ <p data-lang="fr">
798
+ Ces agents sont lances en parallele par <code>/business-analyse:2-explore</code>. Maximum 3 agents par execution pour optimiser les tokens.
799
+ </p>
800
+ <p data-lang="en">
801
+ These agents are launched in parallel by <code>/business-analyse:2-explore</code>. Maximum 3 agents per execution to optimize tokens.
802
+ </p>
803
+ </div>
804
+ </div>
805
+ </section>
806
+
807
+ <!-- Agent: action -->
808
+ <section id="action">
809
+ <h2>action</h2>
810
+
811
+ <div class="command-card">
812
+ <div class="command-header">
813
+ <code class="command-name">action</code>
814
+ <span class="tag tag-agent">Agent</span>
815
+ <span class="tag" style="background: #8b5cf6; color: #fff;">Conditional</span>
816
+ </div>
817
+ <div class="command-body">
818
+ <p data-lang="fr">
819
+ Agent d'execution conditionnelle. Execute des actions uniquement lorsque des conditions specifiques sont remplies. Utile pour le nettoyage de code.
820
+ </p>
821
+ <p data-lang="en">
822
+ Conditional action executor. Performs actions only when specific conditions are met. Useful for code cleanup.
823
+ </p>
824
+
825
+ <h4 data-lang="fr">Cas d'utilisation</h4>
826
+ <h4 data-lang="en">Use Cases</h4>
827
+ <div class="feature-grid">
828
+ <div class="feature-item">
829
+ <span class="feature-icon">&#128230;</span>
830
+ <span class="feature-text" data-lang="fr">Supprimer des dependances non utilisees</span>
831
+ <span class="feature-text" data-lang="en">Remove unused dependencies</span>
832
+ </div>
833
+ <div class="feature-item">
834
+ <span class="feature-icon">&#128465;</span>
835
+ <span class="feature-text" data-lang="fr">Supprimer des exports non utilises</span>
836
+ <span class="feature-text" data-lang="en">Remove unused exports</span>
837
+ </div>
838
+ <div class="feature-item">
839
+ <span class="feature-icon">&#129529;</span>
840
+ <span class="feature-text" data-lang="fr">Nettoyage conditionnel de code</span>
841
+ <span class="feature-text" data-lang="en">Conditional code cleanup</span>
842
+ </div>
843
+ </div>
844
+
845
+ <details class="template-section">
846
+ <summary>
847
+ <h4 style="display: inline; margin: 0;">
848
+ <span data-lang="fr">Template Prompt</span>
849
+ <span data-lang="en">Prompt Template</span>
850
+ </h4>
851
+ <span class="template-badge">action.md</span>
852
+ </summary>
853
+ <div class="template-content">
854
+ <p class="template-path">
855
+ <code>templates/agents/action.md</code>
856
+ </p>
857
+ <div class="code-block template-code">
858
+ <button class="copy-btn">Copy</button>
859
+ <pre><code>---
860
+ name: action
861
+ description: Conditional action executor - performs actions only when specific conditions are met
862
+ color: purple
863
+ model: haiku
864
+ ---
865
+
866
+ Batch conditional executor. Handle ≤5 tasks. VERIFY INDEPENDENTLY before each action.
867
+
868
+ ## Workflow
869
+
870
+ 1. **VERIFY each item yourself** (never trust input):
871
+ - **Exports/Types**: Grep for `import.*{name}` in codebase
872
+ - **Files**: Check framework patterns via explore-docs, then Grep for imports
873
+ - **Dependencies**: Grep for `from 'pkg'` or `require('pkg')`
874
+
875
+ 2. **Execute ONLY if verified unused**:
876
+ - If used → Skip with reason, continue next
877
+ - If unused → Execute action, confirm success
878
+
879
+ 3. **Report**: Count executed, count skipped with reasons
880
+
881
+ ## Rules
882
+
883
+ - **MANDATORY**: Verify each item independently using Grep/explore-docs
884
+ - **Skip if used**: Continue to next task
885
+ - **Max 5 tasks**: Process all in batch
886
+
887
+ ## Example
888
+
889
+ "Verify and remove: lodash, axios, moment"
890
+
891
+ 1. Grep `lodash` → Found in utils.ts → Skip
892
+ 2. Grep `axios` → Not found → `pnpm remove axios` → Done
893
+ 3. Grep `moment` → Not found → `pnpm remove moment` → Done
894
+ Report: "Removed 2/3: axios, moment. Skipped: lodash (used in utils.ts)"</code></pre>
895
+ </div>
896
+ </div>
897
+ </details>
898
+ </div>
899
+ </div>
900
+ </section>
901
+ </div>
902
+ </main>
903
+ </div>
904
+ </div>
905
+
906
+ <!-- Mobile Menu Button -->
907
+ <button class="mobile-menu-btn">&#9776;</button>
908
+ <div class="overlay"></div>
909
+
910
+ <script src="js/app.js"></script>
911
+ </body>
912
+ </html>