@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.
- package/.documentation/agents.html +912 -0
- package/.documentation/apex.html +1014 -0
- package/.documentation/business-analyse.html +1074 -0
- package/.documentation/commands.html +676 -0
- package/.documentation/css/styles.css +2030 -0
- package/.documentation/efcore.html +2501 -0
- package/.documentation/gitflow.html +2053 -0
- package/.documentation/hooks.html +409 -0
- package/.documentation/index.html +319 -0
- package/.documentation/installation.html +458 -0
- package/.documentation/js/app.js +794 -0
- package/.documentation/test-web.html +509 -0
- package/README.md +90 -0
- package/config/default-config.json +86 -0
- package/config/settings.json +53 -0
- package/config/settings.local.example.json +16 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +38198 -0
- package/dist/index.js.map +1 -0
- package/package.json +86 -0
- package/templates/agents/action.md +36 -0
- package/templates/agents/efcore/conflicts.md +57 -0
- package/templates/agents/efcore/db-deploy.md +51 -0
- package/templates/agents/efcore/db-reset.md +59 -0
- package/templates/agents/efcore/db-seed.md +56 -0
- package/templates/agents/efcore/db-status.md +43 -0
- package/templates/agents/efcore/migration.md +85 -0
- package/templates/agents/efcore/rebase-snapshot.md +62 -0
- package/templates/agents/efcore/scan.md +60 -0
- package/templates/agents/efcore/squash.md +67 -0
- package/templates/agents/explore-codebase.md +65 -0
- package/templates/agents/explore-docs.md +97 -0
- package/templates/agents/fix-grammar.md +49 -0
- package/templates/agents/gitflow/abort.md +45 -0
- package/templates/agents/gitflow/cleanup.md +85 -0
- package/templates/agents/gitflow/commit.md +40 -0
- package/templates/agents/gitflow/exec.md +48 -0
- package/templates/agents/gitflow/finish.md +92 -0
- package/templates/agents/gitflow/init.md +139 -0
- package/templates/agents/gitflow/merge.md +62 -0
- package/templates/agents/gitflow/plan.md +42 -0
- package/templates/agents/gitflow/pr.md +78 -0
- package/templates/agents/gitflow/review.md +49 -0
- package/templates/agents/gitflow/start.md +61 -0
- package/templates/agents/gitflow/status.md +32 -0
- package/templates/agents/snipper.md +36 -0
- package/templates/agents/websearch.md +46 -0
- package/templates/commands/_resources/formatting-guide.md +124 -0
- package/templates/commands/ai-prompt.md +315 -0
- package/templates/commands/apex/1-analyze.md +100 -0
- package/templates/commands/apex/2-plan.md +145 -0
- package/templates/commands/apex/3-execute.md +171 -0
- package/templates/commands/apex/4-examine.md +116 -0
- package/templates/commands/apex/5-tasks.md +209 -0
- package/templates/commands/apex.md +76 -0
- package/templates/commands/application/create.md +362 -0
- package/templates/commands/application/templates-backend.md +463 -0
- package/templates/commands/application/templates-frontend.md +517 -0
- package/templates/commands/application/templates-i18n.md +478 -0
- package/templates/commands/application/templates-seed.md +362 -0
- package/templates/commands/application.md +303 -0
- package/templates/commands/business-analyse/1-init.md +269 -0
- package/templates/commands/business-analyse/2-discover.md +520 -0
- package/templates/commands/business-analyse/3-analyse.md +408 -0
- package/templates/commands/business-analyse/4-specify.md +598 -0
- package/templates/commands/business-analyse/5-validate.md +326 -0
- package/templates/commands/business-analyse/6-handoff.md +746 -0
- package/templates/commands/business-analyse/7-doc-html.md +602 -0
- package/templates/commands/business-analyse/bug.md +325 -0
- package/templates/commands/business-analyse/change-request.md +368 -0
- package/templates/commands/business-analyse/hotfix.md +200 -0
- package/templates/commands/business-analyse.md +559 -0
- package/templates/commands/controller/create.md +216 -0
- package/templates/commands/controller/postman-templates.md +528 -0
- package/templates/commands/controller/templates.md +600 -0
- package/templates/commands/controller.md +278 -0
- package/templates/commands/debug.md +95 -0
- package/templates/commands/documentation/module.md +202 -0
- package/templates/commands/documentation/templates.md +432 -0
- package/templates/commands/documentation.md +190 -0
- package/templates/commands/efcore/_env-check.md +153 -0
- package/templates/commands/efcore/conflicts.md +269 -0
- package/templates/commands/efcore/db-deploy.md +193 -0
- package/templates/commands/efcore/db-reset.md +426 -0
- package/templates/commands/efcore/db-seed.md +326 -0
- package/templates/commands/efcore/db-status.md +214 -0
- package/templates/commands/efcore/migration.md +388 -0
- package/templates/commands/efcore/rebase-snapshot.md +264 -0
- package/templates/commands/efcore/scan.md +202 -0
- package/templates/commands/efcore/squash.md +298 -0
- package/templates/commands/efcore.md +176 -0
- package/templates/commands/epct.md +69 -0
- package/templates/commands/explain.md +186 -0
- package/templates/commands/explore.md +45 -0
- package/templates/commands/feature-full.md +267 -0
- package/templates/commands/gitflow/1-init.md +1038 -0
- package/templates/commands/gitflow/10-start.md +768 -0
- package/templates/commands/gitflow/11-finish.md +323 -0
- package/templates/commands/gitflow/12-cleanup.md +276 -0
- package/templates/commands/gitflow/13-sync.md +216 -0
- package/templates/commands/gitflow/14-rebase.md +251 -0
- package/templates/commands/gitflow/2-status.md +167 -0
- package/templates/commands/gitflow/3-commit.md +194 -0
- package/templates/commands/gitflow/4-plan.md +145 -0
- package/templates/commands/gitflow/5-exec.md +147 -0
- package/templates/commands/gitflow/6-abort.md +344 -0
- package/templates/commands/gitflow/7-pull-request.md +226 -0
- package/templates/commands/gitflow/8-review.md +176 -0
- package/templates/commands/gitflow/9-merge.md +224 -0
- package/templates/commands/gitflow.md +128 -0
- package/templates/commands/implement.md +663 -0
- package/templates/commands/notification.md +129 -0
- package/templates/commands/oneshot.md +57 -0
- package/templates/commands/quick-search.md +72 -0
- package/templates/commands/review.md +106 -0
- package/templates/commands/utils/test-web-config.md +160 -0
- package/templates/commands/utils/test-web.md +151 -0
- package/templates/commands/workflow.md +193 -0
- package/templates/gitflow/config.json +138 -0
- package/templates/hooks/ef-migration-check.md +139 -0
- package/templates/hooks/hooks.json +15 -0
- package/templates/skills/ai-prompt/SKILL.md +778 -0
- package/templates/skills/application/SKILL.md +563 -0
- package/templates/skills/application/templates-backend.md +450 -0
- package/templates/skills/application/templates-frontend.md +531 -0
- package/templates/skills/application/templates-i18n.md +520 -0
- package/templates/skills/application/templates-seed.md +647 -0
- package/templates/skills/business-analyse/SKILL.md +191 -0
- package/templates/skills/business-analyse/questionnaire.md +283 -0
- package/templates/skills/business-analyse/templates-frd.md +477 -0
- package/templates/skills/business-analyse/templates-react.md +580 -0
- package/templates/skills/controller/SKILL.md +240 -0
- package/templates/skills/controller/postman-templates.md +614 -0
- package/templates/skills/controller/templates.md +1468 -0
- package/templates/skills/documentation/SKILL.md +133 -0
- package/templates/skills/documentation/templates.md +476 -0
- package/templates/skills/feature-full/SKILL.md +838 -0
- package/templates/skills/notification/SKILL.md +555 -0
- package/templates/skills/ui-components/SKILL.md +870 -0
- package/templates/skills/workflow/SKILL.md +582 -0
- package/templates/test-web/api-health.json +38 -0
- package/templates/test-web/minimal.json +19 -0
- package/templates/test-web/npm-package.json +46 -0
- package/templates/test-web/seo-check.json +54 -0
|
@@ -0,0 +1,509 @@
|
|
|
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>Test Web - 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">Test Web</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">›</span>
|
|
24
|
+
<span data-lang="fr">Outils</span>
|
|
25
|
+
<span data-lang="en">Tools</span>
|
|
26
|
+
<span class="breadcrumb-separator">›</span>
|
|
27
|
+
<span class="breadcrumb-current">Test Web</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">🔍</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">«</span>
|
|
51
|
+
<span class="toggle-icon-expand">»</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">🏠</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">📦</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">🔀</span>
|
|
75
|
+
<span class="nav-text">GitFlow</span>
|
|
76
|
+
</a>
|
|
77
|
+
<a href="efcore.html" class="nav-item">
|
|
78
|
+
<span class="icon">🗄</span>
|
|
79
|
+
<span class="nav-text">EF Core</span>
|
|
80
|
+
</a>
|
|
81
|
+
<a href="apex.html" class="nav-item">
|
|
82
|
+
<span class="icon">🎯</span>
|
|
83
|
+
<span class="nav-text">APEX</span>
|
|
84
|
+
</a>
|
|
85
|
+
<a href="business-analyse.html" class="nav-item">
|
|
86
|
+
<span class="icon">📊</span>
|
|
87
|
+
<span class="nav-text">Business Analyse</span>
|
|
88
|
+
</a>
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
<div class="nav-section">
|
|
92
|
+
<div class="nav-section-title">
|
|
93
|
+
<span data-lang="fr">Outils</span>
|
|
94
|
+
<span data-lang="en">Tools</span>
|
|
95
|
+
</div>
|
|
96
|
+
<a href="agents.html" class="nav-item">
|
|
97
|
+
<span class="icon">🤖</span>
|
|
98
|
+
<span class="nav-text">Agents</span>
|
|
99
|
+
</a>
|
|
100
|
+
<a href="commands.html" class="nav-item">
|
|
101
|
+
<span class="icon">⚡</span>
|
|
102
|
+
<span class="nav-text" data-lang="fr">Commandes</span>
|
|
103
|
+
<span class="nav-text" data-lang="en">Commands</span>
|
|
104
|
+
</a>
|
|
105
|
+
<a href="hooks.html" class="nav-item">
|
|
106
|
+
<span class="icon">🔗</span>
|
|
107
|
+
<span class="nav-text">Hooks</span>
|
|
108
|
+
</a>
|
|
109
|
+
<a href="test-web.html" class="nav-item active">
|
|
110
|
+
<span class="icon">🌐</span>
|
|
111
|
+
<span class="nav-text">Test Web</span>
|
|
112
|
+
</a>
|
|
113
|
+
</div>
|
|
114
|
+
</nav>
|
|
115
|
+
|
|
116
|
+
</aside>
|
|
117
|
+
|
|
118
|
+
<!-- Main Content -->
|
|
119
|
+
<main class="main-content">
|
|
120
|
+
<div class="content content-wide">
|
|
121
|
+
<!-- Introduction -->
|
|
122
|
+
<section id="introduction">
|
|
123
|
+
<h2>Introduction</h2>
|
|
124
|
+
<p data-lang="fr">
|
|
125
|
+
La commande <code>/test-web</code> permet de tester l'accessibilite et le contenu des ressources web de votre projet. Elle supporte plusieurs modes : fetch rapide, tests E2E avec Chrome, et generation de rapports.
|
|
126
|
+
</p>
|
|
127
|
+
<p data-lang="en">
|
|
128
|
+
The <code>/test-web</code> command tests the accessibility and content of your project's web resources. It supports multiple modes: quick fetch, E2E tests with Chrome, and report generation.
|
|
129
|
+
</p>
|
|
130
|
+
</section>
|
|
131
|
+
|
|
132
|
+
<!-- Modes -->
|
|
133
|
+
<section id="modes">
|
|
134
|
+
<h2>
|
|
135
|
+
<span data-lang="fr">Modes d'execution</span>
|
|
136
|
+
<span data-lang="en">Execution Modes</span>
|
|
137
|
+
</h2>
|
|
138
|
+
|
|
139
|
+
<div class="card-grid">
|
|
140
|
+
<div class="card">
|
|
141
|
+
<div class="card-header">
|
|
142
|
+
<div class="card-icon" style="background: var(--success);">⚡</div>
|
|
143
|
+
<div>
|
|
144
|
+
<div class="card-title">--quick</div>
|
|
145
|
+
<div class="card-subtitle">WebFetch</div>
|
|
146
|
+
</div>
|
|
147
|
+
</div>
|
|
148
|
+
<div class="card-body">
|
|
149
|
+
<p data-lang="fr">Test rapide HTTP 200 + verification du contenu texte.</p>
|
|
150
|
+
<p data-lang="en">Quick HTTP 200 test + text content verification.</p>
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
<div class="card">
|
|
155
|
+
<div class="card-header">
|
|
156
|
+
<div class="card-icon" style="background: var(--primary);">💻</div>
|
|
157
|
+
<div>
|
|
158
|
+
<div class="card-title">--chrome</div>
|
|
159
|
+
<div class="card-subtitle">E2E</div>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
<div class="card-body">
|
|
163
|
+
<p data-lang="fr">Tests E2E complets avec Claude for Chrome.</p>
|
|
164
|
+
<p data-lang="en">Full E2E tests with Claude for Chrome.</p>
|
|
165
|
+
</div>
|
|
166
|
+
</div>
|
|
167
|
+
|
|
168
|
+
<div class="card">
|
|
169
|
+
<div class="card-header">
|
|
170
|
+
<div class="card-icon" style="background: var(--warning);">📄</div>
|
|
171
|
+
<div>
|
|
172
|
+
<div class="card-title">--report</div>
|
|
173
|
+
<div class="card-subtitle">Markdown</div>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
176
|
+
<div class="card-body">
|
|
177
|
+
<p data-lang="fr">Genere un rapport detaille dans reports/.</p>
|
|
178
|
+
<p data-lang="en">Generates a detailed report in reports/.</p>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
</section>
|
|
183
|
+
|
|
184
|
+
<!-- Usage -->
|
|
185
|
+
<section id="usage">
|
|
186
|
+
<h2>
|
|
187
|
+
<span data-lang="fr">Utilisation</span>
|
|
188
|
+
<span data-lang="en">Usage</span>
|
|
189
|
+
</h2>
|
|
190
|
+
|
|
191
|
+
<div class="command-card">
|
|
192
|
+
<div class="command-header">
|
|
193
|
+
<code class="command-name">/test-web</code>
|
|
194
|
+
<span class="tag tag-command">Test</span>
|
|
195
|
+
</div>
|
|
196
|
+
<div class="command-body">
|
|
197
|
+
<div class="code-block">
|
|
198
|
+
<button class="copy-btn">Copy</button>
|
|
199
|
+
<pre><code># Test rapide de toutes les URLs configurees
|
|
200
|
+
/test-web --quick
|
|
201
|
+
|
|
202
|
+
# Test E2E avec navigateur (requires claude --chrome)
|
|
203
|
+
/test-web --chrome
|
|
204
|
+
|
|
205
|
+
# Test d'une URL specifique
|
|
206
|
+
/test-web https://github.com/org/repo
|
|
207
|
+
|
|
208
|
+
# Generer rapport detaille
|
|
209
|
+
/test-web --report</code></pre>
|
|
210
|
+
</div>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</section>
|
|
214
|
+
|
|
215
|
+
<!-- Configuration -->
|
|
216
|
+
<section id="configuration">
|
|
217
|
+
<h2>Configuration</h2>
|
|
218
|
+
|
|
219
|
+
<p data-lang="fr">Creez un fichier de configuration dans <code>.claude/test-web/config.json</code> :</p>
|
|
220
|
+
<p data-lang="en">Create a configuration file in <code>.claude/test-web/config.json</code>:</p>
|
|
221
|
+
|
|
222
|
+
<div class="code-block">
|
|
223
|
+
<button class="copy-btn">Copy</button>
|
|
224
|
+
<pre><code>{
|
|
225
|
+
"version": "1.0.0",
|
|
226
|
+
"targets": [
|
|
227
|
+
{
|
|
228
|
+
"name": "npm Package Page",
|
|
229
|
+
"url": "https://www.npmjs.com/package/@scope/package-name",
|
|
230
|
+
"type": "fetch",
|
|
231
|
+
"expects": {
|
|
232
|
+
"status": 200,
|
|
233
|
+
"contains": ["package-name", "Install"]
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "npm Search",
|
|
238
|
+
"query": "@scope/package-name npm",
|
|
239
|
+
"type": "search",
|
|
240
|
+
"expects": {
|
|
241
|
+
"hasResults": true
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "GitHub Repository",
|
|
246
|
+
"url": "https://github.com/org/repo",
|
|
247
|
+
"type": "fetch",
|
|
248
|
+
"expects": {
|
|
249
|
+
"status": 200,
|
|
250
|
+
"contains": ["README", "package.json"]
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"settings": {
|
|
255
|
+
"timeout": 30000,
|
|
256
|
+
"retries": 2,
|
|
257
|
+
"reportPath": ".claude/test-web/reports"
|
|
258
|
+
}
|
|
259
|
+
}</code></pre>
|
|
260
|
+
</div>
|
|
261
|
+
|
|
262
|
+
<h3 data-lang="fr">Types de targets</h3>
|
|
263
|
+
<h3 data-lang="en">Target Types</h3>
|
|
264
|
+
|
|
265
|
+
<div class="table-container">
|
|
266
|
+
<table>
|
|
267
|
+
<thead>
|
|
268
|
+
<tr>
|
|
269
|
+
<th>Type</th>
|
|
270
|
+
<th>
|
|
271
|
+
<span data-lang="fr">Description</span>
|
|
272
|
+
<span data-lang="en">Description</span>
|
|
273
|
+
</th>
|
|
274
|
+
<th>
|
|
275
|
+
<span data-lang="fr">Validation</span>
|
|
276
|
+
<span data-lang="en">Validation</span>
|
|
277
|
+
</th>
|
|
278
|
+
</tr>
|
|
279
|
+
</thead>
|
|
280
|
+
<tbody>
|
|
281
|
+
<tr>
|
|
282
|
+
<td><code>fetch</code></td>
|
|
283
|
+
<td>
|
|
284
|
+
<span data-lang="fr">Requete HTTP simple</span>
|
|
285
|
+
<span data-lang="en">Simple HTTP request</span>
|
|
286
|
+
</td>
|
|
287
|
+
<td>status, contains</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td><code>search</code></td>
|
|
291
|
+
<td>
|
|
292
|
+
<span data-lang="fr">Recherche web</span>
|
|
293
|
+
<span data-lang="en">Web search</span>
|
|
294
|
+
</td>
|
|
295
|
+
<td>hasResults</td>
|
|
296
|
+
</tr>
|
|
297
|
+
<tr>
|
|
298
|
+
<td><code>chrome</code></td>
|
|
299
|
+
<td>
|
|
300
|
+
<span data-lang="fr">Test E2E navigateur</span>
|
|
301
|
+
<span data-lang="en">Browser E2E test</span>
|
|
302
|
+
</td>
|
|
303
|
+
<td>actions, screenshots</td>
|
|
304
|
+
</tr>
|
|
305
|
+
</tbody>
|
|
306
|
+
</table>
|
|
307
|
+
</div>
|
|
308
|
+
</section>
|
|
309
|
+
|
|
310
|
+
<!-- Templates -->
|
|
311
|
+
<section id="templates">
|
|
312
|
+
<h2>
|
|
313
|
+
<span data-lang="fr">Templates pre-configures</span>
|
|
314
|
+
<span data-lang="en">Pre-configured Templates</span>
|
|
315
|
+
</h2>
|
|
316
|
+
|
|
317
|
+
<p data-lang="fr">Claude Tools inclut des templates de configuration pour les cas d'usage courants :</p>
|
|
318
|
+
<p data-lang="en">Claude Tools includes configuration templates for common use cases:</p>
|
|
319
|
+
|
|
320
|
+
<div class="table-container">
|
|
321
|
+
<table>
|
|
322
|
+
<thead>
|
|
323
|
+
<tr>
|
|
324
|
+
<th>Template</th>
|
|
325
|
+
<th>
|
|
326
|
+
<span data-lang="fr">Description</span>
|
|
327
|
+
<span data-lang="en">Description</span>
|
|
328
|
+
</th>
|
|
329
|
+
</tr>
|
|
330
|
+
</thead>
|
|
331
|
+
<tbody>
|
|
332
|
+
<tr>
|
|
333
|
+
<td><code>minimal.json</code></td>
|
|
334
|
+
<td>
|
|
335
|
+
<span data-lang="fr">Configuration minimale de base</span>
|
|
336
|
+
<span data-lang="en">Basic minimal configuration</span>
|
|
337
|
+
</td>
|
|
338
|
+
</tr>
|
|
339
|
+
<tr>
|
|
340
|
+
<td><code>npm-package.json</code></td>
|
|
341
|
+
<td>
|
|
342
|
+
<span data-lang="fr">Tests pour package npm (npm, GitHub, releases)</span>
|
|
343
|
+
<span data-lang="en">Tests for npm package (npm, GitHub, releases)</span>
|
|
344
|
+
</td>
|
|
345
|
+
</tr>
|
|
346
|
+
<tr>
|
|
347
|
+
<td><code>api-health.json</code></td>
|
|
348
|
+
<td>
|
|
349
|
+
<span data-lang="fr">Tests de sante API REST</span>
|
|
350
|
+
<span data-lang="en">REST API health tests</span>
|
|
351
|
+
</td>
|
|
352
|
+
</tr>
|
|
353
|
+
<tr>
|
|
354
|
+
<td><code>seo-check.json</code></td>
|
|
355
|
+
<td>
|
|
356
|
+
<span data-lang="fr">Verification SEO et indexation</span>
|
|
357
|
+
<span data-lang="en">SEO and indexation check</span>
|
|
358
|
+
</td>
|
|
359
|
+
</tr>
|
|
360
|
+
</tbody>
|
|
361
|
+
</table>
|
|
362
|
+
</div>
|
|
363
|
+
|
|
364
|
+
<div class="code-block">
|
|
365
|
+
<button class="copy-btn">Copy</button>
|
|
366
|
+
<pre><code># Utiliser un template
|
|
367
|
+
/test-web-config npm-package
|
|
368
|
+
|
|
369
|
+
# Cela copie le template dans .claude/test-web/config.json</code></pre>
|
|
370
|
+
</div>
|
|
371
|
+
</section>
|
|
372
|
+
|
|
373
|
+
<!-- Output -->
|
|
374
|
+
<section id="output">
|
|
375
|
+
<h2>
|
|
376
|
+
<span data-lang="fr">Format de sortie</span>
|
|
377
|
+
<span data-lang="en">Output Format</span>
|
|
378
|
+
</h2>
|
|
379
|
+
|
|
380
|
+
<h3 data-lang="fr">Succes</h3>
|
|
381
|
+
<h3 data-lang="en">Success</h3>
|
|
382
|
+
|
|
383
|
+
<div class="code-block">
|
|
384
|
+
<pre><code>TEST WEB RESULTS
|
|
385
|
+
────────────────────────────────
|
|
386
|
+
GitHub Repository 200 OK "README" found
|
|
387
|
+
npm Package 200 OK "claude-tools" found
|
|
388
|
+
Google Indexation Results Found in search
|
|
389
|
+
|
|
390
|
+
Status: 3/3 PASS
|
|
391
|
+
────────────────────────────────</code></pre>
|
|
392
|
+
</div>
|
|
393
|
+
|
|
394
|
+
<h3 data-lang="fr">Echec</h3>
|
|
395
|
+
<h3 data-lang="en">Failure</h3>
|
|
396
|
+
|
|
397
|
+
<div class="code-block">
|
|
398
|
+
<pre><code>TEST WEB RESULTS
|
|
399
|
+
────────────────────────────────
|
|
400
|
+
GitHub Repository 200 OK "README" found
|
|
401
|
+
npm Package 404 Package not found
|
|
402
|
+
Google Indexation Results No relevant results
|
|
403
|
+
|
|
404
|
+
Status: 1/3 PASS, 1 FAIL, 1 WARNING
|
|
405
|
+
────────────────────────────────</code></pre>
|
|
406
|
+
</div>
|
|
407
|
+
</section>
|
|
408
|
+
|
|
409
|
+
<!-- Chrome Mode -->
|
|
410
|
+
<section id="chrome">
|
|
411
|
+
<h2>
|
|
412
|
+
<span data-lang="fr">Mode Chrome (E2E)</span>
|
|
413
|
+
<span data-lang="en">Chrome Mode (E2E)</span>
|
|
414
|
+
</h2>
|
|
415
|
+
|
|
416
|
+
<div class="alert alert-info">
|
|
417
|
+
<span class="alert-icon">💡</span>
|
|
418
|
+
<div class="alert-content">
|
|
419
|
+
<h5 data-lang="fr">Prerequis</h5>
|
|
420
|
+
<h5 data-lang="en">Prerequisites</h5>
|
|
421
|
+
<div class="feature-grid">
|
|
422
|
+
<div class="feature-item">
|
|
423
|
+
<span class="feature-icon">🔌</span>
|
|
424
|
+
<span class="feature-text" data-lang="fr">Extension "Claude for Chrome" installee</span>
|
|
425
|
+
<span class="feature-text" data-lang="en">Extension "Claude for Chrome" installed</span>
|
|
426
|
+
</div>
|
|
427
|
+
<div class="feature-item">
|
|
428
|
+
<span class="feature-icon">🆔</span>
|
|
429
|
+
<span class="feature-text" data-lang="fr">Plan Max/Pro/Team/Enterprise</span>
|
|
430
|
+
<span class="feature-text" data-lang="en">Max/Pro/Team/Enterprise plan</span>
|
|
431
|
+
</div>
|
|
432
|
+
<div class="feature-item">
|
|
433
|
+
<span class="feature-icon">▶</span>
|
|
434
|
+
<span class="feature-text" data-lang="fr">Claude Code lance avec : <code>claude --chrome</code></span>
|
|
435
|
+
<span class="feature-text" data-lang="en">Claude Code launched with: <code>claude --chrome</code></span>
|
|
436
|
+
</div>
|
|
437
|
+
</div>
|
|
438
|
+
</div>
|
|
439
|
+
</div>
|
|
440
|
+
|
|
441
|
+
<div class="code-block">
|
|
442
|
+
<button class="copy-btn">Copy</button>
|
|
443
|
+
<pre><code># 1. Lancer Claude Code avec Chrome
|
|
444
|
+
claude --chrome
|
|
445
|
+
|
|
446
|
+
# 2. Executer les tests E2E
|
|
447
|
+
/test-web --chrome</code></pre>
|
|
448
|
+
</div>
|
|
449
|
+
</section>
|
|
450
|
+
|
|
451
|
+
<!-- Integration -->
|
|
452
|
+
<section id="integration">
|
|
453
|
+
<h2>
|
|
454
|
+
<span data-lang="fr">Integration workflows</span>
|
|
455
|
+
<span data-lang="en">Workflow Integration</span>
|
|
456
|
+
</h2>
|
|
457
|
+
|
|
458
|
+
<p data-lang="fr">
|
|
459
|
+
<code>/test-web</code> peut etre appele automatiquement dans d'autres workflows :
|
|
460
|
+
</p>
|
|
461
|
+
<p data-lang="en">
|
|
462
|
+
<code>/test-web</code> can be called automatically in other workflows:
|
|
463
|
+
</p>
|
|
464
|
+
|
|
465
|
+
<div class="table-container">
|
|
466
|
+
<table>
|
|
467
|
+
<thead>
|
|
468
|
+
<tr>
|
|
469
|
+
<th>Workflow</th>
|
|
470
|
+
<th>Phase</th>
|
|
471
|
+
<th>
|
|
472
|
+
<span data-lang="fr">Usage</span>
|
|
473
|
+
<span data-lang="en">Usage</span>
|
|
474
|
+
</th>
|
|
475
|
+
</tr>
|
|
476
|
+
</thead>
|
|
477
|
+
<tbody>
|
|
478
|
+
<tr>
|
|
479
|
+
<td><strong>BA</strong></td>
|
|
480
|
+
<td>/ba:5-verify</td>
|
|
481
|
+
<td>
|
|
482
|
+
<span data-lang="fr">Verification des endpoints deployes</span>
|
|
483
|
+
<span data-lang="en">Deployed endpoints verification</span>
|
|
484
|
+
</td>
|
|
485
|
+
</tr>
|
|
486
|
+
<tr>
|
|
487
|
+
<td><strong>EPCT</strong></td>
|
|
488
|
+
<td>Phase T (Test)</td>
|
|
489
|
+
<td>
|
|
490
|
+
<span data-lang="fr">Tests d'integration web</span>
|
|
491
|
+
<span data-lang="en">Web integration tests</span>
|
|
492
|
+
</td>
|
|
493
|
+
</tr>
|
|
494
|
+
</tbody>
|
|
495
|
+
</table>
|
|
496
|
+
</div>
|
|
497
|
+
</section>
|
|
498
|
+
</div>
|
|
499
|
+
</main>
|
|
500
|
+
</div>
|
|
501
|
+
</div>
|
|
502
|
+
|
|
503
|
+
<!-- Mobile Menu Button -->
|
|
504
|
+
<button class="mobile-menu-btn">☰</button>
|
|
505
|
+
<div class="overlay"></div>
|
|
506
|
+
|
|
507
|
+
<script src="js/app.js"></script>
|
|
508
|
+
</body>
|
|
509
|
+
</html>
|
package/README.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# @smartstack/claude-commands
|
|
2
|
+
|
|
3
|
+
SmartStack Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Install globally
|
|
9
|
+
npm install -g @smartstack/claude-commands
|
|
10
|
+
|
|
11
|
+
# Install commands to Claude Code
|
|
12
|
+
smartstack install
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
After installation, the following commands are available in Claude Code:
|
|
18
|
+
|
|
19
|
+
### GitFlow Workflow
|
|
20
|
+
|
|
21
|
+
- `/gitflow` - Full GitFlow workflow
|
|
22
|
+
- `/gitflow:1-init` - Initialize GitFlow structure
|
|
23
|
+
- `/gitflow:2-status` - Show repository status
|
|
24
|
+
- `/gitflow:3-commit` - Smart commit with validation
|
|
25
|
+
- `/gitflow:4-plan` - Create integration plan
|
|
26
|
+
- `/gitflow:5-exec` - Execute integration plan
|
|
27
|
+
- `/gitflow:6-abort` - Rollback operations
|
|
28
|
+
- `/gitflow:7-pull-request` - Create PR
|
|
29
|
+
- `/gitflow:8-review` - Review PR
|
|
30
|
+
- `/gitflow:9-merge` - Merge PR
|
|
31
|
+
- `/gitflow:10-start` - Start feature/release/hotfix
|
|
32
|
+
- `/gitflow:11-finish` - Finish and tag
|
|
33
|
+
- `/gitflow:12-cleanup` - Cleanup worktrees
|
|
34
|
+
|
|
35
|
+
### Development Methodologies
|
|
36
|
+
|
|
37
|
+
- `/apex` - APEX methodology (Analyze-Plan-Execute-eXamine)
|
|
38
|
+
- `/epct` - Explore-Plan-Code-Test methodology
|
|
39
|
+
- `/oneshot` - Ultra-fast implementation
|
|
40
|
+
- `/debug` - Systematic bug debugging
|
|
41
|
+
- `/explore` - Deep codebase exploration
|
|
42
|
+
- `/explain` - Code explanation with diagrams
|
|
43
|
+
- `/review` - Quick code review
|
|
44
|
+
- `/implement` - Implementation from BA handoff
|
|
45
|
+
|
|
46
|
+
### Business Analysis
|
|
47
|
+
|
|
48
|
+
- `/business-analyse` - Full BA workflow (7 phases)
|
|
49
|
+
- `/business-analyse:1-init` - Initialize structure
|
|
50
|
+
- `/business-analyse:2-discover` - Requirements elicitation
|
|
51
|
+
- `/business-analyse:3-analyse` - Business analysis (BRD)
|
|
52
|
+
- `/business-analyse:4-specify` - Functional specification (FRD)
|
|
53
|
+
- `/business-analyse:5-validate` - User validation
|
|
54
|
+
- `/business-analyse:6-handoff` - Development handoff
|
|
55
|
+
- `/business-analyse:7-document` - Documentation
|
|
56
|
+
|
|
57
|
+
### EF Core Migrations
|
|
58
|
+
|
|
59
|
+
- `/efcore` - EF Core orchestrator
|
|
60
|
+
- `/efcore:migration` - Create/recreate migration
|
|
61
|
+
- `/efcore:db-status` - Show migration status
|
|
62
|
+
- `/efcore:db-deploy` - Apply migrations
|
|
63
|
+
- `/efcore:db-seed` - Seed database
|
|
64
|
+
- `/efcore:db-reset` - Reset database
|
|
65
|
+
- `/efcore:scan` - Scan migrations across branches
|
|
66
|
+
- `/efcore:conflicts` - Detect conflicts
|
|
67
|
+
- `/efcore:rebase-snapshot` - Rebase ModelSnapshot
|
|
68
|
+
|
|
69
|
+
## CLI Commands
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
# Install commands globally
|
|
73
|
+
smartstack install
|
|
74
|
+
|
|
75
|
+
# Install to current project
|
|
76
|
+
smartstack install --local
|
|
77
|
+
|
|
78
|
+
# Show installation status
|
|
79
|
+
smartstack status
|
|
80
|
+
|
|
81
|
+
# Update to latest version
|
|
82
|
+
smartstack update
|
|
83
|
+
|
|
84
|
+
# Uninstall
|
|
85
|
+
smartstack uninstall
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
MIT
|