@getpaseo/cli 0.5.2 → 0.6.1
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.
|
@@ -142,9 +142,12 @@ declare module "@getpaseo/plugin" {
|
|
|
142
142
|
agentId: string;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
export type PluginPanelLocation = "workspace" | "explorer";
|
|
146
|
+
export interface PluginOpenPanelOptions { location?: PluginPanelLocation; }
|
|
147
|
+
|
|
145
148
|
export type PluginWorkspacePanelContribution =
|
|
146
|
-
| { id: string; title: string; icon: string; context: "workspace"; Component: ComponentType<PluginWorkspacePanelProps> }
|
|
147
|
-
| { id: string; title: string; icon: string; context: "agent"; Component: ComponentType<PluginAgentPanelProps> };
|
|
149
|
+
| { id: string; title: string; icon: string; locations?: readonly PluginPanelLocation[]; context: "workspace"; Component: ComponentType<PluginWorkspacePanelProps> }
|
|
150
|
+
| { id: string; title: string; icon: string; locations?: readonly PluginPanelLocation[]; context: "agent"; Component: ComponentType<PluginAgentPanelProps> };
|
|
148
151
|
|
|
149
152
|
export interface PluginSidebarContribution {
|
|
150
153
|
id: string;
|
|
@@ -192,14 +195,14 @@ declare module "@getpaseo/plugin" {
|
|
|
192
195
|
export interface PluginWorkspaceCommandContext extends PluginCommandCapabilities {
|
|
193
196
|
context: "workspace";
|
|
194
197
|
workspace: PluginWorkspaceSnapshot;
|
|
195
|
-
openPanel(id: string): void;
|
|
198
|
+
openPanel(id: string, options?: PluginOpenPanelOptions): void;
|
|
196
199
|
}
|
|
197
200
|
|
|
198
201
|
export interface PluginAgentCommandContext extends PluginCommandCapabilities {
|
|
199
202
|
context: "agent";
|
|
200
203
|
workspace: PluginWorkspaceSnapshot;
|
|
201
204
|
agent: PluginAgentSnapshot;
|
|
202
|
-
openPanel(id: string): void;
|
|
205
|
+
openPanel(id: string, options?: PluginOpenPanelOptions): void;
|
|
203
206
|
}
|
|
204
207
|
|
|
205
208
|
export type PluginCommandCenterItemContribution =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpaseo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Paseo CLI - control your AI coding agents from the command line",
|
|
5
5
|
"bin": {
|
|
6
6
|
"paseo": "bin/paseo"
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@clack/prompts": "^1.0.0",
|
|
31
|
-
"@getpaseo/client": "0.
|
|
32
|
-
"@getpaseo/protocol": "0.
|
|
33
|
-
"@getpaseo/server": "0.
|
|
31
|
+
"@getpaseo/client": "0.6.1",
|
|
32
|
+
"@getpaseo/protocol": "0.6.1",
|
|
33
|
+
"@getpaseo/server": "0.6.1",
|
|
34
34
|
"chalk": "^5.3.0",
|
|
35
35
|
"commander": "^12.0.0",
|
|
36
36
|
"mime-types": "^2.1.35",
|