specsmd 0.0.9 → 0.0.10

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/lib/cli-utils.js CHANGED
@@ -88,7 +88,7 @@ const CLIUtils = {
88
88
  console.log(logoGradient(PIXEL_LOGO));
89
89
 
90
90
  // Tagline with version
91
- console.log(theme.primary(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + '\n');
91
+ console.log(theme.primary(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + theme.dim(' https://specs.md') + '\n');
92
92
  },
93
93
 
94
94
  /**
@@ -106,7 +106,7 @@ const CLIUtils = {
106
106
  console.log(logoGradient(PIXEL_LOGO));
107
107
 
108
108
  // Tagline with version
109
- console.log(theme.primary(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + '\n');
109
+ console.log(theme.primary(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + theme.dim(' https://specs.md') + '\n');
110
110
  },
111
111
 
112
112
  /**
@@ -121,7 +121,7 @@ const CLIUtils = {
121
121
  const version = this.getVersion();
122
122
 
123
123
  console.log(logoGradient(PIXEL_LOGO));
124
- console.log(theme.dim(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + '\n');
124
+ console.log(theme.dim(' AI-native development orchestration') + theme.primary.bold(` v${version}`) + theme.dim(' https://specs.md') + '\n');
125
125
  },
126
126
 
127
127
  /**
package/lib/constants.js CHANGED
@@ -8,7 +8,7 @@ const THEME_COLORS = {
8
8
  error: '#ef4444', // Red
9
9
  warning: '#f59e0b', // Amber
10
10
  info: '#3b82f6', // Blue
11
- dim: '#1A1A1A' // Black shadow
11
+ dim: '#666666' // Gray shadow (visible on dark/light terminals)
12
12
  };
13
13
 
14
14
  const FLOWS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specsmd",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Multi-agent orchestration system for AI-native software development. Delivers AI-DLC, Agile, and custom SDLC flows as markdown-based agent systems.",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {