@memberjunction/cli 5.33.0 → 5.34.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/oclif.manifest.json +162 -162
  2. package/package.json +15 -15
@@ -338,38 +338,6 @@
338
338
  "upgrade.js"
339
339
  ]
340
340
  },
341
- "clean": {
342
- "aliases": [],
343
- "args": {},
344
- "description": "Resets the MemberJunction database to a pre-installation state",
345
- "examples": [
346
- "<%= config.bin %> <%= command.id %>\n"
347
- ],
348
- "flags": {
349
- "verbose": {
350
- "char": "v",
351
- "description": "Enable additional logging",
352
- "name": "verbose",
353
- "allowNo": false,
354
- "type": "boolean"
355
- }
356
- },
357
- "hasDynamicHelp": false,
358
- "hiddenAliases": [],
359
- "id": "clean",
360
- "pluginAlias": "@memberjunction/cli",
361
- "pluginName": "@memberjunction/cli",
362
- "pluginType": "core",
363
- "strict": true,
364
- "enableJsonFlag": false,
365
- "isESM": true,
366
- "relativePath": [
367
- "dist",
368
- "commands",
369
- "clean",
370
- "index.js"
371
- ]
372
- },
373
341
  "bump": {
374
342
  "aliases": [],
375
343
  "args": {},
@@ -442,6 +410,38 @@
442
410
  "index.js"
443
411
  ]
444
412
  },
413
+ "clean": {
414
+ "aliases": [],
415
+ "args": {},
416
+ "description": "Resets the MemberJunction database to a pre-installation state",
417
+ "examples": [
418
+ "<%= config.bin %> <%= command.id %>\n"
419
+ ],
420
+ "flags": {
421
+ "verbose": {
422
+ "char": "v",
423
+ "description": "Enable additional logging",
424
+ "name": "verbose",
425
+ "allowNo": false,
426
+ "type": "boolean"
427
+ }
428
+ },
429
+ "hasDynamicHelp": false,
430
+ "hiddenAliases": [],
431
+ "id": "clean",
432
+ "pluginAlias": "@memberjunction/cli",
433
+ "pluginName": "@memberjunction/cli",
434
+ "pluginType": "core",
435
+ "strict": true,
436
+ "enableJsonFlag": false,
437
+ "isESM": true,
438
+ "relativePath": [
439
+ "dist",
440
+ "commands",
441
+ "clean",
442
+ "index.js"
443
+ ]
444
+ },
445
445
  "codegen:5-0-fix-entity-names": {
446
446
  "aliases": [],
447
447
  "args": {},
@@ -3281,6 +3281,135 @@
3281
3281
  "run.js"
3282
3282
  ]
3283
3283
  },
3284
+ "ai:agents:list": {
3285
+ "aliases": [],
3286
+ "args": {},
3287
+ "description": "List available AI agents",
3288
+ "examples": [
3289
+ "<%= config.bin %> <%= command.id %>",
3290
+ "<%= config.bin %> <%= command.id %> --output=table",
3291
+ "<%= config.bin %> <%= command.id %> --output=json"
3292
+ ],
3293
+ "flags": {
3294
+ "output": {
3295
+ "char": "o",
3296
+ "description": "Output format",
3297
+ "name": "output",
3298
+ "default": "compact",
3299
+ "hasDynamicHelp": false,
3300
+ "multiple": false,
3301
+ "options": [
3302
+ "compact",
3303
+ "json",
3304
+ "table"
3305
+ ],
3306
+ "type": "option"
3307
+ }
3308
+ },
3309
+ "hasDynamicHelp": false,
3310
+ "hiddenAliases": [],
3311
+ "id": "ai:agents:list",
3312
+ "pluginAlias": "@memberjunction/cli",
3313
+ "pluginName": "@memberjunction/cli",
3314
+ "pluginType": "core",
3315
+ "strict": true,
3316
+ "enableJsonFlag": false,
3317
+ "isESM": true,
3318
+ "relativePath": [
3319
+ "dist",
3320
+ "commands",
3321
+ "ai",
3322
+ "agents",
3323
+ "list.js"
3324
+ ]
3325
+ },
3326
+ "ai:agents:run": {
3327
+ "aliases": [],
3328
+ "args": {},
3329
+ "description": "Execute an AI agent with a prompt or start interactive chat",
3330
+ "examples": [
3331
+ "<%= config.bin %> <%= command.id %> -a \"Skip: Requirements Expert\" -p \"Create a dashboard for sales metrics\"",
3332
+ "<%= config.bin %> <%= command.id %> -a \"Child Component Generator Sub-agent\" --chat",
3333
+ "<%= config.bin %> <%= command.id %> -a \"Skip: Technical Design Expert\" -p \"Build a React component\" --verbose --timeout=600000"
3334
+ ],
3335
+ "flags": {
3336
+ "agent": {
3337
+ "char": "a",
3338
+ "description": "Agent name",
3339
+ "name": "agent",
3340
+ "required": true,
3341
+ "hasDynamicHelp": false,
3342
+ "multiple": false,
3343
+ "type": "option"
3344
+ },
3345
+ "prompt": {
3346
+ "char": "p",
3347
+ "description": "Prompt to execute",
3348
+ "exclusive": [
3349
+ "chat"
3350
+ ],
3351
+ "name": "prompt",
3352
+ "hasDynamicHelp": false,
3353
+ "multiple": false,
3354
+ "type": "option"
3355
+ },
3356
+ "chat": {
3357
+ "char": "c",
3358
+ "description": "Start interactive chat mode",
3359
+ "exclusive": [
3360
+ "prompt"
3361
+ ],
3362
+ "name": "chat",
3363
+ "allowNo": false,
3364
+ "type": "boolean"
3365
+ },
3366
+ "output": {
3367
+ "char": "o",
3368
+ "description": "Output format",
3369
+ "name": "output",
3370
+ "default": "compact",
3371
+ "hasDynamicHelp": false,
3372
+ "multiple": false,
3373
+ "options": [
3374
+ "compact",
3375
+ "json",
3376
+ "table"
3377
+ ],
3378
+ "type": "option"
3379
+ },
3380
+ "verbose": {
3381
+ "char": "v",
3382
+ "description": "Show detailed execution information",
3383
+ "name": "verbose",
3384
+ "allowNo": false,
3385
+ "type": "boolean"
3386
+ },
3387
+ "timeout": {
3388
+ "description": "Execution timeout in milliseconds",
3389
+ "name": "timeout",
3390
+ "default": 300000,
3391
+ "hasDynamicHelp": false,
3392
+ "multiple": false,
3393
+ "type": "option"
3394
+ }
3395
+ },
3396
+ "hasDynamicHelp": false,
3397
+ "hiddenAliases": [],
3398
+ "id": "ai:agents:run",
3399
+ "pluginAlias": "@memberjunction/cli",
3400
+ "pluginName": "@memberjunction/cli",
3401
+ "pluginType": "core",
3402
+ "strict": true,
3403
+ "enableJsonFlag": false,
3404
+ "isESM": true,
3405
+ "relativePath": [
3406
+ "dist",
3407
+ "commands",
3408
+ "ai",
3409
+ "agents",
3410
+ "run.js"
3411
+ ]
3412
+ },
3284
3413
  "ai:audit:agent-run": {
3285
3414
  "aliases": [],
3286
3415
  "args": {
@@ -3497,135 +3626,6 @@
3497
3626
  "index.js"
3498
3627
  ]
3499
3628
  },
3500
- "ai:agents:list": {
3501
- "aliases": [],
3502
- "args": {},
3503
- "description": "List available AI agents",
3504
- "examples": [
3505
- "<%= config.bin %> <%= command.id %>",
3506
- "<%= config.bin %> <%= command.id %> --output=table",
3507
- "<%= config.bin %> <%= command.id %> --output=json"
3508
- ],
3509
- "flags": {
3510
- "output": {
3511
- "char": "o",
3512
- "description": "Output format",
3513
- "name": "output",
3514
- "default": "compact",
3515
- "hasDynamicHelp": false,
3516
- "multiple": false,
3517
- "options": [
3518
- "compact",
3519
- "json",
3520
- "table"
3521
- ],
3522
- "type": "option"
3523
- }
3524
- },
3525
- "hasDynamicHelp": false,
3526
- "hiddenAliases": [],
3527
- "id": "ai:agents:list",
3528
- "pluginAlias": "@memberjunction/cli",
3529
- "pluginName": "@memberjunction/cli",
3530
- "pluginType": "core",
3531
- "strict": true,
3532
- "enableJsonFlag": false,
3533
- "isESM": true,
3534
- "relativePath": [
3535
- "dist",
3536
- "commands",
3537
- "ai",
3538
- "agents",
3539
- "list.js"
3540
- ]
3541
- },
3542
- "ai:agents:run": {
3543
- "aliases": [],
3544
- "args": {},
3545
- "description": "Execute an AI agent with a prompt or start interactive chat",
3546
- "examples": [
3547
- "<%= config.bin %> <%= command.id %> -a \"Skip: Requirements Expert\" -p \"Create a dashboard for sales metrics\"",
3548
- "<%= config.bin %> <%= command.id %> -a \"Child Component Generator Sub-agent\" --chat",
3549
- "<%= config.bin %> <%= command.id %> -a \"Skip: Technical Design Expert\" -p \"Build a React component\" --verbose --timeout=600000"
3550
- ],
3551
- "flags": {
3552
- "agent": {
3553
- "char": "a",
3554
- "description": "Agent name",
3555
- "name": "agent",
3556
- "required": true,
3557
- "hasDynamicHelp": false,
3558
- "multiple": false,
3559
- "type": "option"
3560
- },
3561
- "prompt": {
3562
- "char": "p",
3563
- "description": "Prompt to execute",
3564
- "exclusive": [
3565
- "chat"
3566
- ],
3567
- "name": "prompt",
3568
- "hasDynamicHelp": false,
3569
- "multiple": false,
3570
- "type": "option"
3571
- },
3572
- "chat": {
3573
- "char": "c",
3574
- "description": "Start interactive chat mode",
3575
- "exclusive": [
3576
- "prompt"
3577
- ],
3578
- "name": "chat",
3579
- "allowNo": false,
3580
- "type": "boolean"
3581
- },
3582
- "output": {
3583
- "char": "o",
3584
- "description": "Output format",
3585
- "name": "output",
3586
- "default": "compact",
3587
- "hasDynamicHelp": false,
3588
- "multiple": false,
3589
- "options": [
3590
- "compact",
3591
- "json",
3592
- "table"
3593
- ],
3594
- "type": "option"
3595
- },
3596
- "verbose": {
3597
- "char": "v",
3598
- "description": "Show detailed execution information",
3599
- "name": "verbose",
3600
- "allowNo": false,
3601
- "type": "boolean"
3602
- },
3603
- "timeout": {
3604
- "description": "Execution timeout in milliseconds",
3605
- "name": "timeout",
3606
- "default": 300000,
3607
- "hasDynamicHelp": false,
3608
- "multiple": false,
3609
- "type": "option"
3610
- }
3611
- },
3612
- "hasDynamicHelp": false,
3613
- "hiddenAliases": [],
3614
- "id": "ai:agents:run",
3615
- "pluginAlias": "@memberjunction/cli",
3616
- "pluginName": "@memberjunction/cli",
3617
- "pluginType": "core",
3618
- "strict": true,
3619
- "enableJsonFlag": false,
3620
- "isESM": true,
3621
- "relativePath": [
3622
- "dist",
3623
- "commands",
3624
- "ai",
3625
- "agents",
3626
- "run.js"
3627
- ]
3628
- },
3629
3629
  "ai:prompts:list": {
3630
3630
  "aliases": [],
3631
3631
  "args": {},
@@ -3766,5 +3766,5 @@
3766
3766
  ]
3767
3767
  }
3768
3768
  },
3769
- "version": "5.33.0"
3769
+ "version": "5.34.0"
3770
3770
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
3
  "type": "module",
4
- "version": "5.33.0",
4
+ "version": "5.34.0",
5
5
  "description": "MemberJunction command line tools",
6
6
  "keywords": [
7
7
  "oclif"
@@ -54,23 +54,23 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@inquirer/prompts": "^8.2.0",
57
- "@memberjunction/ai-cli": "5.33.0",
58
- "@memberjunction/codegen-lib": "5.33.0",
59
- "@memberjunction/config": "5.33.0",
60
- "@memberjunction/core": "5.33.0",
61
- "@memberjunction/generic-database-provider": "5.33.0",
62
- "@memberjunction/installer": "5.33.0",
63
- "@memberjunction/db-auto-doc": "5.33.0",
64
- "@memberjunction/metadata-sync": "5.33.0",
65
- "@memberjunction/open-app-engine": "5.33.0",
66
- "@memberjunction/query-gen": "5.33.0",
67
- "@memberjunction/server-bootstrap-lite": "5.33.0",
57
+ "@memberjunction/ai-cli": "5.34.0",
58
+ "@memberjunction/codegen-lib": "5.34.0",
59
+ "@memberjunction/config": "5.34.0",
60
+ "@memberjunction/core": "5.34.0",
61
+ "@memberjunction/generic-database-provider": "5.34.0",
62
+ "@memberjunction/installer": "5.34.0",
63
+ "@memberjunction/db-auto-doc": "5.34.0",
64
+ "@memberjunction/metadata-sync": "5.34.0",
65
+ "@memberjunction/open-app-engine": "5.34.0",
66
+ "@memberjunction/query-gen": "5.34.0",
67
+ "@memberjunction/server-bootstrap-lite": "5.34.0",
68
68
  "@memberjunction/skyway-core": "^0.6.1",
69
69
  "@memberjunction/skyway-postgres": "^0.6.1",
70
70
  "@memberjunction/skyway-sqlserver": "^0.6.1",
71
- "@memberjunction/sql-converter": "5.33.0",
72
- "@memberjunction/sqlserver-dataprovider": "5.33.0",
73
- "@memberjunction/testing-cli": "5.33.0",
71
+ "@memberjunction/sql-converter": "5.34.0",
72
+ "@memberjunction/sqlserver-dataprovider": "5.34.0",
73
+ "@memberjunction/testing-cli": "5.34.0",
74
74
  "@oclif/core": "^3.27.0",
75
75
  "@oclif/plugin-help": "^6.2.37",
76
76
  "@oclif/plugin-version": "^2.2.36",