claude-mpm 4.7.6__py3-none-any.whl → 4.7.7__py3-none-any.whl
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.
- claude_mpm/VERSION +1 -1
- claude_mpm/cli/commands/configure.py +124 -24
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/METADATA +1 -1
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/RECORD +8 -8
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/WHEEL +0 -0
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.7.6.dist-info → claude_mpm-4.7.7.dist-info}/top_level.txt +0 -0
claude_mpm/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.7.
|
1
|
+
4.7.7
|
@@ -390,12 +390,38 @@ class ConfigureCommand(BaseCommand):
|
|
390
390
|
|
391
391
|
# Show agent menu
|
392
392
|
self.console.print("\n[bold]Agent Management Options:[/bold]")
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
self.console.print(
|
393
|
+
|
394
|
+
# Use Text objects to properly display shortcuts with styling
|
395
|
+
text_e = Text(" ")
|
396
|
+
text_e.append("[e]", style="cyan bold")
|
397
|
+
text_e.append(" Enable an agent")
|
398
|
+
self.console.print(text_e)
|
399
|
+
|
400
|
+
text_d = Text(" ")
|
401
|
+
text_d.append("[d]", style="cyan bold")
|
402
|
+
text_d.append(" Disable an agent")
|
403
|
+
self.console.print(text_d)
|
404
|
+
|
405
|
+
text_c = Text(" ")
|
406
|
+
text_c.append("[c]", style="cyan bold")
|
407
|
+
text_c.append(" Customize agent template")
|
408
|
+
self.console.print(text_c)
|
409
|
+
|
410
|
+
text_v = Text(" ")
|
411
|
+
text_v.append("[v]", style="cyan bold")
|
412
|
+
text_v.append(" View agent details")
|
413
|
+
self.console.print(text_v)
|
414
|
+
|
415
|
+
text_r = Text(" ")
|
416
|
+
text_r.append("[r]", style="cyan bold")
|
417
|
+
text_r.append(" Reset agent to defaults")
|
418
|
+
self.console.print(text_r)
|
419
|
+
|
420
|
+
text_b = Text(" ")
|
421
|
+
text_b.append("[b]", style="cyan bold")
|
422
|
+
text_b.append(" Back to main menu")
|
423
|
+
self.console.print(text_b)
|
424
|
+
|
399
425
|
self.console.print()
|
400
426
|
|
401
427
|
choice = Prompt.ask("[bold cyan]Select an option[/bold cyan]", default="b")
|
@@ -613,14 +639,41 @@ class ConfigureCommand(BaseCommand):
|
|
613
639
|
# Editing options
|
614
640
|
self.console.print("[bold]Editing Options:[/bold]")
|
615
641
|
if not is_system:
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
self.console.print(
|
642
|
+
text_1 = Text(" ")
|
643
|
+
text_1.append("[1]", style="cyan bold")
|
644
|
+
text_1.append(" Edit in external editor")
|
645
|
+
self.console.print(text_1)
|
646
|
+
|
647
|
+
text_2 = Text(" ")
|
648
|
+
text_2.append("[2]", style="cyan bold")
|
649
|
+
text_2.append(" Add/modify a field")
|
650
|
+
self.console.print(text_2)
|
651
|
+
|
652
|
+
text_3 = Text(" ")
|
653
|
+
text_3.append("[3]", style="cyan bold")
|
654
|
+
text_3.append(" Remove a field")
|
655
|
+
self.console.print(text_3)
|
656
|
+
|
657
|
+
text_4 = Text(" ")
|
658
|
+
text_4.append("[4]", style="cyan bold")
|
659
|
+
text_4.append(" Reset to defaults")
|
660
|
+
self.console.print(text_4)
|
620
661
|
else:
|
621
|
-
|
622
|
-
|
623
|
-
|
662
|
+
text_1 = Text(" ")
|
663
|
+
text_1.append("[1]", style="cyan bold")
|
664
|
+
text_1.append(" Create customized copy")
|
665
|
+
self.console.print(text_1)
|
666
|
+
|
667
|
+
text_2 = Text(" ")
|
668
|
+
text_2.append("[2]", style="cyan bold")
|
669
|
+
text_2.append(" View full template")
|
670
|
+
self.console.print(text_2)
|
671
|
+
|
672
|
+
text_b = Text(" ")
|
673
|
+
text_b.append("[b]", style="cyan bold")
|
674
|
+
text_b.append(" Back")
|
675
|
+
self.console.print(text_b)
|
676
|
+
|
624
677
|
self.console.print()
|
625
678
|
|
626
679
|
choice = Prompt.ask("[bold cyan]Select an option[/bold cyan]", default="b")
|
@@ -973,11 +1026,32 @@ class ConfigureCommand(BaseCommand):
|
|
973
1026
|
|
974
1027
|
# Show behavior menu
|
975
1028
|
self.console.print("\n[bold]Options:[/bold]")
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
self.console.print(
|
1029
|
+
|
1030
|
+
text_1 = Text(" ")
|
1031
|
+
text_1.append("[1]", style="cyan bold")
|
1032
|
+
text_1.append(" Edit identity configuration")
|
1033
|
+
self.console.print(text_1)
|
1034
|
+
|
1035
|
+
text_2 = Text(" ")
|
1036
|
+
text_2.append("[2]", style="cyan bold")
|
1037
|
+
text_2.append(" Edit workflow configuration")
|
1038
|
+
self.console.print(text_2)
|
1039
|
+
|
1040
|
+
text_3 = Text(" ")
|
1041
|
+
text_3.append("[3]", style="cyan bold")
|
1042
|
+
text_3.append(" Import behavior file")
|
1043
|
+
self.console.print(text_3)
|
1044
|
+
|
1045
|
+
text_4 = Text(" ")
|
1046
|
+
text_4.append("[4]", style="cyan bold")
|
1047
|
+
text_4.append(" Export behavior file")
|
1048
|
+
self.console.print(text_4)
|
1049
|
+
|
1050
|
+
text_b = Text(" ")
|
1051
|
+
text_b.append("[b]", style="cyan bold")
|
1052
|
+
text_b.append(" Back to main menu")
|
1053
|
+
self.console.print(text_b)
|
1054
|
+
|
981
1055
|
self.console.print()
|
982
1056
|
|
983
1057
|
choice = Prompt.ask("[bold cyan]Select an option[/bold cyan]", default="b")
|
@@ -1264,9 +1338,22 @@ class ConfigureCommand(BaseCommand):
|
|
1264
1338
|
self.console.print(table)
|
1265
1339
|
self.console.print("\n[bold]Commands:[/bold]")
|
1266
1340
|
self.console.print(" Enter service IDs to toggle (e.g., '1,3' or '1-4')")
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1341
|
+
|
1342
|
+
text_a = Text(" ")
|
1343
|
+
text_a.append("[a]", style="cyan bold")
|
1344
|
+
text_a.append(" Enable all")
|
1345
|
+
self.console.print(text_a)
|
1346
|
+
|
1347
|
+
text_n = Text(" ")
|
1348
|
+
text_n.append("[n]", style="cyan bold")
|
1349
|
+
text_n.append(" Disable all")
|
1350
|
+
self.console.print(text_n)
|
1351
|
+
|
1352
|
+
text_b = Text(" ")
|
1353
|
+
text_b.append("[b]", style="cyan bold")
|
1354
|
+
text_b.append(" Back to previous menu")
|
1355
|
+
self.console.print(text_b)
|
1356
|
+
|
1270
1357
|
self.console.print()
|
1271
1358
|
|
1272
1359
|
choice = Prompt.ask("[bold cyan]Toggle services[/bold cyan]", default="b")
|
@@ -1331,9 +1418,22 @@ class ConfigureCommand(BaseCommand):
|
|
1331
1418
|
self.console.print(table)
|
1332
1419
|
self.console.print("\n[bold]Commands:[/bold]")
|
1333
1420
|
self.console.print(" Enter service IDs to toggle (e.g., '1,3' or '1-4')")
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1421
|
+
|
1422
|
+
text_a = Text(" ")
|
1423
|
+
text_a.append("[a]", style="cyan bold")
|
1424
|
+
text_a.append(" Enable all")
|
1425
|
+
self.console.print(text_a)
|
1426
|
+
|
1427
|
+
text_n = Text(" ")
|
1428
|
+
text_n.append("[n]", style="cyan bold")
|
1429
|
+
text_n.append(" Disable all")
|
1430
|
+
self.console.print(text_n)
|
1431
|
+
|
1432
|
+
text_b = Text(" ")
|
1433
|
+
text_b.append("[b]", style="cyan bold")
|
1434
|
+
text_b.append(" Back to previous menu")
|
1435
|
+
self.console.print(text_b)
|
1436
|
+
|
1337
1437
|
self.console.print()
|
1338
1438
|
|
1339
1439
|
choice = Prompt.ask("[bold cyan]Toggle services[/bold cyan]", default="b")
|
@@ -1,5 +1,5 @@
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=9JfxhnDtr-8l3kCP2U5TVXSErptHoga8m7XA8zqgGOc,4
|
2
|
-
claude_mpm/VERSION,sha256=
|
2
|
+
claude_mpm/VERSION,sha256=HB85LgMagRltrQjQ-DOxsxPXgZAlAkVxXen4zNqgCSE,6
|
3
3
|
claude_mpm/__init__.py,sha256=UCw6j9e_tZQ3kJtTqmdfNv7MHyw9nD1jkj80WurwM2g,2064
|
4
4
|
claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
|
5
5
|
claude_mpm/constants.py,sha256=cChN3myrAcF3jC-6DvHnBFTEnwlDk-TAsIXPvUZr_yw,5953
|
@@ -79,7 +79,7 @@ claude_mpm/cli/commands/analyze_code.py,sha256=yWZpG0aL4XlhcthtvbUqnFSlnvvseWO3V
|
|
79
79
|
claude_mpm/cli/commands/cleanup.py,sha256=TukZoPVfAFSF4ICfKCQUibczDE73EJP8nbEbfuT8GhE,19768
|
80
80
|
claude_mpm/cli/commands/cleanup_orphaned_agents.py,sha256=JR8crvgrz7Sa6d-SI-gKywok5S9rwc_DzDVk_h85sVs,4467
|
81
81
|
claude_mpm/cli/commands/config.py,sha256=Yfi8WO-10_MYz2QipFw-yEzVvHKNQ6iSQXeyW5J85Cg,18559
|
82
|
-
claude_mpm/cli/commands/configure.py,sha256=
|
82
|
+
claude_mpm/cli/commands/configure.py,sha256=TgWcPzCzIYKpMgcLMaDz4VbXmobeMoDW0oE5tWqyo0E,84906
|
83
83
|
claude_mpm/cli/commands/dashboard.py,sha256=4jPTmTl97DRNNJlYREWeE1iDdkct1uL-vv24MZn9fj4,11403
|
84
84
|
claude_mpm/cli/commands/debug.py,sha256=YCfJ3aYf6hOCvLW_grdfINdEqI4RXVS28VJ7tkZBFS8,47115
|
85
85
|
claude_mpm/cli/commands/doctor.py,sha256=nNKLZG3Qv_UsHNgrmetrWKgS7Pe2Jn5vq5aXyl60wKQ,7310
|
@@ -786,9 +786,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
|
|
786
786
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
787
787
|
claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
|
788
788
|
claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
|
789
|
-
claude_mpm-4.7.
|
790
|
-
claude_mpm-4.7.
|
791
|
-
claude_mpm-4.7.
|
792
|
-
claude_mpm-4.7.
|
793
|
-
claude_mpm-4.7.
|
794
|
-
claude_mpm-4.7.
|
789
|
+
claude_mpm-4.7.7.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
|
790
|
+
claude_mpm-4.7.7.dist-info/METADATA,sha256=xVqJzb3mt7CPS-7pxe3uOhh7FeqkBkwociB-EruqX0s,17517
|
791
|
+
claude_mpm-4.7.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
792
|
+
claude_mpm-4.7.7.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
|
793
|
+
claude_mpm-4.7.7.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
794
|
+
claude_mpm-4.7.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|