@atlashub/smartstack-cli 1.37.0 → 2.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 +147 -40
- package/.documentation/apex.html +1 -1
- package/.documentation/business-analyse.html +3 -3
- package/.documentation/cli-commands.html +2 -2
- package/.documentation/commands.html +14 -14
- package/.documentation/efcore.html +14 -14
- package/.documentation/gitflow.html +12 -12
- package/.documentation/hooks.html +41 -3
- package/.documentation/index.html +1 -1
- package/.documentation/init.html +2 -2
- package/.documentation/installation.html +11 -11
- package/.documentation/js/app.js +1 -1
- package/.documentation/ralph-loop.html +1 -1
- package/.documentation/test-web.html +4 -4
- package/config/mcp-defaults.json +62 -0
- package/dist/index.js +58 -5
- package/dist/index.js.map +1 -1
- package/dist/mcp-entry.mjs +70010 -0
- package/dist/mcp-entry.mjs.map +1 -0
- package/package.json +14 -5
- package/templates/agents/gitflow/start.md +5 -4
- package/templates/agents/mcp-healthcheck.md +15 -13
- package/templates/mcp-scaffolding/component.tsx.hbs +298 -0
- package/templates/mcp-scaffolding/controller.cs.hbs +184 -0
- package/templates/mcp-scaffolding/entity-extension.cs.hbs +231 -0
- package/templates/mcp-scaffolding/frontend/api-client.ts.hbs +116 -0
- package/templates/mcp-scaffolding/frontend/nav-routes.ts.hbs +133 -0
- package/templates/mcp-scaffolding/frontend/routes.tsx.hbs +134 -0
- package/templates/mcp-scaffolding/migrations/seed-roles.cs.hbs +261 -0
- package/templates/mcp-scaffolding/service-extension.cs.hbs +53 -0
- package/templates/mcp-scaffolding/tests/controller.test.cs.hbs +413 -0
- package/templates/mcp-scaffolding/tests/entity.test.cs.hbs +239 -0
- package/templates/mcp-scaffolding/tests/repository.test.cs.hbs +441 -0
- package/templates/mcp-scaffolding/tests/security.test.cs.hbs +442 -0
- package/templates/mcp-scaffolding/tests/service.test.cs.hbs +390 -0
- package/templates/mcp-scaffolding/tests/validator.test.cs.hbs +428 -0
- package/templates/ralph/README.md +3 -3
- package/templates/ralph/ralph.config.yaml +2 -2
- package/templates/skills/admin/SKILL.md +42 -0
- package/templates/skills/business-analyse/_shared.md +79 -15
- package/templates/skills/business-analyse/questionnaire/01-context.md +4 -4
- package/templates/skills/business-analyse/questionnaire/02-stakeholders.md +3 -3
- package/templates/skills/business-analyse/questionnaire/03-scope.md +4 -4
- package/templates/skills/business-analyse/questionnaire/04-data.md +7 -7
- package/templates/skills/business-analyse/questionnaire/05-integrations.md +1 -1
- package/templates/skills/business-analyse/questionnaire/06-security.md +3 -3
- package/templates/skills/business-analyse/questionnaire/07-ui.md +1 -1
- package/templates/skills/business-analyse/questionnaire/08-performance.md +3 -3
- package/templates/skills/business-analyse/questionnaire/09-constraints.md +4 -4
- package/templates/skills/business-analyse/questionnaire/10-documentation.md +2 -2
- package/templates/skills/business-analyse/questionnaire/11-data-lifecycle.md +2 -2
- package/templates/skills/business-analyse/questionnaire/12-migration.md +1 -1
- package/templates/skills/business-analyse/questionnaire/13-cross-module.md +2 -2
- package/templates/skills/business-analyse/steps/step-01-discover.md +50 -25
- package/templates/skills/business-analyse/steps/step-03-specify.md +63 -0
- package/templates/skills/business-analyse/steps/step-04-validate.md +23 -1
- package/templates/skills/business-analyse/steps/step-05-handoff.md +248 -66
- package/templates/skills/business-analyse/templates/tpl-handoff.md +99 -23
- package/templates/skills/cc-agent/SKILL.md +129 -0
- package/templates/skills/cc-agent/references/agent-frontmatter.md +213 -0
- package/templates/skills/cc-agent/references/permission-modes.md +102 -0
- package/templates/skills/cc-agent/references/tools-reference.md +144 -0
- package/templates/skills/cc-agent/steps/step-00-init.md +134 -0
- package/templates/skills/cc-agent/steps/step-01-design.md +186 -0
- package/templates/skills/cc-agent/steps/step-02-generate.md +204 -0
- package/templates/skills/cc-agent/steps/step-03-validate.md +130 -0
- package/templates/skills/cc-agent/templates/agent-categorized.md +67 -0
- package/templates/skills/cc-agent/templates/agent-standalone.md +56 -0
- package/templates/skills/cc-agent/templates/agent-with-skills.md +94 -0
- package/templates/skills/cc-audit/SKILL.md +108 -0
- package/templates/skills/cc-audit/references/agent-checklist.md +91 -0
- package/templates/skills/cc-audit/references/hook-checklist.md +110 -0
- package/templates/skills/cc-audit/references/skill-checklist.md +70 -0
- package/templates/skills/cc-audit/steps/step-00-init.md +98 -0
- package/templates/skills/cc-audit/steps/step-01-scan.md +142 -0
- package/templates/skills/cc-audit/steps/step-02-analyze.md +158 -0
- package/templates/skills/cc-audit/steps/step-03-report.md +142 -0
- package/templates/skills/cc-skill/SKILL.md +134 -0
- package/templates/skills/cc-skill/references/best-practices.md +167 -0
- package/templates/skills/cc-skill/references/frontmatter-reference.md +182 -0
- package/templates/skills/cc-skill/references/skill-patterns.md +199 -0
- package/templates/skills/cc-skill/steps/step-00-init.md +119 -0
- package/templates/skills/cc-skill/steps/step-01-design.md +199 -0
- package/templates/skills/cc-skill/steps/step-02-generate.md +145 -0
- package/templates/skills/cc-skill/steps/step-03-steps.md +151 -0
- package/templates/skills/cc-skill/steps/step-04-validate.md +124 -0
- package/templates/skills/cc-skill/templates/skill-forked.md +85 -0
- package/templates/skills/cc-skill/templates/skill-progressive.md +102 -0
- package/templates/skills/cc-skill/templates/skill-simple.md +75 -0
- package/templates/skills/cc-skill/templates/step-template.md +82 -0
- package/templates/skills/check-version/SKILL.md +6 -0
- package/templates/skills/controller/templates.md +82 -0
- package/templates/skills/debug/SKILL.md +4 -0
- package/templates/skills/documentation/SKILL.md +1 -0
- package/templates/skills/efcore/SKILL.md +5 -0
- package/templates/skills/efcore/references/zero-downtime-patterns.md +227 -0
- package/templates/skills/efcore/steps/db/step-deploy.md +26 -5
- package/templates/skills/efcore/steps/migration/step-03-validate.md +19 -0
- package/templates/skills/efcore/steps/shared/step-00-init.md +21 -7
- package/templates/skills/explore/SKILL.md +28 -32
- package/templates/skills/feature-full/SKILL.md +1 -0
- package/templates/skills/gitflow/SKILL.md +8 -0
- package/templates/skills/gitflow/steps/step-start.md +45 -10
- package/templates/skills/mcp/SKILL.md +38 -18
- package/templates/skills/quick-search/SKILL.md +8 -1
- package/templates/skills/ralph-loop/SKILL.md +1 -1
- package/templates/skills/ralph-loop/steps/step-00-init.md +8 -68
- package/templates/skills/ralph-loop/steps/step-04-check.md +1 -1
- package/templates/skills/refactor/SKILL.md +1 -0
- package/templates/skills/review-code/SKILL.md +11 -3
- package/templates/skills/review-code/references/owasp-api-top10.md +243 -0
- package/templates/skills/review-code/references/security-checklist.md +86 -1
- package/templates/skills/review-code/references/smartstack-conventions.md +166 -0
- package/templates/skills/ui-components/SKILL.md +31 -438
- package/templates/skills/ui-components/accessibility.md +170 -0
- package/templates/skills/ui-components/patterns/data-table.md +39 -0
- package/templates/skills/ui-components/patterns/entity-card.md +77 -0
- package/templates/skills/ui-components/patterns/grid-layout.md +91 -0
- package/templates/skills/ui-components/patterns/kanban.md +43 -0
- package/templates/skills/ui-components/style-guide.md +86 -0
- package/templates/skills/utils/SKILL.md +1 -0
- package/templates/skills/validate/SKILL.md +1 -0
- package/templates/skills/workflow/SKILL.md +27 -0
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title" data-lang="fr">Agents Spécialisés</span>
|
|
18
18
|
<span class="page-title" data-lang="en">Specialized Agents</span>
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
<!-- Introduction -->
|
|
136
136
|
<section id="introduction">
|
|
137
137
|
<p data-lang="fr">
|
|
138
|
-
|
|
138
|
+
SmartStack CLI 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.
|
|
139
139
|
</p>
|
|
140
140
|
<p data-lang="en">
|
|
141
|
-
|
|
141
|
+
SmartStack CLI 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.
|
|
142
142
|
</p>
|
|
143
143
|
|
|
144
144
|
<div class="alert alert-info">
|
|
@@ -761,44 +761,10 @@ Accuracy > Speed. Preserve meaning and formatting while fixing obvious errors.</
|
|
|
761
761
|
</thead>
|
|
762
762
|
<tbody>
|
|
763
763
|
<tr>
|
|
764
|
-
<td
|
|
765
|
-
|
|
766
|
-
<span data-lang="
|
|
767
|
-
<span data-lang="en">Endpoints, controllers, DTOs, API patterns</span>
|
|
764
|
+
<td colspan="3" style="text-align: center; font-style: italic; color: var(--text-muted);">
|
|
765
|
+
<span data-lang="fr">Agents specialises en cours de developpement (Phase 2)</span>
|
|
766
|
+
<span data-lang="en">Specialized agents in development (Phase 2)</span>
|
|
768
767
|
</td>
|
|
769
|
-
<td>Phase 2</td>
|
|
770
|
-
</tr>
|
|
771
|
-
<tr>
|
|
772
|
-
<td><code>explore-schema</code></td>
|
|
773
|
-
<td>
|
|
774
|
-
<span data-lang="fr">Schema DB, entites, configurations</span>
|
|
775
|
-
<span data-lang="en">DB schema, entities, configurations</span>
|
|
776
|
-
</td>
|
|
777
|
-
<td>Phase 2</td>
|
|
778
|
-
</tr>
|
|
779
|
-
<tr>
|
|
780
|
-
<td><code>explore-permissions</code></td>
|
|
781
|
-
<td>
|
|
782
|
-
<span data-lang="fr">RBAC, roles, autorisations</span>
|
|
783
|
-
<span data-lang="en">RBAC, roles, authorizations</span>
|
|
784
|
-
</td>
|
|
785
|
-
<td>Phase 2</td>
|
|
786
|
-
</tr>
|
|
787
|
-
<tr>
|
|
788
|
-
<td><code>explore-navigation</code></td>
|
|
789
|
-
<td>
|
|
790
|
-
<span data-lang="fr">Menus, routes, pages</span>
|
|
791
|
-
<span data-lang="en">Menus, routes, pages</span>
|
|
792
|
-
</td>
|
|
793
|
-
<td>Phase 2</td>
|
|
794
|
-
</tr>
|
|
795
|
-
<tr>
|
|
796
|
-
<td><code>explore-theme</code></td>
|
|
797
|
-
<td>
|
|
798
|
-
<span data-lang="fr">UI patterns, composants, design system</span>
|
|
799
|
-
<span data-lang="en">UI patterns, components, design system</span>
|
|
800
|
-
</td>
|
|
801
|
-
<td>Phase 2</td>
|
|
802
768
|
</tr>
|
|
803
769
|
</tbody>
|
|
804
770
|
</table>
|
|
@@ -911,6 +877,147 @@ Batch conditional executor. Handle ≤5 tasks. VERIFY INDEPENDENTLY before each
|
|
|
911
877
|
</div>
|
|
912
878
|
</div>
|
|
913
879
|
</section>
|
|
880
|
+
|
|
881
|
+
<!-- Agent: code-reviewer -->
|
|
882
|
+
<section id="code-reviewer">
|
|
883
|
+
<h2>code-reviewer</h2>
|
|
884
|
+
<div class="command-card">
|
|
885
|
+
<div class="command-header">
|
|
886
|
+
<code class="command-name">code-reviewer</code>
|
|
887
|
+
<span class="tag tag-agent">Agent</span>
|
|
888
|
+
<span class="tag" style="background: #ef4444; color: #fff;">Security</span>
|
|
889
|
+
</div>
|
|
890
|
+
<div class="command-body">
|
|
891
|
+
<p data-lang="fr">Revue de code experte couvrant securite (OWASP), architecture, clean code (SOLID), performance et conventions SmartStack.</p>
|
|
892
|
+
<p data-lang="en">Expert code review covering security (OWASP), architecture, clean code (SOLID), performance and SmartStack conventions.</p>
|
|
893
|
+
<p class="template-path"><code>templates/agents/code-reviewer.md</code></p>
|
|
894
|
+
</div>
|
|
895
|
+
</div>
|
|
896
|
+
</section>
|
|
897
|
+
|
|
898
|
+
<!-- Agent: docs-context-reader -->
|
|
899
|
+
<section id="docs-context-reader">
|
|
900
|
+
<h2>docs-context-reader</h2>
|
|
901
|
+
<div class="command-card">
|
|
902
|
+
<div class="command-header">
|
|
903
|
+
<code class="command-name">docs-context-reader</code>
|
|
904
|
+
<span class="tag tag-agent">Agent</span>
|
|
905
|
+
<span class="tag" style="background: #3b82f6; color: #fff;">Docs</span>
|
|
906
|
+
</div>
|
|
907
|
+
<div class="command-body">
|
|
908
|
+
<p data-lang="fr">Lit la documentation du projet et produit un resume structure pour injection de contexte dans les skills et agents.</p>
|
|
909
|
+
<p data-lang="en">Reads project documentation and produces structured summary for context injection into skills and agents.</p>
|
|
910
|
+
<p class="template-path"><code>templates/agents/docs-context-reader.md</code></p>
|
|
911
|
+
</div>
|
|
912
|
+
</div>
|
|
913
|
+
</section>
|
|
914
|
+
|
|
915
|
+
<!-- Agent: docs-sync-checker -->
|
|
916
|
+
<section id="docs-sync-checker">
|
|
917
|
+
<h2>docs-sync-checker</h2>
|
|
918
|
+
<div class="command-card">
|
|
919
|
+
<div class="command-header">
|
|
920
|
+
<code class="command-name">docs-sync-checker</code>
|
|
921
|
+
<span class="tag tag-agent">Agent</span>
|
|
922
|
+
<span class="tag" style="background: #3b82f6; color: #fff;">Docs</span>
|
|
923
|
+
</div>
|
|
924
|
+
<div class="command-body">
|
|
925
|
+
<p data-lang="fr">Detecte la derive de documentation en comparant les changements de code au docs-manifest.json.</p>
|
|
926
|
+
<p data-lang="en">Detects documentation drift by comparing code changes against docs-manifest.json.</p>
|
|
927
|
+
<p class="template-path"><code>templates/agents/docs-sync-checker.md</code></p>
|
|
928
|
+
</div>
|
|
929
|
+
</div>
|
|
930
|
+
</section>
|
|
931
|
+
|
|
932
|
+
<!-- Agent: mcp-healthcheck -->
|
|
933
|
+
<section id="mcp-healthcheck">
|
|
934
|
+
<h2>mcp-healthcheck</h2>
|
|
935
|
+
<div class="command-card">
|
|
936
|
+
<div class="command-header">
|
|
937
|
+
<code class="command-name">mcp-healthcheck</code>
|
|
938
|
+
<span class="tag tag-agent">Agent</span>
|
|
939
|
+
<span class="tag" style="background: #06b6d4; color: #fff;">MCP</span>
|
|
940
|
+
</div>
|
|
941
|
+
<div class="command-body">
|
|
942
|
+
<p data-lang="fr">Verifie la disponibilite, la version et la configuration du serveur MCP avant les operations. Le MCP est desormais integre dans la CLI (v2.0.0).</p>
|
|
943
|
+
<p data-lang="en">Verifies MCP server availability, version and configuration before operations. MCP is now bundled in the CLI (v2.0.0).</p>
|
|
944
|
+
<p class="template-path"><code>templates/agents/mcp-healthcheck.md</code></p>
|
|
945
|
+
</div>
|
|
946
|
+
</div>
|
|
947
|
+
</section>
|
|
948
|
+
|
|
949
|
+
<!-- GitFlow Agents -->
|
|
950
|
+
<section id="gitflow-agents">
|
|
951
|
+
<h2>
|
|
952
|
+
<span data-lang="fr">Agents GitFlow</span>
|
|
953
|
+
<span data-lang="en">GitFlow Agents</span>
|
|
954
|
+
</h2>
|
|
955
|
+
<p data-lang="fr">12 agents specialises pour le workflow GitFlow. Chaque commande <code>/gitflow</code> utilise un agent dedie.</p>
|
|
956
|
+
<p data-lang="en">12 specialized agents for GitFlow workflow. Each <code>/gitflow</code> command uses a dedicated agent.</p>
|
|
957
|
+
<div class="table-container">
|
|
958
|
+
<table class="reference-table">
|
|
959
|
+
<thead>
|
|
960
|
+
<tr>
|
|
961
|
+
<th>Agent</th>
|
|
962
|
+
<th>
|
|
963
|
+
<span data-lang="fr">Description</span>
|
|
964
|
+
<span data-lang="en">Description</span>
|
|
965
|
+
</th>
|
|
966
|
+
</tr>
|
|
967
|
+
</thead>
|
|
968
|
+
<tbody>
|
|
969
|
+
<tr><td><code>gitflow-init</code></td><td><span data-lang="fr">Initialisation GitFlow - setup config et repertoires</span><span data-lang="en">GitFlow initialization - setup config and directories</span></td></tr>
|
|
970
|
+
<tr><td><code>gitflow-start</code></td><td><span data-lang="fr">Creer une branche feature/release/hotfix avec worktree</span><span data-lang="en">Create feature/release/hotfix branch with worktree</span></td></tr>
|
|
971
|
+
<tr><td><code>gitflow-commit</code></td><td><span data-lang="fr">Commit avec validation des migrations EF Core</span><span data-lang="en">Commit with EF Core migration validation</span></td></tr>
|
|
972
|
+
<tr><td><code>gitflow-plan</code></td><td><span data-lang="fr">Planification d'integration avec analyse des conflits EF Core</span><span data-lang="en">Integration planning with EF Core conflict analysis</span></td></tr>
|
|
973
|
+
<tr><td><code>gitflow-exec</code></td><td><span data-lang="fr">Execution du plan avec versioning et resolution de conflits</span><span data-lang="en">Plan execution with versioning and conflict resolution</span></td></tr>
|
|
974
|
+
<tr><td><code>gitflow-pr</code></td><td><span data-lang="fr">Creation rapide de pull request avec auto-description</span><span data-lang="en">Fast pull request creation with auto-description</span></td></tr>
|
|
975
|
+
<tr><td><code>gitflow-review</code></td><td><span data-lang="fr">Checklist de revue pour validation de PR</span><span data-lang="en">Review checklist for PR validation</span></td></tr>
|
|
976
|
+
<tr><td><code>gitflow-merge</code></td><td><span data-lang="fr">Merge securise avec validation</span><span data-lang="en">Safe branch merge with validation</span></td></tr>
|
|
977
|
+
<tr><td><code>gitflow-finish</code></td><td><span data-lang="fr">Finaliser branche avec tag et cleanup</span><span data-lang="en">Finalize branch with tag and cleanup</span></td></tr>
|
|
978
|
+
<tr><td><code>gitflow-status</code></td><td><span data-lang="fr">Analyse rapide de l'etat du repository</span><span data-lang="en">Fast repository state analysis</span></td></tr>
|
|
979
|
+
<tr><td><code>gitflow-abort</code></td><td><span data-lang="fr">Rollback et operations de recuperation</span><span data-lang="en">Rollback and recovery operations</span></td></tr>
|
|
980
|
+
<tr><td><code>gitflow-cleanup</code></td><td><span data-lang="fr">Audit et suppression des worktrees et branches orphelines</span><span data-lang="en">Audit and remove orphan worktrees and branches</span></td></tr>
|
|
981
|
+
</tbody>
|
|
982
|
+
</table>
|
|
983
|
+
</div>
|
|
984
|
+
<p class="template-path"><code>templates/agents/gitflow/*.md</code></p>
|
|
985
|
+
</section>
|
|
986
|
+
|
|
987
|
+
<!-- EF Core Agents -->
|
|
988
|
+
<section id="efcore-agents">
|
|
989
|
+
<h2>
|
|
990
|
+
<span data-lang="fr">Agents EF Core</span>
|
|
991
|
+
<span data-lang="en">EF Core Agents</span>
|
|
992
|
+
</h2>
|
|
993
|
+
<p data-lang="fr">9 agents specialises pour la gestion des migrations Entity Framework Core.</p>
|
|
994
|
+
<p data-lang="en">9 specialized agents for Entity Framework Core migration management.</p>
|
|
995
|
+
<div class="table-container">
|
|
996
|
+
<table class="reference-table">
|
|
997
|
+
<thead>
|
|
998
|
+
<tr>
|
|
999
|
+
<th>Agent</th>
|
|
1000
|
+
<th>
|
|
1001
|
+
<span data-lang="fr">Description</span>
|
|
1002
|
+
<span data-lang="en">Description</span>
|
|
1003
|
+
</th>
|
|
1004
|
+
</tr>
|
|
1005
|
+
</thead>
|
|
1006
|
+
<tbody>
|
|
1007
|
+
<tr><td><code>efcore-db-status</code></td><td><span data-lang="fr">Verification rapide de l'etat des migrations</span><span data-lang="en">Fast migration state check</span></td></tr>
|
|
1008
|
+
<tr><td><code>efcore-db-deploy</code></td><td><span data-lang="fr">Appliquer les migrations en attente</span><span data-lang="en">Apply pending migrations</span></td></tr>
|
|
1009
|
+
<tr><td><code>efcore-db-reset</code></td><td><span data-lang="fr">Supprimer et recreer la base (DESTRUCTIF)</span><span data-lang="en">Drop and recreate database (DESTRUCTIVE)</span></td></tr>
|
|
1010
|
+
<tr><td><code>efcore-db-seed</code></td><td><span data-lang="fr">Peupler avec des donnees de test</span><span data-lang="en">Populate test data</span></td></tr>
|
|
1011
|
+
<tr><td><code>efcore-migration</code></td><td><span data-lang="fr">Gestionnaire de migrations - orchestre MCP pour le nommage</span><span data-lang="en">Migration manager - orchestrates MCP for naming</span></td></tr>
|
|
1012
|
+
<tr><td><code>efcore-squash</code></td><td><span data-lang="fr">Combiner plusieurs migrations en une seule</span><span data-lang="en">Combine multiple migrations into one</span></td></tr>
|
|
1013
|
+
<tr><td><code>efcore-rebase-snapshot</code></td><td><span data-lang="fr">Resynchroniser le ModelSnapshot avec develop</span><span data-lang="en">Resync ModelSnapshot with develop</span></td></tr>
|
|
1014
|
+
<tr><td><code>efcore-scan</code></td><td><span data-lang="fr">Scanner cross-branch - detecter les conflits avant qu'ils arrivent</span><span data-lang="en">Cross-branch scanner - detect conflicts before they happen</span></td></tr>
|
|
1015
|
+
<tr><td><code>efcore-conflicts</code></td><td><span data-lang="fr">Analyseur de conflits - BLOQUANT si conflit detecte</span><span data-lang="en">Conflict analyzer - BLOCKING if conflict detected</span></td></tr>
|
|
1016
|
+
</tbody>
|
|
1017
|
+
</table>
|
|
1018
|
+
</div>
|
|
1019
|
+
<p class="template-path"><code>templates/agents/efcore/*.md</code></p>
|
|
1020
|
+
</section>
|
|
914
1021
|
</div>
|
|
915
1022
|
</main>
|
|
916
1023
|
</div>
|
package/.documentation/apex.html
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">APEX Methodology</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Business Analyse</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -164,10 +164,10 @@
|
|
|
164
164
|
<section id="introduction">
|
|
165
165
|
<h2>Introduction</h2>
|
|
166
166
|
<p data-lang="fr">
|
|
167
|
-
Le workflow <strong>Business Analyse v2</strong> est un systeme complet en <strong>
|
|
167
|
+
Le workflow <strong>Business Analyse v2</strong> est un systeme complet en <strong>7 phases</strong> pour transformer une demande utilisateur vague en une implementation precise et documentee. Il separe clairement l'analyse du besoin (WHAT) de la specification technique (HOW).
|
|
168
168
|
</p>
|
|
169
169
|
<p data-lang="en">
|
|
170
|
-
The <strong>Business Analyse v2</strong> workflow is a complete <strong>
|
|
170
|
+
The <strong>Business Analyse v2</strong> workflow is a complete <strong>7-phase</strong> system to transform a vague user request into a precise documented implementation. It clearly separates need analysis (WHAT) from technical specification (HOW).
|
|
171
171
|
</p>
|
|
172
172
|
|
|
173
173
|
<div class="alert alert-warning">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">CLI Commands</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -610,7 +610,7 @@ smartstack check-mcp --json # Output JSON</code></pre>
|
|
|
610
610
|
<td><strong>smartstack</strong></td>
|
|
611
611
|
<td data-lang="fr">Validation conventions, scaffolding, API docs</td>
|
|
612
612
|
<td data-lang="en">Convention validation, scaffolding, API docs</td>
|
|
613
|
-
<td><code>
|
|
613
|
+
<td><code>claude mcp add smartstack -- npx -p @atlashub/smartstack-cli smartstack-mcp</code> <em data-lang="fr">(auto via install)</em><em data-lang="en">(auto via install)</em></td>
|
|
614
614
|
</tr>
|
|
615
615
|
</tbody>
|
|
616
616
|
</table>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title" data-lang="fr">Référence des commandes</span>
|
|
18
18
|
<span class="page-title" data-lang="en">Command Reference</span>
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
|
|
591
591
|
<!-- CLI Commands -->
|
|
592
592
|
<section id="cli">
|
|
593
|
-
<h2>CLI (
|
|
593
|
+
<h2>CLI (smartstack)</h2>
|
|
594
594
|
|
|
595
595
|
<div class="table-container">
|
|
596
596
|
<table>
|
|
@@ -609,7 +609,7 @@
|
|
|
609
609
|
</thead>
|
|
610
610
|
<tbody>
|
|
611
611
|
<tr>
|
|
612
|
-
<td><code>
|
|
612
|
+
<td><code>smartstack activate <key></code></td>
|
|
613
613
|
<td><code>a</code></td>
|
|
614
614
|
<td>
|
|
615
615
|
<span data-lang="fr">Activer la licence</span>
|
|
@@ -617,7 +617,7 @@
|
|
|
617
617
|
</td>
|
|
618
618
|
</tr>
|
|
619
619
|
<tr>
|
|
620
|
-
<td><code>
|
|
620
|
+
<td><code>smartstack install</code></td>
|
|
621
621
|
<td><code>i</code></td>
|
|
622
622
|
<td>
|
|
623
623
|
<span data-lang="fr">Installer les commandes et agents</span>
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
</td>
|
|
626
626
|
</tr>
|
|
627
627
|
<tr>
|
|
628
|
-
<td><code>
|
|
628
|
+
<td><code>smartstack uninstall</code></td>
|
|
629
629
|
<td><code>u</code></td>
|
|
630
630
|
<td>
|
|
631
631
|
<span data-lang="fr">Desinstaller les commandes et agents</span>
|
|
@@ -633,7 +633,7 @@
|
|
|
633
633
|
</td>
|
|
634
634
|
</tr>
|
|
635
635
|
<tr>
|
|
636
|
-
<td><code>
|
|
636
|
+
<td><code>smartstack status</code></td>
|
|
637
637
|
<td><code>s</code></td>
|
|
638
638
|
<td>
|
|
639
639
|
<span data-lang="fr">Afficher le statut d'installation</span>
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
</td>
|
|
642
642
|
</tr>
|
|
643
643
|
<tr>
|
|
644
|
-
<td><code>
|
|
644
|
+
<td><code>smartstack update</code></td>
|
|
645
645
|
<td>-</td>
|
|
646
646
|
<td>
|
|
647
647
|
<span data-lang="fr">Mettre a jour les commandes</span>
|
|
@@ -658,21 +658,21 @@
|
|
|
658
658
|
<div class="code-block">
|
|
659
659
|
<button class="copy-btn">Copy</button>
|
|
660
660
|
<pre><code># Installer tous les composants (defaut)
|
|
661
|
-
|
|
661
|
+
smartstack install
|
|
662
662
|
|
|
663
663
|
# Installer des composants specifiques
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
664
|
+
smartstack install --commands-only
|
|
665
|
+
smartstack install --agents-only
|
|
666
|
+
smartstack install --hooks-only
|
|
667
667
|
|
|
668
668
|
# Installer dans le projet (au lieu de ~/.claude)
|
|
669
|
-
|
|
669
|
+
smartstack install --local
|
|
670
670
|
|
|
671
671
|
# Forcer la reecriture des fichiers existants
|
|
672
|
-
|
|
672
|
+
smartstack install --force
|
|
673
673
|
|
|
674
674
|
# Ignorer la creation du fichier config
|
|
675
|
-
|
|
675
|
+
smartstack install --no-config</code></pre>
|
|
676
676
|
</div>
|
|
677
677
|
</section>
|
|
678
678
|
</div>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">EF Core Migrations</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
<span data-lang="fr">Commandes (9)</span>
|
|
107
107
|
<span data-lang="en">Commands (9)</span>
|
|
108
108
|
</a>
|
|
109
|
-
<a href="#cross-branch" class="sidebar-toc-link">Cross-Branch
|
|
109
|
+
<a href="#cross-branch" class="sidebar-toc-link">Cross-Branch</a>
|
|
110
110
|
<a href="#best-practices" class="sidebar-toc-link">
|
|
111
111
|
<span data-lang="fr">Bonnes pratiques</span>
|
|
112
112
|
<span data-lang="en">Best Practices</span>
|
|
@@ -307,10 +307,10 @@
|
|
|
307
307
|
<section id="introduction">
|
|
308
308
|
<h2>Introduction</h2>
|
|
309
309
|
<p data-lang="fr">
|
|
310
|
-
Entity Framework Core (EF Core) est l'ORM officiel de Microsoft pour .NET.
|
|
310
|
+
Entity Framework Core (EF Core) est l'ORM officiel de Microsoft pour .NET. SmartStack CLI integre une gestion avancee des migrations EF Core dans le workflow GitFlow, incluant la detection de conflits, la validation des migrations et la generation de scripts SQL idempotents.
|
|
311
311
|
</p>
|
|
312
312
|
<p data-lang="en">
|
|
313
|
-
Entity Framework Core (EF Core) is Microsoft's official ORM for .NET.
|
|
313
|
+
Entity Framework Core (EF Core) is Microsoft's official ORM for .NET. SmartStack CLI integrates advanced EF Core migration management into the GitFlow workflow, including conflict detection, migration validation, and idempotent SQL script generation.
|
|
314
314
|
</p>
|
|
315
315
|
|
|
316
316
|
<div class="alert alert-info">
|
|
@@ -319,10 +319,10 @@
|
|
|
319
319
|
<h5 data-lang="fr">Integration automatique</h5>
|
|
320
320
|
<h5 data-lang="en">Automatic Integration</h5>
|
|
321
321
|
<p data-lang="fr">
|
|
322
|
-
|
|
322
|
+
SmartStack CLI detecte automatiquement les projets .NET utilisant EF Core lors de l'initialisation avec <code>/gitflow init</code>.
|
|
323
323
|
</p>
|
|
324
324
|
<p data-lang="en">
|
|
325
|
-
|
|
325
|
+
SmartStack CLI automatically detects .NET projects using EF Core during initialization with <code>/gitflow init</code>.
|
|
326
326
|
</p>
|
|
327
327
|
</div>
|
|
328
328
|
</div>
|
|
@@ -892,10 +892,10 @@ dotnet ef migrations add $MCP_NAME --context ExtensionsDbContext -o Persistence/
|
|
|
892
892
|
</h2>
|
|
893
893
|
|
|
894
894
|
<p data-lang="fr">
|
|
895
|
-
|
|
895
|
+
SmartStack CLI fournit 9 commandes specialisees pour gerer les migrations EF Core. Chaque commande utilise un agent dedie optimise pour sa tache.
|
|
896
896
|
</p>
|
|
897
897
|
<p data-lang="en">
|
|
898
|
-
|
|
898
|
+
SmartStack CLI provides 9 specialized commands for EF Core migration management. Each command uses a dedicated agent optimized for its task.
|
|
899
899
|
</p>
|
|
900
900
|
|
|
901
901
|
<!-- ==================== /efcore migration ==================== -->
|
|
@@ -939,7 +939,7 @@ dotnet ef migrations add $MCP_NAME --context ExtensionsDbContext -o Persistence/
|
|
|
939
939
|
<div class="step-number step-validate">1</div>
|
|
940
940
|
<div class="step-content">
|
|
941
941
|
<div class="step-title">Cross-Branch</div>
|
|
942
|
-
<div class="step-desc">Verifie les conflits
|
|
942
|
+
<div class="step-desc">Verifie les conflits cross-branch</div>
|
|
943
943
|
</div>
|
|
944
944
|
</div>
|
|
945
945
|
<div class="step-item">
|
|
@@ -1005,7 +1005,7 @@ dotnet ef migrations add $MCP_NAME --context ExtensionsDbContext -o Persistence/
|
|
|
1005
1005
|
<div class="step-number step-validate">1</div>
|
|
1006
1006
|
<div class="step-content">
|
|
1007
1007
|
<div class="step-title">Cross-Branch</div>
|
|
1008
|
-
<div class="step-desc">Check conflicts
|
|
1008
|
+
<div class="step-desc">Check cross-branch conflicts</div>
|
|
1009
1009
|
</div>
|
|
1010
1010
|
</div>
|
|
1011
1011
|
<div class="step-item">
|
|
@@ -2234,12 +2234,12 @@ ORDRE DE MERGE RECOMMANDE
|
|
|
2234
2234
|
<!-- SECTION: CROSS-BRANCH -->
|
|
2235
2235
|
<!-- ============================================================ -->
|
|
2236
2236
|
<section id="cross-branch">
|
|
2237
|
-
<h2>Cross-Branch
|
|
2237
|
+
<h2>Cross-Branch</h2>
|
|
2238
2238
|
|
|
2239
2239
|
<div class="alert alert-info">
|
|
2240
2240
|
<span class="alert-icon">🌟</span>
|
|
2241
2241
|
<div class="alert-content">
|
|
2242
|
-
<h5>New
|
|
2242
|
+
<h5>New Feature</h5>
|
|
2243
2243
|
<p data-lang="fr">
|
|
2244
2244
|
Nouvelles commandes pour gerer les migrations entre plusieurs branches en parallele avec les worktrees GitFlow.
|
|
2245
2245
|
</p>
|
|
@@ -2505,10 +2505,10 @@ dotnet ef migrations script --idempotent -o ./scripts/migrations/v1.2.0.sql
|
|
|
2505
2505
|
</h2>
|
|
2506
2506
|
|
|
2507
2507
|
<p data-lang="fr">
|
|
2508
|
-
|
|
2508
|
+
SmartStack CLI integre la gestion des migrations EF Core directement dans le workflow GitFlow :
|
|
2509
2509
|
</p>
|
|
2510
2510
|
<p data-lang="en">
|
|
2511
|
-
|
|
2511
|
+
SmartStack CLI integrates EF Core migration management directly into the GitFlow workflow:
|
|
2512
2512
|
</p>
|
|
2513
2513
|
|
|
2514
2514
|
<div class="card-grid">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">GitFlow Workflow</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -166,10 +166,10 @@
|
|
|
166
166
|
<section id="introduction">
|
|
167
167
|
<h2>Introduction</h2>
|
|
168
168
|
<p data-lang="fr">
|
|
169
|
-
GitFlow est un modele de branchement Git qui definit une structure stricte pour gerer le developpement, les releases et les corrections de bugs.
|
|
169
|
+
GitFlow est un modele de branchement Git qui definit une structure stricte pour gerer le developpement, les releases et les corrections de bugs. SmartStack CLI automatise entierement ce workflow avec des commandes intelligentes qui gerent le versioning, les migrations EF Core et les conflits.
|
|
170
170
|
</p>
|
|
171
171
|
<p data-lang="en">
|
|
172
|
-
GitFlow is a Git branching model that defines a strict structure for managing development, releases and bug fixes.
|
|
172
|
+
GitFlow is a Git branching model that defines a strict structure for managing development, releases and bug fixes. SmartStack CLI fully automates this workflow with intelligent commands that handle versioning, EF Core migrations and conflicts.
|
|
173
173
|
</p>
|
|
174
174
|
|
|
175
175
|
<div class="alert alert-info">
|
|
@@ -417,10 +417,10 @@
|
|
|
417
417
|
<h3 data-lang="fr">Strategie de merge</h3>
|
|
418
418
|
<h3 data-lang="en">Merge Strategy</h3>
|
|
419
419
|
<p data-lang="fr">
|
|
420
|
-
|
|
420
|
+
SmartStack CLI utilise <code>--no-ff</code> (no fast-forward) par defaut pour preserver l'historique des branches :
|
|
421
421
|
</p>
|
|
422
422
|
<p data-lang="en">
|
|
423
|
-
|
|
423
|
+
SmartStack CLI uses <code>--no-ff</code> (no fast-forward) by default to preserve branch history:
|
|
424
424
|
</p>
|
|
425
425
|
|
|
426
426
|
<div class="code-block">
|
|
@@ -2296,7 +2296,7 @@ WIP: auth stuff</code></pre>
|
|
|
2296
2296
|
Before merging a feature, rebase on develop to have a clean history and avoid merge conflicts.
|
|
2297
2297
|
</p>
|
|
2298
2298
|
<div class="code-block">
|
|
2299
|
-
<pre><code>#
|
|
2299
|
+
<pre><code># SmartStack CLI le fait automatiquement avec /gitflow merge
|
|
2300
2300
|
# Manuellement :
|
|
2301
2301
|
git checkout feature/my-feature
|
|
2302
2302
|
git fetch origin
|
|
@@ -2314,10 +2314,10 @@ git merge --no-ff feature/my-feature</code></pre>
|
|
|
2314
2314
|
<span data-lang="en">Never Push to Main Directly</span>
|
|
2315
2315
|
</h4>
|
|
2316
2316
|
<p data-lang="fr">
|
|
2317
|
-
Toutes les modifications doivent passer par des branches feature, release ou hotfix.
|
|
2317
|
+
Toutes les modifications doivent passer par des branches feature, release ou hotfix. SmartStack CLI protege automatiquement les branches principales.
|
|
2318
2318
|
</p>
|
|
2319
2319
|
<p data-lang="en">
|
|
2320
|
-
All changes must go through feature, release or hotfix branches.
|
|
2320
|
+
All changes must go through feature, release or hotfix branches. SmartStack CLI automatically protects main branches.
|
|
2321
2321
|
</p>
|
|
2322
2322
|
</div>
|
|
2323
2323
|
|
|
@@ -2397,8 +2397,8 @@ git merge --no-ff feature/my-feature</code></pre>
|
|
|
2397
2397
|
<span data-lang="en">GitFlow Commands</span>
|
|
2398
2398
|
</h2>
|
|
2399
2399
|
|
|
2400
|
-
<p data-lang="fr">
|
|
2401
|
-
<p data-lang="en">
|
|
2400
|
+
<p data-lang="fr">SmartStack CLI fournit 11 commandes pour gerer le workflow GitFlow. Chaque commande inclut son prompt complet.</p>
|
|
2401
|
+
<p data-lang="en">SmartStack CLI provides 11 commands to manage the GitFlow workflow. Each command includes its complete prompt.</p>
|
|
2402
2402
|
|
|
2403
2403
|
<!-- Command: /gitflow init -->
|
|
2404
2404
|
<div class="command-card">
|
|
@@ -2714,8 +2714,8 @@ git merge --no-ff feature/my-feature</code></pre>
|
|
|
2714
2714
|
<span data-lang="en">Complete Example</span>
|
|
2715
2715
|
</h2>
|
|
2716
2716
|
|
|
2717
|
-
<p data-lang="fr">Voici un exemple complet de workflow GitFlow avec
|
|
2718
|
-
<p data-lang="en">Here's a complete GitFlow workflow example with
|
|
2717
|
+
<p data-lang="fr">Voici un exemple complet de workflow GitFlow avec SmartStack CLI :</p>
|
|
2718
|
+
<p data-lang="en">Here's a complete GitFlow workflow example with SmartStack CLI:</p>
|
|
2719
2719
|
|
|
2720
2720
|
<div class="code-block">
|
|
2721
2721
|
<button class="copy-btn">Copy</button>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<header class="global-header">
|
|
13
13
|
<div class="logo">SS</div>
|
|
14
14
|
<span class="site-title">SmartStack CLI</span>
|
|
15
|
-
<span class="version-badge">
|
|
15
|
+
<span class="version-badge">v2.0.0</span>
|
|
16
16
|
<div class="header-divider"></div>
|
|
17
17
|
<span class="page-title">Hooks</span>
|
|
18
18
|
<nav class="breadcrumb">
|
|
@@ -135,10 +135,10 @@
|
|
|
135
135
|
<section id="introduction">
|
|
136
136
|
<h2>Introduction</h2>
|
|
137
137
|
<p data-lang="fr">
|
|
138
|
-
Les hooks Claude Code permettent d'executer des scripts automatiquement avant ou apres certaines operations.
|
|
138
|
+
Les hooks Claude Code permettent d'executer des scripts automatiquement avant ou apres certaines operations. SmartStack CLI inclut des hooks pre-configures pour la validation des migrations EF Core et la securite.
|
|
139
139
|
</p>
|
|
140
140
|
<p data-lang="en">
|
|
141
|
-
Claude Code hooks allow running scripts automatically before or after certain operations.
|
|
141
|
+
Claude Code hooks allow running scripts automatically before or after certain operations. SmartStack CLI includes pre-configured hooks for EF Core migration validation and security.
|
|
142
142
|
</p>
|
|
143
143
|
</section>
|
|
144
144
|
|
|
@@ -408,6 +408,44 @@ EF_MIGRATION_FORCE=1 git commit -m "message"</code></pre>
|
|
|
408
408
|
</div>
|
|
409
409
|
</div>
|
|
410
410
|
</section>
|
|
411
|
+
|
|
412
|
+
<!-- Hook: mcp-check -->
|
|
413
|
+
<section id="mcp-check">
|
|
414
|
+
<h2>mcp-check</h2>
|
|
415
|
+
<div class="command-card">
|
|
416
|
+
<div class="command-header">
|
|
417
|
+
<code class="command-name">mcp-check</code>
|
|
418
|
+
<span class="tag" style="background: #06b6d4; color: #fff;">MCP</span>
|
|
419
|
+
</div>
|
|
420
|
+
<div class="command-body">
|
|
421
|
+
<p data-lang="fr">Verification rapide de la disponibilite MCP avant les appels aux outils MCP. Se declenche sur <code>mcp__smartstack__*</code>.</p>
|
|
422
|
+
<p data-lang="en">Quick MCP availability check before MCP tool calls. Triggers on <code>mcp__smartstack__*</code>.</p>
|
|
423
|
+
<h4>Trigger</h4>
|
|
424
|
+
<div class="code-block"><button class="copy-btn">Copy</button><pre><code>type: tool-use
|
|
425
|
+
pattern: mcp__smartstack__*</code></pre></div>
|
|
426
|
+
<p class="template-path"><code>templates/hooks/mcp-check.md</code></p>
|
|
427
|
+
</div>
|
|
428
|
+
</div>
|
|
429
|
+
</section>
|
|
430
|
+
|
|
431
|
+
<!-- Hook: docs-drift-check -->
|
|
432
|
+
<section id="docs-drift-check">
|
|
433
|
+
<h2>docs-drift-check</h2>
|
|
434
|
+
<div class="command-card">
|
|
435
|
+
<div class="command-header">
|
|
436
|
+
<code class="command-name">docs-drift-check</code>
|
|
437
|
+
<span class="tag" style="background: #f59e0b; color: #fff;">Warning</span>
|
|
438
|
+
</div>
|
|
439
|
+
<div class="command-body">
|
|
440
|
+
<p data-lang="fr">Avertissement de derive de documentation lors des commits (non-bloquant). Detecte quand le code change sans mise a jour de la documentation.</p>
|
|
441
|
+
<p data-lang="en">Documentation drift warning on commit (non-blocking). Detects when code changes without documentation updates.</p>
|
|
442
|
+
<h4>Trigger</h4>
|
|
443
|
+
<div class="code-block"><button class="copy-btn">Copy</button><pre><code>type: tool-use
|
|
444
|
+
pattern: git commit*</code></pre></div>
|
|
445
|
+
<p class="template-path"><code>templates/hooks/docs-drift-check.md</code></p>
|
|
446
|
+
</div>
|
|
447
|
+
</div>
|
|
448
|
+
</section>
|
|
411
449
|
</div>
|
|
412
450
|
</main>
|
|
413
451
|
</div>
|