derolicia 1.0.2 → 1.0.4
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/bin/postinstall.js +31 -0
- package/package.json +3 -3
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Dera postinstall — cross-platform banner
|
|
5
|
+
* Shows welcome message and next steps.
|
|
6
|
+
* Does NOT run interactive wizard (stdin is not available during npm install).
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
// Skip in CI
|
|
10
|
+
if (process.env.CI === 'true' || process.env.GITHUB_ACTIONS === 'true') {
|
|
11
|
+
process.exit(0);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const banner = `
|
|
15
|
+
██████╗ ███████╗██████╗ █████╗
|
|
16
|
+
██╔══██╗██╔════╝██╔══██╗██╔══██╗
|
|
17
|
+
██║ ██║█████╗ ██████╔╝███████║
|
|
18
|
+
██║ ██║██╔══╝ ██╔══██╗██╔══██║
|
|
19
|
+
██████╔╝███████╗██║ ██║██║ ██║
|
|
20
|
+
╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝
|
|
21
|
+
`;
|
|
22
|
+
|
|
23
|
+
console.log('\x1b[36m' + banner + '\x1b[0m');
|
|
24
|
+
console.log('\x1b[35m Universal AI Agent Framework for Any Domain\x1b[0m');
|
|
25
|
+
console.log('\x1b[33m derolicia v' + require('../package.json').version + '\x1b[0m');
|
|
26
|
+
console.log('\n \x1b[90m' + '─'.repeat(50) + '\x1b[0m\n');
|
|
27
|
+
console.log(' \x1b[32m✅ derolicia installed!\x1b[0m\n');
|
|
28
|
+
console.log(' \x1b[1mNext step — run the setup wizard:\x1b[0m');
|
|
29
|
+
console.log(' \x1b[36m npx derolicia init\x1b[0m\n');
|
|
30
|
+
console.log(' \x1b[90mThis will configure your IDE, agents, and project.\x1b[0m');
|
|
31
|
+
console.log('\n \x1b[90m' + '─'.repeat(50) + '\x1b[0m\n');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "derolicia",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Dera: AI-Orchestrated System for Full Stack Development - Core Framework",
|
|
5
5
|
"bin": {
|
|
6
6
|
"derolicia": "bin/dera.js",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"manifest:ensure": "node scripts/ensure-manifest.js",
|
|
79
79
|
"sync:ide:cursor": "node .dera-core/infrastructure/scripts/ide-sync/index.js sync --ide cursor",
|
|
80
80
|
"validate:publish": "node bin/utils/validate-publish.js",
|
|
81
|
-
"postinstall": "node bin/
|
|
82
|
-
"prepublishOnly": "echo 'Publishing derolicia v1.0.
|
|
81
|
+
"postinstall": "node bin/postinstall.js",
|
|
82
|
+
"prepublishOnly": "echo 'Publishing derolicia v1.0.3'",
|
|
83
83
|
"prepare": "echo 'ok'"
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|