grimoire-framework 1.0.1 → 1.0.2
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.
|
|
11
|
-
generated_at: "2026-02-
|
|
10
|
+
version: 1.0.2
|
|
11
|
+
generated_at: "2026-02-21T23:08:34.652Z"
|
|
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.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Grimoire: AI-Orchestrated System for Full Stack Development - Core Framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"lint": "eslint . --cache --cache-location .eslintcache",
|
|
45
45
|
"typecheck": "tsc --noEmit",
|
|
46
46
|
"release": "semantic-release",
|
|
47
|
-
"release:test": "semantic-release --dry-run --no-ci || echo
|
|
47
|
+
"release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
|
|
48
48
|
"generate:manifest": "node scripts/generate-install-manifest.js",
|
|
49
49
|
"validate:manifest": "node scripts/validate-manifest.js",
|
|
50
50
|
"validate:structure": "node .grimoire/infrastructure/scripts/source-tree-guardian/index.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"validate:semantic-lint": "node scripts/semantic-lint.js",
|
|
74
74
|
"manifest:ensure": "node scripts/ensure-manifest.js",
|
|
75
75
|
"sync:ide:cursor": "node .grimoire/infrastructure/scripts/ide-sync/index.js sync --ide cursor",
|
|
76
|
-
"prepublishOnly": "npm run generate:manifest
|
|
76
|
+
"prepublishOnly": "npm run generate:manifest && npm run validate:manifest",
|
|
77
77
|
"prepare": "husky"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
@@ -118,8 +118,8 @@
|
|
|
118
118
|
"author": "Grimoire Team",
|
|
119
119
|
"license": "MIT",
|
|
120
120
|
"engines": {
|
|
121
|
-
"node": "
|
|
122
|
-
"npm": "
|
|
121
|
+
"node": ">=18.0.0",
|
|
122
|
+
"npm": ">=9.0.0"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
125
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -155,4 +155,4 @@
|
|
|
155
155
|
"tar": "^7.5.7",
|
|
156
156
|
"diff": "^8.0.3"
|
|
157
157
|
}
|
|
158
|
-
}
|
|
158
|
+
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
const ora = require('ora');
|
|
10
|
+
const chalk = require('chalk');
|
|
10
11
|
const cliProgress = require('cli-progress');
|
|
11
12
|
const { colors, status, headings } = require('../utils/grimoire-colors');
|
|
12
13
|
const { t } = require('./i18n');
|
|
@@ -122,12 +123,12 @@ function completeProgress(progressBar) {
|
|
|
122
123
|
* ASCII Art Banner for Grimoire
|
|
123
124
|
*/
|
|
124
125
|
const BANNER = `
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
126
|
+
██████╗ ██████╗ ██╗███╗ ███╗ ██████╗ ██╗██████╗ ███████╗
|
|
127
|
+
██╔════╝ ██╔══██╗██║████╗ ████║██╔═══██╗██║██╔══██╗██╔════╝
|
|
128
|
+
██║ ███╗██████╔╝██║██╔████╔██║██║ ██║██║██████╔╝█████╗
|
|
129
|
+
██║ ██║██╔══██╗██║██║╚██╔╝██║██║ ██║██║██╔══██╗██╔══╝
|
|
130
|
+
╚██████╔╝██║ ██║██║██║ ╚═╝ ██║╚██████╔╝██║██║ ██║███████╗
|
|
131
|
+
╚═════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝╚═╝ ╚═╝╚══════╝
|
|
131
132
|
`;
|
|
132
133
|
|
|
133
134
|
/**
|
|
@@ -146,7 +147,7 @@ function showWelcome() {
|
|
|
146
147
|
// Use default version
|
|
147
148
|
}
|
|
148
149
|
|
|
149
|
-
console.log(
|
|
150
|
+
console.log(chalk.hex('#CC0000').bold(BANNER));
|
|
150
151
|
console.log(colors.secondary('Universal AI Agent Framework for Any Domain'));
|
|
151
152
|
console.log(colors.tertiary(`Installer v${version}`));
|
|
152
153
|
console.log('');
|
|
@@ -228,5 +229,5 @@ module.exports = {
|
|
|
228
229
|
showCancellation,
|
|
229
230
|
estimateTimeRemaining,
|
|
230
231
|
};
|
|
231
|
-
|
|
232
|
-
|
|
232
|
+
|
|
233
|
+
|