agentuity-vscode 0.1.33 → 0.1.35

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.
package/dist/extension.js CHANGED
@@ -15498,27 +15498,6 @@ function registerSetupCommands(context) {
15498
15498
  terminal.show();
15499
15499
  })
15500
15500
  );
15501
- context.subscriptions.push(
15502
- vscode28.commands.registerCommand("agentuity.generateSkills", async () => {
15503
- const workspaceFolder = vscode28.workspace.workspaceFolders?.[0];
15504
- if (!workspaceFolder) {
15505
- vscode28.window.showErrorMessage("No workspace folder open");
15506
- return;
15507
- }
15508
- const outputPath = await vscode28.window.showInputBox({
15509
- prompt: "Output directory for generated skills",
15510
- value: workspaceFolder.uri.fsPath,
15511
- placeHolder: "/path/to/output"
15512
- });
15513
- if (!outputPath) {
15514
- return;
15515
- }
15516
- const terminal = vscode28.window.createTerminal("Agentuity Skills");
15517
- terminal.sendText(`agentuity ai skills generate --output "${outputPath}"`);
15518
- terminal.show();
15519
- vscode28.window.showInformationMessage("Generating AI skills...");
15520
- })
15521
- );
15522
15501
  }
15523
15502
  function registerDeployCommand(context) {
15524
15503
  context.subscriptions.push(
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "agentuity-vscode",
3
3
  "displayName": "Agentuity VSCode Extension",
4
4
  "description": "Build, deploy, and manage AI agents with Agentuity",
5
- "version": "0.1.33",
5
+ "version": "0.1.35",
6
6
  "publisher": "agentuity",
7
7
  "license": "Apache-2.0",
8
8
  "repository": {
@@ -209,11 +209,6 @@
209
209
  "title": "Create Custom Agents for Background Use",
210
210
  "category": "Agentuity"
211
211
  },
212
- {
213
- "command": "agentuity.generateSkills",
214
- "title": "Generate AI Skills",
215
- "category": "Agentuity"
216
- },
217
212
  {
218
213
  "command": "agentuity.sandbox.refresh",
219
214
  "title": "Refresh Sandboxes",
package/src/extension.ts CHANGED
@@ -200,32 +200,6 @@ function registerSetupCommands(context: vscode.ExtensionContext): void {
200
200
  terminal.show();
201
201
  })
202
202
  );
203
-
204
- context.subscriptions.push(
205
- vscode.commands.registerCommand('agentuity.generateSkills', async () => {
206
- const workspaceFolder = vscode.workspace.workspaceFolders?.[0];
207
- if (!workspaceFolder) {
208
- vscode.window.showErrorMessage('No workspace folder open');
209
- return;
210
- }
211
-
212
- const outputPath = await vscode.window.showInputBox({
213
- prompt: 'Output directory for generated skills',
214
- value: workspaceFolder.uri.fsPath,
215
- placeHolder: '/path/to/output',
216
- });
217
-
218
- if (!outputPath) {
219
- return;
220
- }
221
-
222
- const terminal = vscode.window.createTerminal('Agentuity Skills');
223
- terminal.sendText(`agentuity ai skills generate --output "${outputPath}"`);
224
- terminal.show();
225
-
226
- vscode.window.showInformationMessage('Generating AI skills...');
227
- })
228
- );
229
203
  }
230
204
 
231
205
  function registerDeployCommand(context: vscode.ExtensionContext): void {