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.
- package/.aios-core/install-manifest.yaml +2 -2
- package/bin/aios-init.js +12 -1
- package/bin/aios-minimal.js +33 -17
- package/bin/aios.js +1 -1
- package/package.json +1 -1
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 3.11.
|
|
11
|
-
generated_at: "2026-02-03T14:
|
|
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
|
*/
|
package/bin/aios-minimal.js
CHANGED
|
@@ -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
|
-
*
|
|
8
|
-
*
|
|
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 {
|
|
15
|
+
const { spawn } = require('child_process');
|
|
12
16
|
const path = require('path');
|
|
13
17
|
|
|
14
|
-
//
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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