@atlashub/smartstack-cli 1.14.0 → 1.14.2
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/gitflow.html +541 -378
- package/.documentation/installation.html +114 -39
- package/config/default-config.json +10 -1
- package/package.json +1 -1
- package/templates/agents/efcore/migration.md +4 -4
- package/templates/commands/efcore/_shared.md +1 -1
- package/templates/commands/efcore/migration.md +1 -1
- package/templates/commands/efcore/rebase-snapshot.md +1 -1
- package/templates/commands/efcore/squash.md +1 -0
- package/templates/skills/_shared.md +29 -6
- package/templates/skills/apex/SKILL.md +56 -0
- package/templates/skills/apex/steps/step-01-analyze.md +22 -5
- package/templates/skills/apex/steps/step-04-validate.md +32 -6
- package/templates/skills/gitflow/steps/step-start.md +109 -9
- package/templates/skills/ui-components/SKILL.md +167 -5
- package/templates/commands/gitflow/OPTIMIZATIONS.md +0 -206
- package/templates/gitflow/config.json +0 -138
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://atlashub.ch/schemas/claude-gitflow-config.json",
|
|
3
|
-
"version": "1.2.0",
|
|
4
|
-
"worktrees": {
|
|
5
|
-
"enabled": true,
|
|
6
|
-
"basePath": "../worktrees",
|
|
7
|
-
"permanent": {
|
|
8
|
-
"main": true,
|
|
9
|
-
"develop": true
|
|
10
|
-
},
|
|
11
|
-
"structure": {
|
|
12
|
-
"features": "features/{name}",
|
|
13
|
-
"releases": "releases/v{version}",
|
|
14
|
-
"hotfixes": "hotfixes/{name}"
|
|
15
|
-
},
|
|
16
|
-
"cleanupOnFinish": true
|
|
17
|
-
},
|
|
18
|
-
"git": {
|
|
19
|
-
"branches": {
|
|
20
|
-
"main": "main",
|
|
21
|
-
"develop": "develop",
|
|
22
|
-
"featurePrefix": "feature/",
|
|
23
|
-
"releasePrefix": "release/",
|
|
24
|
-
"hotfixPrefix": "hotfix/"
|
|
25
|
-
},
|
|
26
|
-
"remote": "origin",
|
|
27
|
-
"mergeStrategy": "--no-ff",
|
|
28
|
-
"tagPrefix": "v",
|
|
29
|
-
"protectedBranches": ["main", "develop"],
|
|
30
|
-
"requireLinearHistory": false
|
|
31
|
-
},
|
|
32
|
-
"efcore": {
|
|
33
|
-
"enabled": true,
|
|
34
|
-
"autoDetect": true,
|
|
35
|
-
"crossBranch": {
|
|
36
|
-
"enabled": true,
|
|
37
|
-
"scanOnMigrationCreate": true,
|
|
38
|
-
"blockOnConflict": true,
|
|
39
|
-
"cacheExpiry": 300
|
|
40
|
-
},
|
|
41
|
-
"contexts": [
|
|
42
|
-
{
|
|
43
|
-
"name": "ApplicationDbContext",
|
|
44
|
-
"projectPath": "auto-detect",
|
|
45
|
-
"startupProject": "auto-detect",
|
|
46
|
-
"migrationsFolder": "Migrations",
|
|
47
|
-
"migrationsAssembly": null
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"database": {
|
|
51
|
-
"configFile": "appsettings.Local.json",
|
|
52
|
-
"connectionStringName": "DefaultConnection",
|
|
53
|
-
"provider": "SqlServer",
|
|
54
|
-
"seedOnDeploy": false,
|
|
55
|
-
"confirmBeforeReset": true,
|
|
56
|
-
"backupBeforeReset": true
|
|
57
|
-
},
|
|
58
|
-
"scripts": {
|
|
59
|
-
"generateOnRelease": true,
|
|
60
|
-
"generateOnHotfix": true,
|
|
61
|
-
"idempotent": true,
|
|
62
|
-
"outputPath": "./scripts/migrations",
|
|
63
|
-
"namingPattern": "{type}_{version}_{timestamp}.sql"
|
|
64
|
-
},
|
|
65
|
-
"validation": {
|
|
66
|
-
"validateBeforeCommit": true,
|
|
67
|
-
"validateBeforeMerge": true,
|
|
68
|
-
"checkModelSnapshotConflicts": true,
|
|
69
|
-
"crossBranchValidation": true,
|
|
70
|
-
"requireBuildSuccess": true,
|
|
71
|
-
"warnOnPendingMigrations": true
|
|
72
|
-
},
|
|
73
|
-
"backup": {
|
|
74
|
-
"enabled": true,
|
|
75
|
-
"beforeRebase": true,
|
|
76
|
-
"beforeSquash": true,
|
|
77
|
-
"beforeMerge": true,
|
|
78
|
-
"retentionDays": 7,
|
|
79
|
-
"location": ".claude/gitflow/backup/migrations"
|
|
80
|
-
},
|
|
81
|
-
"naming": {
|
|
82
|
-
"migrationPrefix": "",
|
|
83
|
-
"hotfixPrefix": "Hotfix_",
|
|
84
|
-
"timestampFormat": "yyyyMMddHHmmss",
|
|
85
|
-
"pattern": "{BranchType}_{Version}_{BranchName}_{Description}",
|
|
86
|
-
"examples": {
|
|
87
|
-
"feature": "Feature_1.2.0_UserAuth_AddRolesTable",
|
|
88
|
-
"hotfix": "Hotfix_1.2.1_LoginFix_FixNullEmail",
|
|
89
|
-
"release": "Release_1.3.0_Initial"
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
"rules": {
|
|
93
|
-
"oneMigrationPerFeature": true,
|
|
94
|
-
"recreateOnChange": true,
|
|
95
|
-
"requireDescription": true,
|
|
96
|
-
"validateNaming": true
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
"workflow": {
|
|
100
|
-
"requireConfirmation": true,
|
|
101
|
-
"autoDeleteBranch": false,
|
|
102
|
-
"createCheckpoints": true,
|
|
103
|
-
"verboseLogging": false,
|
|
104
|
-
"interactiveMode": true,
|
|
105
|
-
"push": {
|
|
106
|
-
"afterCommit": "worktree",
|
|
107
|
-
"modes": {
|
|
108
|
-
"worktree": "Push automatique si worktree détecté",
|
|
109
|
-
"always": "Push automatique après chaque commit",
|
|
110
|
-
"ask": "Demander à l'utilisateur",
|
|
111
|
-
"never": "Ne jamais push automatiquement"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"commitConventions": {
|
|
115
|
-
"enabled": true,
|
|
116
|
-
"migration": "db(migrations): ",
|
|
117
|
-
"feature": "feat: ",
|
|
118
|
-
"fix": "fix: ",
|
|
119
|
-
"release": "release: ",
|
|
120
|
-
"hotfix": "hotfix: ",
|
|
121
|
-
"chore": "chore: "
|
|
122
|
-
},
|
|
123
|
-
"hooks": {
|
|
124
|
-
"prePlan": null,
|
|
125
|
-
"postPlan": null,
|
|
126
|
-
"preExec": null,
|
|
127
|
-
"postExec": null,
|
|
128
|
-
"preCommit": null,
|
|
129
|
-
"postCommit": null
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
"ui": {
|
|
133
|
-
"colors": true,
|
|
134
|
-
"showProgress": true,
|
|
135
|
-
"compactMode": false,
|
|
136
|
-
"language": "fr"
|
|
137
|
-
}
|
|
138
|
-
}
|