@pixelspace/manifesto 2026.15.1 → 2026.15.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelspace/manifesto",
3
- "version": "2026.15.1",
3
+ "version": "2026.15.2",
4
4
  "description": "Design and Product Manifesto — Formal notation. A constitution for biological and digital intelligences.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -11,6 +11,7 @@ const MANIFESTO_PATH = join(__dirname, '..', 'manifestos', 'Pixelspace Design Ma
11
11
 
12
12
  // ANSI escape codes — zero deps
13
13
  const BRAND = '\x1b[38;2;255;0;90m'; // #FF005A
14
+ const WHITE = '\x1b[97m';
14
15
  const DIM = '\x1b[2m';
15
16
  const RESET = '\x1b[0m';
16
17
 
@@ -20,7 +21,8 @@ const LOGO = [
20
21
  '▀ ▀ ▀ ▀ ▀▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ▀ ▀▀▀ ▀▀▀'
21
22
  ];
22
23
 
23
- const DESCRIPTION = 'Design and Product Manifesto. Letters from the Exodus. A constitution for biological and digital intelligences navigating the crossing. Use when brainstorming, incubating new products/features/services, making architecture decisions, evaluating tradeoffs, discussing product strategy or business models, designing AI-native experiences, or when human thinking feels shallow and needs depth.';
24
+ const TITLE = 'Design and Product Manifesto. Letters from the Exodus.';
25
+ const DESCRIPTION = 'A constitution for biological and digital intelligences navigating the crossing. Use when brainstorming, incubating new products/features/services, making architecture decisions, evaluating tradeoffs, discussing product strategy or business models, designing AI-native experiences, or when human thinking feels shallow and needs depth.';
24
26
 
25
27
  const SEPARATOR = '──────────────────────────────────────────────────────────────';
26
28
 
@@ -77,6 +79,7 @@ export async function run() {
77
79
 
78
80
  // TTY: formatted output with colors and indentation
79
81
  const logo = LOGO.map(l => ` ${BRAND}${l}${RESET}`).join('\n');
82
+ const title = WHITE + wrapText(TITLE) + RESET;
80
83
  const desc = DIM + wrapText(DESCRIPTION) + RESET;
81
84
  const sep = DIM + ' ' + SEPARATOR + RESET;
82
85
 
@@ -86,7 +89,7 @@ export async function run() {
86
89
  return colorSymbols(wrapped);
87
90
  }).join('\n\n');
88
91
 
89
- console.log(`\n${logo}\n\n${desc}\n\n${sep}\n\n${body}\n\n${sep}\n`);
92
+ console.log(`\n${logo}\n\n${title}\n${desc}\n\n${sep}\n\n${body}\n\n${sep}\n`);
90
93
  }
91
94
 
92
95
  export default run;