@cristiancorreau/forge 2.4.1 → 2.4.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.
package/dist/cli.js CHANGED
@@ -4,7 +4,7 @@ import { audit } from './commands/audit.js';
4
4
  import { generate } from './commands/generate.js';
5
5
  import { validate } from './commands/validate.js';
6
6
  import { doctor } from './commands/doctor.js';
7
- const VERSION = '2.4.1';
7
+ const VERSION = '2.4.2';
8
8
  const HELP = `forge v${VERSION} — Agentic development framework
9
9
 
10
10
  Usage: forge <command> [options]
@@ -292,7 +292,7 @@ export async function init(args) {
292
292
  ...allAgents.map(a => `.claude/agents/${a}.md`),
293
293
  ];
294
294
  const ts = new Date().toISOString();
295
- saveManifest(projectRoot, buildManifest(runtime, installedFiles, projectRoot, '2.4.1', ts));
295
+ saveManifest(projectRoot, buildManifest(runtime, installedFiles, projectRoot, '2.4.2', ts));
296
296
  console.log(' write .forge/manifest.json');
297
297
  }
298
298
  else if (runtime === 'opencode') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cristiancorreau/forge",
3
- "version": "2.4.1",
3
+ "version": "2.4.2",
4
4
  "description": "Agentic development framework — multi-runtime support for Claude Code, OpenCode, Codex and Kiro",
5
5
  "author": "Cristian Correa <cristian@socialweb.cl>",
6
6
  "license": "Apache-2.0",