aios-core 4.2.8 → 4.2.9

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: 4.2.8
11
- generated_at: "2026-02-16T14:40:32.757Z"
10
+ version: 4.2.9
11
+ generated_at: "2026-02-16T15:01:11.763Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 1004
14
14
  files:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aios-core",
3
- "version": "4.2.8",
3
+ "version": "4.2.9",
4
4
  "description": "Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework",
5
5
  "bin": {
6
6
  "aios": "bin/aios.js",
@@ -710,10 +710,12 @@ async function runWizard(options = {}) {
710
710
  const isCI = process.env.CI === 'true' || !process.stdout.isTTY;
711
711
  const hasProKey = !!process.env.AIOS_PRO_KEY;
712
712
 
713
+ const proOptions = { targetDir: process.cwd() };
714
+
713
715
  if (isCI && hasProKey) {
714
716
  // CI mode: auto-run if AIOS_PRO_KEY is set
715
717
  console.log('\n🔑 Pro license key detected, running Pro setup...');
716
- const proResult = await runProWizard({ quiet: true });
718
+ const proResult = await runProWizard({ ...proOptions, quiet: true });
717
719
  answers.proInstalled = proResult.success;
718
720
  answers.proResult = proResult;
719
721
  } else if (!isCI && !options.quiet) {
@@ -728,15 +730,19 @@ async function runWizard(options = {}) {
728
730
  ]);
729
731
 
730
732
  if (hasPro) {
731
- const proResult = await runProWizard();
733
+ const proResult = await runProWizard(proOptions);
732
734
  answers.proInstalled = proResult.success;
733
735
  answers.proResult = proResult;
736
+
737
+ if (!proResult.success && proResult.error) {
738
+ console.error(`\n⚠️ Pro installation issue: ${proResult.error}`);
739
+ }
734
740
  } else {
735
741
  answers.proInstalled = false;
736
742
  }
737
743
  }
738
- } catch {
739
- // Pro module not available — skip silently
744
+ } catch (error) {
745
+ console.error(`\n⚠️ Pro setup error: ${error.message}`);
740
746
  answers.proInstalled = false;
741
747
  }
742
748
  }