@elizaos/plugin-tailscale 2.0.3-beta.2 → 2.0.3-beta.3
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/package.json +8 -7
- package/registry-entry.json +81 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-tailscale",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"description": "Tunnel plugin for elizaOS — local Tailscale serve/funnel or Eliza Cloud-routed Tailscale auth-key minter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
+
"registry-entry.json",
|
|
34
35
|
"dist"
|
|
35
36
|
],
|
|
36
37
|
"scripts": {
|
|
@@ -46,13 +47,13 @@
|
|
|
46
47
|
"format:check": "bunx @biomejs/biome format ."
|
|
47
48
|
},
|
|
48
49
|
"peerDependencies": {
|
|
49
|
-
"@elizaos/core": "2.0.3-beta.
|
|
50
|
-
"@elizaos/plugin-tunnel": "2.0.3-beta.
|
|
50
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
51
|
+
"@elizaos/plugin-tunnel": "2.0.3-beta.3"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@elizaos/cloud-routing": "2.0.3-beta.
|
|
54
|
-
"@elizaos/core": "2.0.3-beta.
|
|
55
|
-
"@elizaos/plugin-tunnel": "2.0.3-beta.
|
|
54
|
+
"@elizaos/cloud-routing": "2.0.3-beta.3",
|
|
55
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
56
|
+
"@elizaos/plugin-tunnel": "2.0.3-beta.3",
|
|
56
57
|
"zod": "^4.4.3"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
@@ -65,5 +66,5 @@
|
|
|
65
66
|
"publishConfig": {
|
|
66
67
|
"access": "public"
|
|
67
68
|
},
|
|
68
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
69
70
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "tailscale",
|
|
3
|
+
"name": "Tailscale",
|
|
4
|
+
"description": "Tunnel plugin — local Tailscale serve/funnel or Eliza Cloud-routed Tailscale auth-key minter. Mutually exclusive with the ngrok tunnel plugin.",
|
|
5
|
+
"npmName": "@elizaos/plugin-tailscale",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["tunnel", "tailscale", "networking"],
|
|
9
|
+
"config": {
|
|
10
|
+
"TAILSCALE_BACKEND": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"default": "auto",
|
|
15
|
+
"label": "Backend",
|
|
16
|
+
"help": "Backend to use: 'local' (tailscale CLI), 'cloud' (Eliza Cloud-minted ephemeral auth key), or 'auto' (cloud when Eliza Cloud is connected, else local).",
|
|
17
|
+
"advanced": false
|
|
18
|
+
},
|
|
19
|
+
"TAILSCALE_AUTH_KEY": {
|
|
20
|
+
"type": "secret",
|
|
21
|
+
"required": false,
|
|
22
|
+
"sensitive": true,
|
|
23
|
+
"label": "Auth Key",
|
|
24
|
+
"help": "Optional pre-minted Tailscale auth key for the local backend. Most users authenticate once via 'tailscale up' and never set this.",
|
|
25
|
+
"advanced": true
|
|
26
|
+
},
|
|
27
|
+
"TAILSCALE_TAGS": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": false,
|
|
30
|
+
"sensitive": false,
|
|
31
|
+
"default": "tag:eliza-tunnel",
|
|
32
|
+
"label": "Tags",
|
|
33
|
+
"help": "Comma-separated ACL tags applied to the cloud-minted ephemeral key.",
|
|
34
|
+
"advanced": true
|
|
35
|
+
},
|
|
36
|
+
"TAILSCALE_FUNNEL": {
|
|
37
|
+
"type": "boolean",
|
|
38
|
+
"required": false,
|
|
39
|
+
"sensitive": false,
|
|
40
|
+
"default": "False",
|
|
41
|
+
"label": "Use Funnel",
|
|
42
|
+
"help": "When true, use 'tailscale funnel' to expose to the public Internet. When false, use 'tailscale serve' (tailnet-internal only).",
|
|
43
|
+
"advanced": false
|
|
44
|
+
},
|
|
45
|
+
"TAILSCALE_DEFAULT_PORT": {
|
|
46
|
+
"type": "number",
|
|
47
|
+
"required": false,
|
|
48
|
+
"sensitive": false,
|
|
49
|
+
"default": "3000",
|
|
50
|
+
"label": "Default Port",
|
|
51
|
+
"help": "Used when no port is extracted from the user message.",
|
|
52
|
+
"advanced": false
|
|
53
|
+
},
|
|
54
|
+
"TAILSCALE_AUTH_KEY_EXPIRY_SECONDS": {
|
|
55
|
+
"type": "number",
|
|
56
|
+
"required": false,
|
|
57
|
+
"sensitive": false,
|
|
58
|
+
"default": "3600",
|
|
59
|
+
"label": "Auth Key Expiry (seconds)",
|
|
60
|
+
"help": "Expiry hint passed to the cloud auth-key minter.",
|
|
61
|
+
"advanced": true
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"render": {
|
|
65
|
+
"visible": true,
|
|
66
|
+
"pinTo": [],
|
|
67
|
+
"style": "card",
|
|
68
|
+
"icon": "Network",
|
|
69
|
+
"group": "devtools",
|
|
70
|
+
"groupOrder": 6,
|
|
71
|
+
"actions": ["enable", "configure"]
|
|
72
|
+
},
|
|
73
|
+
"resources": {
|
|
74
|
+
"homepage": "https://github.com/eliza-ai/eliza/tree/develop/plugins/plugin-tailscale#readme",
|
|
75
|
+
"repository": "https://github.com/eliza-ai/eliza"
|
|
76
|
+
},
|
|
77
|
+
"dependsOn": [],
|
|
78
|
+
"kind": "plugin",
|
|
79
|
+
"subtype": "devtools",
|
|
80
|
+
"cloudBacked": true
|
|
81
|
+
}
|