@gravirei/reis 2.1.0-beta.1 → 2.1.0

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.
Files changed (2) hide show
  1. package/bin/reis.js +8 -3
  2. package/package.json +1 -1
package/bin/reis.js CHANGED
@@ -227,9 +227,14 @@ program
227
227
  .action((area) => todosCmd({area}));
228
228
 
229
229
  program
230
- .command('debug <issue>')
231
- .description('Debug a specific issue')
232
- .action((issue) => debugCmd({issue}));
230
+ .command('debug [target]')
231
+ .description('Analyze failures and generate fix plans (uses reis_debugger subagent)')
232
+ .option('-i, --input <path>', 'Path to DEBUG_INPUT.md or plan file')
233
+ .option('-f, --focus <area>', 'Focus analysis on specific area')
234
+ .option('-v, --verbose', 'Show detailed debug output')
235
+ .action(async (target, options) => {
236
+ await debugCmd(target, options);
237
+ });
233
238
 
234
239
  program
235
240
  .command('config [subcommand]')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravirei/reis",
3
- "version": "2.1.0-beta.1",
3
+ "version": "2.1.0",
4
4
  "description": "Roadmap Execution & Implementation System v2.0 - Wave-based execution with checkpoints, metrics, and visualization for Atlassian Rovo Dev",
5
5
  "main": "lib/index.js",
6
6
  "bin": {