@atlashub/smartstack-cli 1.6.0 → 1.7.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/README.md CHANGED
@@ -3,20 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@atlashub/smartstack-cli.svg)](https://www.npmjs.com/package/@atlashub/smartstack-cli)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- **SmartStack** transforms Claude Code into an enterprise-grade development platform. Stop writing boilerplate - start shipping features.
7
-
8
- > **SmartStack** is your AI-powered co-pilot for .NET development: automated GitFlow, intelligent migrations, business analysis workflows, and battle-tested methodologies - all integrated directly into Claude Code.
9
-
10
- ## Why SmartStack?
11
-
12
- - **10x Faster Development** - Pre-built workflows eliminate repetitive tasks
13
- - **Enterprise GitFlow** - Full branch management with EF Core migration safety
14
- - **Business Analysis Built-in** - From requirements to implementation handoff
15
- - **Zero Configuration** - Install once, use everywhere
16
-
17
- **By [AtlasHub](https://www.atlashub.ch)** | [support@atlashub.ch](mailto:support@atlashub.ch)
18
-
19
- ---
6
+ SmartStack CLI v1.4.0 - Claude Code automation toolkit for GitFlow, APEX methodology, Business Analysis, EF Core migrations, and more.
20
7
 
21
8
  ## Installation
22
9
 
@@ -126,28 +113,20 @@ smartstack update
126
113
  smartstack uninstall
127
114
  ```
128
115
 
129
- ## What's New in v1.5.2
116
+ ## What's New in v1.4.0
130
117
 
131
- - **Azure DevOps Support** - Full GitFlow integration with Azure DevOps PRs and pipelines
132
- - **npm Auto-Publish** - Automated publishing via Azure Pipelines (@next and @latest tags)
133
- - **Ralph Loop Integration** - Fully automated BA orchestration with Ralph Loop framework
134
- - **Prompts System** - Expert prompt creation and optimization tools
135
- - **Quick Search** - Lightning-fast codebase exploration
118
+ - **Ralph Loop Integration**: Fully automated BA orchestration with Ralph Loop framework
119
+ - **License Generator**: New license protection system for commercial features
120
+ - **Documentation Overhaul**: Redesigned BA workflow diagrams, improved SVG rendering
121
+ - **Prompts System**: New prompt creation and optimization tools
122
+ - **Quick Search**: Lightning-fast codebase exploration
136
123
 
137
124
  ## Documentation
138
125
 
139
- Full documentation available at:
126
+ Full documentation is available at:
140
127
  - [GitFlow Documentation](.documentation/gitflow.html)
141
128
  - [Business Analysis Documentation](.documentation/business-analyse.html)
142
129
 
143
- ---
144
-
145
- ## About AtlasHub
146
-
147
- **[AtlasHub](https://www.atlashub.ch)** builds intelligent tools for modern development teams. SmartStack is our flagship CLI toolkit, designed to accelerate .NET and full-stack development with AI-powered automation.
148
-
149
- **Need help?** Contact us at [support@atlashub.ch](mailto:support@atlashub.ch)
150
-
151
130
  ## License
152
131
 
153
- MIT - Free for personal and commercial use.
132
+ MIT
package/dist/index.js CHANGED
@@ -38995,7 +38995,7 @@ var import_child_process = require("child_process");
38995
38995
  var import_fs_extra = __toESM(require_lib());
38996
38996
  var PACKAGE_ROOT = (0, import_path.join)(__dirname, "..");
38997
38997
  var TEMPLATES_DIR = (0, import_path.join)(PACKAGE_ROOT, "templates");
38998
- var INSTALL_DIRS = ["commands", "agents", "hooks", "skills"];
38998
+ var INSTALL_DIRS = ["commands", "agents", "hooks"];
38999
38999
  var DEFAULT_PLUGINS = [];
39000
39000
  function getClaudeDir(global3) {
39001
39001
  if (global3) {
@@ -39165,8 +39165,7 @@ async function checkInstallation(options = {}) {
39165
39165
  components: {
39166
39166
  commands: { installed: false, count: 0 },
39167
39167
  agents: { installed: false, count: 0 },
39168
- hooks: { installed: false, count: 0 },
39169
- skills: { installed: false, count: 0 }
39168
+ hooks: { installed: false, count: 0 }
39170
39169
  },
39171
39170
  gitflow: {
39172
39171
  configExists: false,
@@ -39192,12 +39191,6 @@ async function checkInstallation(options = {}) {
39192
39191
  result.components.hooks.installed = await import_fs_extra.default.pathExists((0, import_path.join)(hooksDir, "hooks.json"));
39193
39192
  result.components.hooks.count = result.components.hooks.installed ? 1 : 0;
39194
39193
  }
39195
- const skillsDir = (0, import_path.join)(claudeDir, "skills");
39196
- if (await import_fs_extra.default.pathExists(skillsDir)) {
39197
- const files = await getTemplateFiles(skillsDir);
39198
- result.components.skills.count = files.filter((f) => f.endsWith(".md")).length;
39199
- result.components.skills.installed = result.components.skills.count > 0;
39200
- }
39201
39194
  const gitflowDir = (0, import_path.join)(claudeDir, "gitflow");
39202
39195
  result.gitflow.configExists = await import_fs_extra.default.pathExists((0, import_path.join)(gitflowDir, "config.json"));
39203
39196
  const plansDir = (0, import_path.join)(gitflowDir, "plans");
@@ -39205,7 +39198,7 @@ async function checkInstallation(options = {}) {
39205
39198
  const plans = await import_fs_extra.default.readdir(plansDir);
39206
39199
  result.gitflow.plansCount = plans.filter((f) => f.endsWith(".md")).length;
39207
39200
  }
39208
- result.installed = result.components.commands.installed || result.components.agents.installed || result.components.hooks.installed || result.components.skills.installed;
39201
+ result.installed = result.components.commands.installed || result.components.agents.installed || result.components.hooks.installed;
39209
39202
  return result;
39210
39203
  }
39211
39204
  async function listInstalledCommands(options = {}) {
@@ -41893,10 +41886,6 @@ var statusCommand = new Command("status").alias("s").description("Show installat
41893
41886
  "Hooks",
41894
41887
  installation.components.hooks.installed ? source_default.green(`\u2713 Configured`) : source_default.gray("Not installed")
41895
41888
  ],
41896
- [
41897
- "Skills",
41898
- installation.components.skills.installed ? source_default.green(`\u2713 ${installation.components.skills.count} files`) : source_default.gray("Not installed")
41899
- ],
41900
41889
  [""],
41901
41890
  [
41902
41891
  "GitFlow Config",