@atlashub/smartstack-cli 1.23.0 → 1.24.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 (33) hide show
  1. package/dist/index.js +13 -0
  2. package/dist/index.js.map +1 -1
  3. package/package.json +1 -1
  4. package/templates/skills/check-version/SKILL.md +183 -0
  5. package/templates/skills/debug/SKILL.md +161 -0
  6. package/templates/skills/explore/SKILL.md +96 -0
  7. package/templates/skills/quick-search/SKILL.md +87 -0
  8. package/templates/skills/refactor/SKILL.md +219 -0
  9. package/templates/skills/review-code/SKILL.md +72 -44
  10. package/templates/skills/review-code/references/smartstack-conventions.md +93 -33
  11. package/templates/skills/ui-components/responsive-guidelines.md +278 -0
  12. package/templates/skills/utils/SKILL.md +37 -0
  13. package/templates/{commands/utils → skills/utils/subcommands}/test-web-config.md +35 -43
  14. package/templates/{commands/utils → skills/utils/subcommands}/test-web.md +25 -53
  15. package/templates/{commands/validate.md → skills/validate/SKILL.md} +80 -139
  16. package/templates/commands/check-version.md +0 -267
  17. package/templates/commands/debug.md +0 -95
  18. package/templates/commands/efcore/_env-check.md +0 -153
  19. package/templates/commands/efcore/_shared.md +0 -352
  20. package/templates/commands/efcore/conflicts.md +0 -90
  21. package/templates/commands/efcore/db-deploy.md +0 -109
  22. package/templates/commands/efcore/db-reset.md +0 -180
  23. package/templates/commands/efcore/db-seed.md +0 -103
  24. package/templates/commands/efcore/db-status.md +0 -102
  25. package/templates/commands/efcore/migration.md +0 -186
  26. package/templates/commands/efcore/rebase-snapshot.md +0 -172
  27. package/templates/commands/efcore/scan.md +0 -94
  28. package/templates/commands/efcore/squash.md +0 -329
  29. package/templates/commands/efcore.md +0 -96
  30. package/templates/commands/explore.md +0 -45
  31. package/templates/commands/quick-search.md +0 -72
  32. package/templates/commands/refactor.md +0 -164
  33. /package/templates/{commands → skills}/_resources/formatting-guide.md +0 -0
package/dist/index.js CHANGED
@@ -116119,6 +116119,19 @@ appsettings.*.Local.json
116119
116119
  *.db-wal
116120
116120
  `;
116121
116121
  await import_fs_extra3.default.writeFile((0, import_path4.join)(projectDir, ".gitignore"), gitignore);
116122
+ await import_fs_extra3.default.ensureDir((0, import_path4.join)(projectDir, ".smartstack"));
116123
+ const smartstackConfig = {
116124
+ projectType: "client",
116125
+ dbContext: "extensions",
116126
+ baseNamespace: projectName,
116127
+ smartStackVersion: "1.0.0",
116128
+ initialized: (/* @__PURE__ */ new Date()).toISOString()
116129
+ };
116130
+ await import_fs_extra3.default.writeFile(
116131
+ (0, import_path4.join)(projectDir, ".smartstack", "config.json"),
116132
+ JSON.stringify(smartstackConfig, null, 2)
116133
+ );
116134
+ logger.success("Created .smartstack/config.json");
116122
116135
  await import_fs_extra3.default.ensureDir((0, import_path4.join)(projectDir, ".vscode"));
116123
116136
  const launchJson = {
116124
116137
  version: "0.2.0",