grimoire-framework 1.0.2 → 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.2
11
- generated_at: "2026-02-21T23:08:34.652Z"
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.2",
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"
@@ -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');