aios-core 3.11.1 → 3.11.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: 3.11.1
11
- generated_at: "2026-02-03T14:19:22.851Z"
10
+ version: 3.11.3
11
+ generated_at: "2026-02-03T14:57:34.946Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 839
14
14
  files:
package/bin/aios-init.js CHANGED
@@ -1,10 +1,21 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * AIOS-FullStack Installation Wizard v5
4
+ * AIOS-FullStack Installation Wizard v5 (LEGACY)
5
5
  * Based on the original beautiful visual design with ASCII art
6
6
  * Version: 2.1.0
7
7
  *
8
+ * ⚠️ DEPRECATION NOTICE (v3.11.3):
9
+ * This file is the LEGACY installer and will be removed in v4.0.0.
10
+ * The new modular wizard is located at: packages/installer/src/wizard/index.js
11
+ *
12
+ * This file is kept as a fallback for edge cases where the new wizard
13
+ * is not available. All new development should use the new wizard.
14
+ *
15
+ * Migration path:
16
+ * - Use `npx aios-core` which routes through bin/aios.js to the new wizard
17
+ * - Do NOT call this file directly
18
+ *
8
19
  * Supported IDEs (8 total):
9
20
  * - Claude Code, Cursor, Windsurf, Trae, Roo Code, Cline, Gemini CLI, GitHub Copilot
10
21
  */
@@ -2,25 +2,41 @@
2
2
 
3
3
  /**
4
4
  * AIOS-FullStack Minimal Installation
5
- * Wrapper that launches aios-init.js in minimal mode
6
5
  *
7
- * Minimal mode only shows expansion-creator pack,
8
- * which provides tools to install other expansion packs manually.
6
+ * DEPRECATION NOTICE (v3.11.1):
7
+ * The --minimal mode was designed for expansion-packs which have been
8
+ * replaced by the Squads system (OSR-8). This command now runs the
9
+ * standard wizard through the main router.
10
+ *
11
+ * This file is kept for backwards compatibility but will be removed
12
+ * in a future major version.
9
13
  */
10
14
 
11
- const { execSync } = require('child_process');
15
+ const { spawn } = require('child_process');
12
16
  const path = require('path');
13
17
 
14
- // Get the path to aios-init.js
15
- const initScriptPath = path.join(__dirname, 'aios-init.js');
16
-
17
- try {
18
- // Execute aios-init.js with --minimal flag
19
- execSync(`node "${initScriptPath}" --minimal`, {
20
- stdio: 'inherit',
21
- cwd: process.cwd(),
22
- });
23
- } catch (error) {
24
- // Error is already displayed by child process
25
- process.exit(error.status || 1);
26
- }
18
+ // Show deprecation warning
19
+ console.log('\n⚠️ DEPRECATION WARNING: aios-minimal is deprecated.');
20
+ console.log(' The --minimal mode (expansion-packs) was replaced by Squads.');
21
+ console.log(' Running standard installation wizard instead.\n');
22
+
23
+ // Get the path to the main router (aios.js)
24
+ const routerPath = path.join(__dirname, 'aios.js');
25
+
26
+ // Forward all arguments to the main router
27
+ const args = process.argv.slice(2);
28
+
29
+ // Spawn the main router
30
+ const child = spawn('node', [routerPath, ...args], {
31
+ stdio: 'inherit',
32
+ cwd: process.cwd(),
33
+ });
34
+
35
+ child.on('close', (code) => {
36
+ process.exit(code || 0);
37
+ });
38
+
39
+ child.on('error', (error) => {
40
+ console.error('❌ Failed to start AIOS:', error.message);
41
+ process.exit(1);
42
+ });
package/bin/aios.js CHANGED
@@ -473,7 +473,7 @@ async function initProject() {
473
473
  console.log(`Template: ${template}`);
474
474
  }
475
475
  if (skipInstall) {
476
- console.log(`Skip install: enabled`);
476
+ console.log('Skip install: enabled');
477
477
  }
478
478
  console.log('');
479
479
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aios-core",
3
- "version": "3.11.1",
3
+ "version": "3.11.3",
4
4
  "description": "Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework",
5
5
  "bin": {
6
6
  "aios": "bin/aios.js",