claude-mpm 4.1.15__py3-none-any.whl → 4.1.17__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/mpm_init.py +154 -7
- claude_mpm/cli/commands/mpm_init_handler.py +1 -0
- claude_mpm/cli/parsers/mpm_init_parser.py +13 -0
- claude_mpm/commands/mpm-init.md +162 -0
- claude_mpm/dashboard/static/css/activity.css +165 -0
- claude_mpm/dashboard/static/css/dashboard.css +18 -15
- claude_mpm/dashboard/static/js/components/activity-tree.js +603 -475
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/METADATA +1 -1
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/RECORD +14 -13
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/WHEEL +0 -0
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.1.15.dist-info → claude_mpm-4.1.17.dist-info}/top_level.txt +0 -0
|
@@ -661,8 +661,8 @@ label {
|
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
.status-pending {
|
|
664
|
-
background: #
|
|
665
|
-
color: #
|
|
664
|
+
background: #f3f4f6;
|
|
665
|
+
color: #4b5563;
|
|
666
666
|
padding: 2px 6px;
|
|
667
667
|
border-radius: 4px;
|
|
668
668
|
font-size: 11px;
|
|
@@ -2779,13 +2779,15 @@ button:disabled:hover {
|
|
|
2779
2779
|
}
|
|
2780
2780
|
|
|
2781
2781
|
.tool-phase.pre_tool {
|
|
2782
|
-
background: #
|
|
2783
|
-
color: #
|
|
2782
|
+
background: #f0f9ff;
|
|
2783
|
+
color: #0369a1;
|
|
2784
|
+
border: 1px solid #bae6fd;
|
|
2784
2785
|
}
|
|
2785
2786
|
|
|
2786
2787
|
.tool-phase.post_tool {
|
|
2787
2788
|
background: #d1fae5;
|
|
2788
2789
|
color: #065f46;
|
|
2790
|
+
border: 1px solid #a7f3d0;
|
|
2789
2791
|
}
|
|
2790
2792
|
|
|
2791
2793
|
.tool-timestamp {
|
|
@@ -2838,8 +2840,9 @@ button:disabled:hover {
|
|
|
2838
2840
|
}
|
|
2839
2841
|
|
|
2840
2842
|
.tool-status-indicator.status-blocked {
|
|
2841
|
-
background: #
|
|
2842
|
-
color: #
|
|
2843
|
+
background: #fef2f2;
|
|
2844
|
+
color: #dc2626;
|
|
2845
|
+
border: 1px solid #fecaca;
|
|
2843
2846
|
}
|
|
2844
2847
|
|
|
2845
2848
|
.tool-status-indicator.status-running {
|
|
@@ -2909,9 +2912,9 @@ button:disabled:hover {
|
|
|
2909
2912
|
}
|
|
2910
2913
|
|
|
2911
2914
|
.tool-result-status.tool-blocked {
|
|
2912
|
-
background: #
|
|
2913
|
-
color: #
|
|
2914
|
-
border: 1px solid #
|
|
2915
|
+
background: #fff1f2;
|
|
2916
|
+
color: #be123c;
|
|
2917
|
+
border: 1px solid #fecdd3;
|
|
2915
2918
|
}
|
|
2916
2919
|
|
|
2917
2920
|
.tool-result-status.tool-running {
|
|
@@ -3686,8 +3689,8 @@ button:disabled:hover {
|
|
|
3686
3689
|
}
|
|
3687
3690
|
|
|
3688
3691
|
.status-pending {
|
|
3689
|
-
background: #
|
|
3690
|
-
color: #
|
|
3692
|
+
background: #f3f4f6;
|
|
3693
|
+
color: #4b5563;
|
|
3691
3694
|
}
|
|
3692
3695
|
|
|
3693
3696
|
.agent-event-details {
|
|
@@ -3942,8 +3945,8 @@ button:disabled:hover {
|
|
|
3942
3945
|
}
|
|
3943
3946
|
|
|
3944
3947
|
.status-count.pending {
|
|
3945
|
-
background: #
|
|
3946
|
-
color: #
|
|
3948
|
+
background: #f3f4f6;
|
|
3949
|
+
color: #4b5563;
|
|
3947
3950
|
}
|
|
3948
3951
|
|
|
3949
3952
|
.todo-list {
|
|
@@ -3973,8 +3976,8 @@ button:disabled:hover {
|
|
|
3973
3976
|
}
|
|
3974
3977
|
|
|
3975
3978
|
.todo-item.pending {
|
|
3976
|
-
border-left-color: #
|
|
3977
|
-
background: #
|
|
3979
|
+
border-left-color: #9ca3af;
|
|
3980
|
+
background: #f9fafb;
|
|
3978
3981
|
}
|
|
3979
3982
|
|
|
3980
3983
|
.todo-icon {
|