@atelierai/uco 1.0.8 → 1.0.10

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 (35) hide show
  1. package/CHANGELOG.md +32 -8
  2. package/package.json +2 -2
  3. package/vendor/plugin/com.atelierai.unity.copilot/CHANGELOG.md +4 -4
  4. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/API/Tool/ToolGroups.SetEnabled.cs +92 -92
  5. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/CopilotServerManager.cs +0 -147
  6. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Startup.Editor.cs +16 -0
  7. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/UI/Window/MainWindowEditor.CopilotServer.cs +3 -3
  8. package/vendor/plugin/com.atelierai.unity.copilot/Editor/Scripts/Utils/ToolGroupRegistry.cs +461 -460
  9. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotPromptsWindow.uss +11 -11
  10. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotResourcesWindow.uss +16 -16
  11. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/CopilotToolsWindow.uss +36 -36
  12. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/MainWindow.uss +183 -183
  13. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/{_mcp-list-window.uss → _copilot-list-window.uss} +18 -18
  14. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/_list-view.uss +77 -77
  15. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotPromptsWindow.uxml +18 -18
  16. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotResourcesWindow.uxml +18 -18
  17. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/CopilotToolsWindow.uxml +18 -18
  18. package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uxml/MainWindow.uxml +115 -115
  19. package/vendor/plugin/com.atelierai.unity.copilot/Plugins/ReflectorNet.dll +0 -0
  20. package/vendor/plugin/com.atelierai.unity.copilot/Plugins/Uco.Framework.Common.dll +0 -0
  21. package/vendor/plugin/com.atelierai.unity.copilot/Plugins/Uco.Framework.dll +0 -0
  22. package/vendor/plugin/com.atelierai.unity.copilot/README.md +88 -88
  23. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/BufferedFileLogStorage.cs +208 -207
  24. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/FileLogStorage.cs +3 -1
  25. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/Unity/Logs/UnityLogCollector.cs +282 -280
  26. package/vendor/plugin/com.atelierai.unity.copilot/Runtime/UnityCopilotPlugin.cs +1 -1
  27. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorDevelopmentDependencyTests.cs +148 -148
  28. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetExtractorFlatLayoutTests.cs +166 -166
  29. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetInstallManifestTests.cs +436 -436
  30. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetLegacyMigrationTests.cs +1 -1
  31. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/DependencyResolver/NuGetPackageInstallerStaleVersionCleanupTests.cs +200 -200
  32. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Environment/EnvironmentUtilsTests.cs +1 -1
  33. package/vendor/plugin/com.atelierai.unity.copilot/Tests/Editor/Tool/GameObject/TestJsonSchema.cs +199 -199
  34. package/vendor/plugin/com.atelierai.unity.copilot/package.json +1 -1
  35. /package/vendor/plugin/com.atelierai.unity.copilot/Editor/UI/uss/common/{_mcp-list-window.uss.meta → _copilot-list-window.uss.meta} +0 -0
@@ -1,11 +1,11 @@
1
- /* ==========================================================================
2
- MCP Prompts Window Styles
3
- Imports common list window styles and adds prompt-specific customizations
4
- ========================================================================== */
5
-
6
- @import url("common/_mcp-list-window.uss");
7
-
8
- /* Prompt-specific: Role label color */
9
- .item-role {
10
- color: #8FAADC;
11
- }
1
+ /* ==========================================================================
2
+ Copilot Prompts Window Styles
3
+ Imports common list window styles and adds prompt-specific customizations
4
+ ========================================================================== */
5
+
6
+ @import url("common/_copilot-list-window.uss");
7
+
8
+ /* Prompt-specific: Role label color */
9
+ .item-role {
10
+ color: #8FAADC;
11
+ }
@@ -1,16 +1,16 @@
1
- /* ==========================================================================
2
- MCP Resources Window Styles
3
- Imports common list window styles and adds resource-specific customizations
4
- ========================================================================== */
5
-
6
- @import url("common/_mcp-list-window.uss");
7
-
8
- /* Resource-specific: URI label color */
9
- .item-uri {
10
- color: #9ACD32;
11
- }
12
-
13
- /* Resource-specific: MIME type label color */
14
- .item-mimetype {
15
- color: #DDA0DD;
16
- }
1
+ /* ==========================================================================
2
+ Copilot Resources Window Styles
3
+ Imports common list window styles and adds resource-specific customizations
4
+ ========================================================================== */
5
+
6
+ @import url("common/_copilot-list-window.uss");
7
+
8
+ /* Resource-specific: URI label color */
9
+ .item-uri {
10
+ color: #9ACD32;
11
+ }
12
+
13
+ /* Resource-specific: MIME type label color */
14
+ .item-mimetype {
15
+ color: #DDA0DD;
16
+ }
@@ -1,36 +1,36 @@
1
- /* ==========================================================================
2
- MCP Tools Window Styles
3
- ========================================================================== */
4
-
5
- @import url("common/_mcp-list-window.uss");
6
-
7
- /* Tool Item Header - column layout with two rows */
8
- .tool-item-header {
9
- flex-direction: column;
10
- }
11
-
12
- /* Shared row style for tool item rows */
13
- .tool-item-row {
14
- flex-direction: row;
15
- justify-content: space-between;
16
- width: 100%;
17
- }
18
-
19
- /* Title row - toggle aligned to top */
20
- .tool-item-title-row {
21
- align-items: flex-start;
22
- }
23
-
24
- /* Subtitle row - vertically centered */
25
- .tool-item-subtitle-row {
26
- align-items: center;
27
- }
28
-
29
- /* Token Count */
30
- .item-token-count {
31
- flex-shrink: 0;
32
- margin-left: 8px;
33
- font-size: 10px;
34
- color: rgb(150, 150, 150);
35
- white-space: nowrap;
36
- }
1
+ /* ==========================================================================
2
+ Copilot Tools Window Styles
3
+ ========================================================================== */
4
+
5
+ @import url("common/_copilot-list-window.uss");
6
+
7
+ /* Tool Item Header - column layout with two rows */
8
+ .tool-item-header {
9
+ flex-direction: column;
10
+ }
11
+
12
+ /* Shared row style for tool item rows */
13
+ .tool-item-row {
14
+ flex-direction: row;
15
+ justify-content: space-between;
16
+ width: 100%;
17
+ }
18
+
19
+ /* Title row - toggle aligned to top */
20
+ .tool-item-title-row {
21
+ align-items: flex-start;
22
+ }
23
+
24
+ /* Subtitle row - vertically centered */
25
+ .tool-item-subtitle-row {
26
+ align-items: center;
27
+ }
28
+
29
+ /* Token Count */
30
+ .item-token-count {
31
+ flex-shrink: 0;
32
+ margin-left: 8px;
33
+ font-size: 10px;
34
+ color: rgb(150, 150, 150);
35
+ white-space: nowrap;
36
+ }
@@ -1,184 +1,184 @@
1
- /* ==========================================================================
2
- AI Connector Window Styles
3
- Imports common styles and adds connector-specific customizations
4
- ========================================================================== */
5
-
6
- @import url("common/_base.uss");
7
- @import url("common/_typography.uss");
8
- @import url("common/_buttons.uss");
9
- @import url("common/_forms.uss");
10
- @import url("common/_status-indicators.uss");
11
- @import url("common/_animations.uss");
12
- @import url("common/_foldout.uss");
13
-
14
- /* ==========================================================================
15
- Agent Icon - Icon displayed next to agent name in configuration panels
16
- ========================================================================== */
17
-
18
- .agent-icon {
19
- width: 32px;
20
- height: 32px;
21
- min-width: 32px;
22
- min-height: 32px;
23
- margin-right: 8px;
24
- margin-bottom: 6px;
25
- flex-shrink: 0;
26
- }
27
-
28
- /* ==========================================================================
29
- Connection Timeline - Vertical TODO-like list with connected points
30
- ========================================================================== */
31
-
32
- .connection-timeline {
33
- flex-direction: column;
34
- margin-top: 0;
35
- margin-bottom: 0;
36
- padding-left: 4px;
37
- }
38
-
39
- .timeline-point {
40
- flex-direction: row;
41
- align-items: stretch;
42
- min-height: 40px;
43
- }
44
-
45
- .timeline-indicator {
46
- flex-direction: column;
47
- align-items: center;
48
- justify-content: center;
49
- width: 20px;
50
- margin-right: 4px;
51
- position: relative;
52
- }
53
-
54
- .timeline-indicator > .status-indicator-circle {
55
- flex-shrink: 0;
56
- margin-right: 0;
57
- }
58
-
59
- .timeline-line {
60
- position: absolute;
61
- width: 2px;
62
- top: 50%;
63
- bottom: -10px;
64
- left: 9px;
65
- margin-top: 10px;
66
- background-color: rgb(80, 80, 80);
67
- }
68
-
69
- .timeline-point-last .timeline-line {
70
- display: none;
71
- }
72
-
73
- .timeline-content {
74
- flex-direction: row;
75
- flex-grow: 1;
76
- align-items: center;
77
- justify-content: space-between;
78
- padding-bottom: 0;
79
- /* padding-bottom: 16px; */
80
- }
81
-
82
- .timeline-point-last {
83
- padding-bottom: 0;
84
- margin-top: 12px;
85
- min-height: 16px;
86
- align-items: flex-start;
87
- margin-bottom: 4px;
88
- }
89
-
90
- .timeline-label {
91
- flex-grow: 0;
92
- -unity-text-align: middle-left;
93
- color: var(--unity-colors-default-text);
94
- font-size: 13px;
95
- -unity-font-style: bold;
96
-
97
- /* Simulate the underline with a bottom border */
98
- border-bottom-width: 0.3px;
99
- border-bottom-color: var(--unity-colors-default-text);
100
-
101
- /* Adjust padding so the line isn't touching the letters */
102
- padding-bottom: 1px;
103
- }
104
-
105
- .timeline-btn {
106
- flex-shrink: 0;
107
- min-width: 60px;
108
- margin-top: 0;
109
- margin-bottom: 0;
110
- }
111
-
112
- /* Frame/Group containers */
113
- /* ==========================================================================
114
- Remote Token Input - Read-only token display field
115
- ========================================================================== */
116
-
117
- .token-input {
118
- flex-grow: 1;
119
- flex-shrink: 1;
120
- height: 20px;
121
- }
122
-
123
- .token-input > .unity-base-field__input {
124
- color: var(--unity-colors-helpbox-text);
125
- }
126
-
127
- .token-input.token-placeholder > .unity-base-field__input {
128
- color: var(--unity-colors-helpbox-text);
129
- opacity: 0.7;
130
- -unity-font-style: italic;
131
- }
132
-
133
- /* ==========================================================================
134
- Alert Frame - Setup required notification panel
135
- ========================================================================== */
136
-
137
- .alert-frame {
138
- background-color: rgba(180, 120, 40, 0.12);
139
- border-radius: 10px;
140
- border-width: 1px;
141
- border-color: rgba(220, 160, 60, 0.45);
142
- padding: 10px 12px;
143
- margin-top: 8px;
144
- margin-bottom: 4px;
145
- }
146
-
147
- .alert-frame-title {
148
- font-size: 13px;
149
- -unity-font-style: bold;
150
- color: rgb(255, 200, 100);
151
- margin-bottom: 4px;
152
- }
153
-
154
- .alert-frame-message {
155
- font-size: 12px;
156
- color: rgb(210, 180, 130);
157
- white-space: normal;
158
- margin-bottom: 2px;
159
- }
160
-
161
- .alert-frame-item {
162
- font-size: 12px;
163
- color: rgb(210, 180, 130);
164
- white-space: normal;
165
- padding-left: 8px;
166
- margin-bottom: 1px;
167
- }
168
-
169
- .alert-frame-item-recommended {
170
- color: rgb(255, 200, 100);
171
- -unity-font-style: bold;
172
- }
173
-
174
- .frame-mcp-server {
175
- /* background-color: rgba(20, 40, 69, 0.2); */
176
- border-radius: 10px;
177
-
178
- margin-bottom: -4px;
179
- margin-top: 2px;
180
- padding-top: 2px;
181
-
182
- margin-right: -6px;
183
- padding-right: 6px;
1
+ /* ==========================================================================
2
+ AI Connector Window Styles
3
+ Imports common styles and adds connector-specific customizations
4
+ ========================================================================== */
5
+
6
+ @import url("common/_base.uss");
7
+ @import url("common/_typography.uss");
8
+ @import url("common/_buttons.uss");
9
+ @import url("common/_forms.uss");
10
+ @import url("common/_status-indicators.uss");
11
+ @import url("common/_animations.uss");
12
+ @import url("common/_foldout.uss");
13
+
14
+ /* ==========================================================================
15
+ Agent Icon - Icon displayed next to agent name in configuration panels
16
+ ========================================================================== */
17
+
18
+ .agent-icon {
19
+ width: 32px;
20
+ height: 32px;
21
+ min-width: 32px;
22
+ min-height: 32px;
23
+ margin-right: 8px;
24
+ margin-bottom: 6px;
25
+ flex-shrink: 0;
26
+ }
27
+
28
+ /* ==========================================================================
29
+ Connection Timeline - Vertical TODO-like list with connected points
30
+ ========================================================================== */
31
+
32
+ .connection-timeline {
33
+ flex-direction: column;
34
+ margin-top: 0;
35
+ margin-bottom: 0;
36
+ padding-left: 4px;
37
+ }
38
+
39
+ .timeline-point {
40
+ flex-direction: row;
41
+ align-items: stretch;
42
+ min-height: 40px;
43
+ }
44
+
45
+ .timeline-indicator {
46
+ flex-direction: column;
47
+ align-items: center;
48
+ justify-content: center;
49
+ width: 20px;
50
+ margin-right: 4px;
51
+ position: relative;
52
+ }
53
+
54
+ .timeline-indicator > .status-indicator-circle {
55
+ flex-shrink: 0;
56
+ margin-right: 0;
57
+ }
58
+
59
+ .timeline-line {
60
+ position: absolute;
61
+ width: 2px;
62
+ top: 50%;
63
+ bottom: -10px;
64
+ left: 9px;
65
+ margin-top: 10px;
66
+ background-color: rgb(80, 80, 80);
67
+ }
68
+
69
+ .timeline-point-last .timeline-line {
70
+ display: none;
71
+ }
72
+
73
+ .timeline-content {
74
+ flex-direction: row;
75
+ flex-grow: 1;
76
+ align-items: center;
77
+ justify-content: space-between;
78
+ padding-bottom: 0;
79
+ /* padding-bottom: 16px; */
80
+ }
81
+
82
+ .timeline-point-last {
83
+ padding-bottom: 0;
84
+ margin-top: 12px;
85
+ min-height: 16px;
86
+ align-items: flex-start;
87
+ margin-bottom: 4px;
88
+ }
89
+
90
+ .timeline-label {
91
+ flex-grow: 0;
92
+ -unity-text-align: middle-left;
93
+ color: var(--unity-colors-default-text);
94
+ font-size: 13px;
95
+ -unity-font-style: bold;
96
+
97
+ /* Simulate the underline with a bottom border */
98
+ border-bottom-width: 0.3px;
99
+ border-bottom-color: var(--unity-colors-default-text);
100
+
101
+ /* Adjust padding so the line isn't touching the letters */
102
+ padding-bottom: 1px;
103
+ }
104
+
105
+ .timeline-btn {
106
+ flex-shrink: 0;
107
+ min-width: 60px;
108
+ margin-top: 0;
109
+ margin-bottom: 0;
110
+ }
111
+
112
+ /* Frame/Group containers */
113
+ /* ==========================================================================
114
+ Remote Token Input - Read-only token display field
115
+ ========================================================================== */
116
+
117
+ .token-input {
118
+ flex-grow: 1;
119
+ flex-shrink: 1;
120
+ height: 20px;
121
+ }
122
+
123
+ .token-input > .unity-base-field__input {
124
+ color: var(--unity-colors-helpbox-text);
125
+ }
126
+
127
+ .token-input.token-placeholder > .unity-base-field__input {
128
+ color: var(--unity-colors-helpbox-text);
129
+ opacity: 0.7;
130
+ -unity-font-style: italic;
131
+ }
132
+
133
+ /* ==========================================================================
134
+ Alert Frame - Setup required notification panel
135
+ ========================================================================== */
136
+
137
+ .alert-frame {
138
+ background-color: rgba(180, 120, 40, 0.12);
139
+ border-radius: 10px;
140
+ border-width: 1px;
141
+ border-color: rgba(220, 160, 60, 0.45);
142
+ padding: 10px 12px;
143
+ margin-top: 8px;
144
+ margin-bottom: 4px;
145
+ }
146
+
147
+ .alert-frame-title {
148
+ font-size: 13px;
149
+ -unity-font-style: bold;
150
+ color: rgb(255, 200, 100);
151
+ margin-bottom: 4px;
152
+ }
153
+
154
+ .alert-frame-message {
155
+ font-size: 12px;
156
+ color: rgb(210, 180, 130);
157
+ white-space: normal;
158
+ margin-bottom: 2px;
159
+ }
160
+
161
+ .alert-frame-item {
162
+ font-size: 12px;
163
+ color: rgb(210, 180, 130);
164
+ white-space: normal;
165
+ padding-left: 8px;
166
+ margin-bottom: 1px;
167
+ }
168
+
169
+ .alert-frame-item-recommended {
170
+ color: rgb(255, 200, 100);
171
+ -unity-font-style: bold;
172
+ }
173
+
174
+ .frame-server {
175
+ /* background-color: rgba(20, 40, 69, 0.2); */
176
+ border-radius: 10px;
177
+
178
+ margin-bottom: -4px;
179
+ margin-top: 2px;
180
+ padding-top: 2px;
181
+
182
+ margin-right: -6px;
183
+ padding-right: 6px;
184
184
  }
@@ -1,18 +1,18 @@
1
- /* ==========================================================================
2
- MCP List Window Common Imports
3
- Shared imports for Tools, Prompts, and Resources windows
4
- ========================================================================== */
5
-
6
- @import url("_base.uss");
7
- @import url("_typography.uss");
8
- @import url("_buttons.uss");
9
- @import url("_forms.uss");
10
- @import url("_list-view.uss");
11
- @import url("_toggle-switch.uss");
12
- @import url("_foldout.uss");
13
-
14
- /* Common item metadata styles (role, uri, mimetype, etc.) */
15
- .item-metadata {
16
- font-size: 12px;
17
- -unity-font-style: italic;
18
- }
1
+ /* ==========================================================================
2
+ Copilot List Window Common Imports
3
+ Shared imports for Tools, Prompts, and Resources windows
4
+ ========================================================================== */
5
+
6
+ @import url("_base.uss");
7
+ @import url("_typography.uss");
8
+ @import url("_buttons.uss");
9
+ @import url("_forms.uss");
10
+ @import url("_list-view.uss");
11
+ @import url("_toggle-switch.uss");
12
+ @import url("_foldout.uss");
13
+
14
+ /* Common item metadata styles (role, uri, mimetype, etc.) */
15
+ .item-metadata {
16
+ font-size: 12px;
17
+ -unity-font-style: italic;
18
+ }