mindforge-cc 2.1.3 → 2.1.4

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.
@@ -544,10 +544,9 @@ async function run(args) {
544
544
  const pJSON = JSON.parse(fsu.read(path.join(SOURCE_ROOT, 'package.json')));
545
545
 
546
546
  // Print header and brand manifest
547
- if (options.verbose || !process.stdout.isTTY) {
548
- Theme.printHeader(pJSON.version);
549
- Theme.printBrandManifest();
550
- }
547
+ // Print header and brand manifest
548
+ Theme.printHeader(pJSON.version);
549
+ Theme.printBrandManifest();
551
550
  // Check for updates only
552
551
  if (isCheck) {
553
552
  const { checkAndUpdate } = require('./updater/self-update');
@@ -50,7 +50,7 @@ const Theme = {
50
50
  console.log(` ${this.colors.dim('│')} ${line.padEnd(74)} ${this.colors.dim('│')}`);
51
51
  });
52
52
  console.log(` ${this.colors.dim('│')} ${this.colors.bold(this.tagline.padEnd(74))} ${this.colors.dim('│')}`);
53
- console.log(` ${this.colors.dim('│')} ${this.colors.dim(`RELEASE v2.1.3`.padEnd(74))} ${this.colors.dim('│')}`);
53
+ console.log(` ${this.colors.dim('│')} ${this.colors.dim(`RELEASE v${subtitle}`.padEnd(74))} ${this.colors.dim('│')}`);
54
54
  console.log(` ${this.colors.dim('└' + '─'.repeat(78) + '┘')}\n`);
55
55
  },
56
56
 
@@ -59,7 +59,7 @@ const Theme = {
59
59
  */
60
60
  printBrandManifest() {
61
61
  console.log(` ${this.colors.dim('│')}`);
62
- console.log(` ${this.colors.dim('│')} ${this.colors.green('🎉 V2.1.3 IS HERE!')} Welcome to MindForge V2!`);
62
+ console.log(` ${this.colors.dim('│')} ${this.colors.green('🎉 V2.1.4 IS HERE!')} Welcome to MindForge V2!`);
63
63
  console.log(` ${this.colors.dim('│')}`);
64
64
  console.log(` ${this.colors.dim('│')} ${this.colors.bold('THE PLATFORM VISION:')}`);
65
65
  console.log(` ${this.colors.dim('│')} - Unified Enterprise Agentic Ecosystem`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mindforge-cc",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "MindForge - Enterprise Agentic Framework for Claude Code and Antigravity",
5
5
  "bin": {
6
6
  "mindforge-cc": "bin/install.js"