grimoire-framework 1.0.1 → 1.0.3

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.
@@ -7,8 +7,8 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 1.0.1
11
- generated_at: "2026-02-21T22:35:37.263Z"
10
+ version: 1.0.3
11
+ generated_at: "2026-02-22T00:22:53.496Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 1011
14
14
  files:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grimoire-framework",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Grimoire: AI-Orchestrated System for Full Stack Development - Core Framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -44,7 +44,7 @@
44
44
  "lint": "eslint . --cache --cache-location .eslintcache",
45
45
  "typecheck": "tsc --noEmit",
46
46
  "release": "semantic-release",
47
- "release:test": "semantic-release --dry-run --no-ci || echo \u0027Config test complete - authentication errors are expected locally\u0027",
47
+ "release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
48
48
  "generate:manifest": "node scripts/generate-install-manifest.js",
49
49
  "validate:manifest": "node scripts/validate-manifest.js",
50
50
  "validate:structure": "node .grimoire/infrastructure/scripts/source-tree-guardian/index.js",
@@ -73,7 +73,7 @@
73
73
  "validate:semantic-lint": "node scripts/semantic-lint.js",
74
74
  "manifest:ensure": "node scripts/ensure-manifest.js",
75
75
  "sync:ide:cursor": "node .grimoire/infrastructure/scripts/ide-sync/index.js sync --ide cursor",
76
- "prepublishOnly": "npm run generate:manifest \u0026\u0026 npm run validate:manifest",
76
+ "prepublishOnly": "npm run generate:manifest && npm run validate:manifest",
77
77
  "prepare": "husky"
78
78
  },
79
79
  "dependencies": {
@@ -118,8 +118,8 @@
118
118
  "author": "Grimoire Team",
119
119
  "license": "MIT",
120
120
  "engines": {
121
- "node": "\u003e=18.0.0",
122
- "npm": "\u003e=9.0.0"
121
+ "node": ">=18.0.0",
122
+ "npm": ">=9.0.0"
123
123
  },
124
124
  "devDependencies": {
125
125
  "@semantic-release/changelog": "^6.0.3",
@@ -155,4 +155,4 @@
155
155
  "tar": "^7.5.7",
156
156
  "diff": "^8.0.3"
157
157
  }
158
- }
158
+ }
@@ -7,6 +7,7 @@
7
7
  */
8
8
 
9
9
  const ora = require('ora');
10
+ const chalk = require('chalk');
10
11
  const cliProgress = require('cli-progress');
11
12
  const { colors, status, headings } = require('../utils/grimoire-colors');
12
13
  const { t } = require('./i18n');
@@ -122,12 +123,12 @@ function completeProgress(progressBar) {
122
123
  * ASCII Art Banner for Grimoire
123
124
  */
124
125
  const BANNER = `
125
- █████╗ ██╗ ██████╗ ███████╗ ███████╗██╗ ██╗██╗ ██╗ ███████╗████████╗ █████╗ ██████╗██╗ ██╗
126
- ██╔══██╗██║██╔═══██╗██╔════╝ ██╔════╝██║ ██║██║ ██║ ██╔════╝╚══██╔══╝██╔══██╗██╔════╝██║ ██╔╝
127
- ███████║██║██║ ██║███████╗█████╗█████╗ ██║ ██║██║ ██║ ███████╗ ██║ ███████║██║ █████╔╝
128
- ██╔══██║██║██║ ██║╚════██║╚════╝██╔══╝ ██║ ██║██║ ██║ ╚════██║ ██║ ██╔══██║██║ ██╔═██╗
129
- ██║ ██║██║╚██████╔╝███████║ ██║ ╚██████╔╝███████╗███████╗███████║ ██║ ██║ ██║╚██████╗██║ ██╗
130
- ╚═╝ ╚═╝╚═╝ ╚═════╝ ╚══════╝ ╚═╝ ╚═════╝ ╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
126
+ ██████╗ ██████╗ ██╗███╗ ███╗ ██████╗ ██╗██████╗ ███████╗
127
+ ██╔════╝ ██╔══██╗██║████╗ ████║██╔═══██╗██║██╔══██╗██╔════╝
128
+ ██║ ███╗██████╔╝██║██╔████╔██║██║ ██║██║██████╔╝█████╗
129
+ ██║ ██║██╔══██╗██║██║╚██╔╝██║██║ ██║██║██╔══██╗██╔══╝
130
+ ╚██████╔╝██║ ██║██║██║ ╚═╝ ██║╚██████╔╝██║██║ ██║███████╗
131
+ ╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝╚═╝ ╚═╝╚══════╝
131
132
  `;
132
133
 
133
134
  /**
@@ -146,7 +147,7 @@ function showWelcome() {
146
147
  // Use default version
147
148
  }
148
149
 
149
- console.log(colors.primary(BANNER));
150
+ console.log(chalk.hex('#CC0000').bold(BANNER));
150
151
  console.log(colors.secondary('Universal AI Agent Framework for Any Domain'));
151
152
  console.log(colors.tertiary(`Installer v${version}`));
152
153
  console.log('');
@@ -228,5 +229,5 @@ module.exports = {
228
229
  showCancellation,
229
230
  estimateTimeRemaining,
230
231
  };
231
-
232
-
232
+
233
+
@@ -703,43 +703,9 @@ async function runWizard(options = {}) {
703
703
  answers.llmRoutingInstalled = false;
704
704
  }
705
705
 
706
- // Story INS-3.2: Pro Installation Wizard (optional phase)
707
- if (!options.skipPro) {
708
- try {
709
- const { runProWizard } = require('./pro-setup');
710
- const isCI = process.env.CI === 'true' || !process.stdout.isTTY;
711
- const hasProKey = !!process.env.grimoire_PRO_KEY;
712
-
713
- if (isCI && hasProKey) {
714
- // CI mode: auto-run if grimoire_PRO_KEY is set
715
- console.log('\n🔑 Pro license key detected, running Pro setup...');
716
- const proResult = await runProWizard({ quiet: true });
717
- answers.proInstalled = proResult.success;
718
- answers.proResult = proResult;
719
- } else if (!isCI && !options.quiet) {
720
- // Interactive mode: ask if user has a Pro license
721
- const { hasPro } = await inquirer.prompt([
722
- {
723
- type: 'confirm',
724
- name: 'hasPro',
725
- message: colors.primary('Do you have an grimoire Pro license key?'),
726
- default: false,
727
- },
728
- ]);
706
+ // Pro features are available to all users — no license required
707
+ answers.proInstalled = true;
729
708
 
730
- if (hasPro) {
731
- const proResult = await runProWizard();
732
- answers.proInstalled = proResult.success;
733
- answers.proResult = proResult;
734
- } else {
735
- answers.proInstalled = false;
736
- }
737
- }
738
- } catch {
739
- // Pro module not available — skip silently
740
- answers.proInstalled = false;
741
- }
742
- }
743
709
 
744
710
  // Story 1.8: Installation Validation
745
711
  console.log('\n🔍 Validating installation...\n');