@burdenoff/vibe-plugin-ui-ssh 1.0.0 → 1.1.0

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/README.md CHANGED
@@ -19,6 +19,7 @@ vibe plugin install @burdenoff/vibe-plugin-ui-ssh
19
19
  ## Usage
20
20
 
21
21
  Once installed, the SSH Manager UI is available at:
22
+
22
23
  - Embedded: `{agentUrl}/ui/ui-ssh` (loaded via iframe in VibeControls MFE)
23
24
  - Direct: `{agentUrl}/ui/ui-ssh?apiKey={your-api-key}`
24
25
 
package/dist/plugin.js CHANGED
@@ -1,15 +1,13 @@
1
1
  // @bun
2
2
  // src/plugin.ts
3
- import { join, dirname } from "path";
4
- import { fileURLToPath } from "url";
5
- var __dirname2 = dirname(fileURLToPath(import.meta.url));
3
+ import { join } from "path";
6
4
  var vibePlugin = {
7
5
  name: "ui-ssh",
8
6
  version: "1.0.0",
9
7
  description: "SSH management web UI",
10
8
  tags: ["frontend"],
11
9
  ui: {
12
- staticDir: join(__dirname2, "..", "dist"),
10
+ staticDir: join(import.meta.dir, "..", "dist"),
13
11
  title: "SSH Manager"
14
12
  }
15
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/vibe-plugin-ui-ssh",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "main": "./dist/plugin.js",
6
6
  "description": "SSH management UI plugin for VibeControls Agent",