specsmd 0.0.8 → 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
  /**
@@ -339,4 +339,4 @@ const CLIUtils = {
339
339
  BOX
340
340
  };
341
341
 
342
- module.exports = CLIUtils;
342
+ module.exports = CLIUtils;
package/lib/constants.js CHANGED
@@ -1,14 +1,14 @@
1
1
 
2
- // Theme Colors (extracted from specs.md pixel logo)
2
+ // Theme Colors (dark red)
3
3
  const THEME_COLORS = {
4
- primary: '#C45050', // Brick red fill
5
- secondary: '#D86565', // Coral red highlight
6
- accent: '#EC8080', // Light coral
4
+ primary: '#A83232', // Dark brick red
5
+ secondary: '#C04545', // Medium red
6
+ accent: '#D85858', // Coral red
7
7
  success: '#22c55e', // Green
8
8
  error: '#ef4444', // Red
9
9
  warning: '#f59e0b', // Amber
10
10
  info: '#3b82f6', // Blue
11
- dim: '#2D2D32' // Dark charcoal outline
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.8",
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": {