grimoire-framework 1.0.12 → 1.0.14

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.12
11
- generated_at: "2026-02-22T12:38:58.635Z"
10
+ version: 1.0.14
11
+ generated_at: "2026-02-22T12:51:09.102Z"
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.12",
3
+ "version": "1.0.14",
4
4
  "description": "Grimoire: AI-Orchestrated System for Full Stack Development - Core Framework",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,9 +14,9 @@
14
14
  },
15
15
  "homepage": "https://github.com/gabrielrlima/grimoire#readme",
16
16
  "bin": {
17
- "grimoire-framework": "bin/grimoire.js",
17
+ "grimoire-framework": "bin/grimoire-cli.js",
18
18
  "grimoire": "bin/grimoire-cli.js",
19
- "grimoire-core": "bin/grimoire.js",
19
+ "grimoire-core": "bin/grimoire-cli.js",
20
20
  "grimoire-minimal": "bin/grimoire-minimal.js"
21
21
  },
22
22
  "preferGlobal": false,
@@ -118,7 +118,7 @@ class grimoireUpdater {
118
118
  if (!isOnline) {
119
119
  result.error = 'You appear to be offline. Please check your internet connection.';
120
120
  } else {
121
- result.error = 'Package @grimoire/grimoire not found on npm registry. This may be a local development installation.';
121
+ result.error = 'Package grimoire-framework not found on npm registry. This may be a local development installation.';
122
122
  }
123
123
  return result;
124
124
  }
@@ -180,7 +180,7 @@ class grimoireUpdater {
180
180
  if (fs.existsSync(localPackageJsonPath)) {
181
181
  try {
182
182
  const pkg = await fs.readJson(localPackageJsonPath);
183
- if (pkg.name === '@grimoire/grimoire' || pkg.name === 'grimoire') {
183
+ if (pkg.name === 'grimoire-framework' || pkg.name === '@grimoire/grimoire' || pkg.name === 'grimoire') {
184
184
  return { version: pkg.version, installedAt: null, mode: 'framework-development' };
185
185
  }
186
186
  } catch (error) {
@@ -199,7 +199,7 @@ class grimoireUpdater {
199
199
  async getLatestVersion() {
200
200
  return new Promise((resolve) => {
201
201
  const request = https.get(
202
- 'https://registry.npmjs.org/@grimoire/grimoire/latest',
202
+ 'https://registry.npmjs.org/grimoire-framework/latest',
203
203
  { timeout: this.options.timeout },
204
204
  (res) => {
205
205
  let data = '';
@@ -406,7 +406,7 @@ class grimoireUpdater {
406
406
  */
407
407
  async update(options = {}) {
408
408
  const dryRun = options.dryRun === true;
409
- const onProgress = options.onProgress || (() => {});
409
+ const onProgress = options.onProgress || (() => { });
410
410
 
411
411
  const result = {
412
412
  success: false,
@@ -587,7 +587,7 @@ class grimoireUpdater {
587
587
 
588
588
  try {
589
589
  // Use npm to update the package
590
- const cmd = `npm install @grimoire/grimoire@${targetVersion} --save-exact`;
590
+ const cmd = `npm install grimoire-framework@${targetVersion} --save-exact`;
591
591
  this.log(`Running: ${cmd}`);
592
592
 
593
593
  execSync(cmd, {