@cristiancorreau/forge 2.9.0 → 2.9.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.
@@ -208,21 +208,31 @@
208
208
  }
209
209
  },
210
210
  "skills": {
211
- "description": "Skills de Forge activos para el proyecto",
212
- "type": ["object", "null"],
213
- "additionalProperties": false,
214
- "properties": {
215
- "active": {
216
- "description": "Lista de skills activos (de core/skills/)",
211
+ "description": "Skills de Forge activos. Forma simple: lista de ids. Forma extendida (legacy): objeto con active/integrations.",
212
+ "oneOf": [
213
+ {
214
+ "description": "Forma simple (v2.9+): lista de skill ids",
217
215
  "type": ["array", "null"],
218
216
  "items": { "type": "string" }
219
217
  },
220
- "integrations": {
221
- "description": "Integraciones opcionales que requieren herramienta externa",
222
- "type": ["array", "null"],
223
- "items": { "type": "string" }
218
+ {
219
+ "description": "Forma extendida (legacy)",
220
+ "type": "object",
221
+ "additionalProperties": false,
222
+ "properties": {
223
+ "active": {
224
+ "description": "Lista de skills activos (de core/skills/)",
225
+ "type": ["array", "null"],
226
+ "items": { "type": "string" }
227
+ },
228
+ "integrations": {
229
+ "description": "Integraciones opcionales que requieren herramienta externa",
230
+ "type": ["array", "null"],
231
+ "items": { "type": "string" }
232
+ }
233
+ }
224
234
  }
225
- }
235
+ ]
226
236
  },
227
237
  "wiki": {
228
238
  "description": "Configuración del wiki del proyecto (solo si wiki-ingest/wiki-query están activos)",
package/dist/cli.js CHANGED
@@ -10,7 +10,7 @@ import { skills } from './commands/skills.js';
10
10
  import { aitmplSearch } from './commands/aitmpl-search.js';
11
11
  import { scaffold } from './commands/scaffold.js';
12
12
  import { teardown } from './commands/teardown.js';
13
- const VERSION = '2.9.0';
13
+ const VERSION = '2.9.2';
14
14
  const HELP = `forge v${VERSION} — Agentic development framework
15
15
 
16
16
  Usage: forge <command> [options]
@@ -410,7 +410,7 @@ export async function init(args) {
410
410
  ...allAgents.map(a => `.claude/agents/${a}.md`),
411
411
  ];
412
412
  const ts = new Date().toISOString();
413
- saveManifest(projectRoot, buildManifest(runtime, installedFiles, projectRoot, '2.9.0', ts));
413
+ saveManifest(projectRoot, buildManifest(runtime, installedFiles, projectRoot, '2.9.2', ts));
414
414
  },
415
415
  },
416
416
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cristiancorreau/forge",
3
- "version": "2.9.0",
3
+ "version": "2.9.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",