create-vellaveto 6.0.9 → 6.1.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.
- package/README.md +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/generators/helm.js +1 -1
- package/dist/generators/snippets.js +2 -2
- package/dist/wizard.js +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# create-vellaveto
|
|
2
2
|
|
|
3
|
-
Interactive setup wizard for [Vellaveto](https://github.com/
|
|
3
|
+
Interactive setup wizard for [Vellaveto](https://github.com/paolovella/vellaveto) — the agent interaction firewall for AI tool calls.
|
|
4
4
|
|
|
5
5
|
## Quick Alternative
|
|
6
6
|
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const VERSION = "6.0.0";
|
|
2
2
|
export declare const IMAGE_TAG = "6.0.0";
|
|
3
|
-
export declare const IMAGE_REPO = "ghcr.io/
|
|
3
|
+
export declare const IMAGE_REPO = "ghcr.io/paolovella/vellaveto";
|
|
4
4
|
export declare const DEFAULT_PORT = 3000;
|
|
5
5
|
export declare const DEFAULT_PROXY_PORT = 3001;
|
|
6
6
|
export declare const BANNER = "\n __ __ _ _ _\n \\ \\ / /__| | | __ ___ _____| |_ ___\n \\ \\ / / _ \\ | |/ _` \\ \\ / / _ \\ __/ _ \\\n \\ V / __/ | | (_| |\\ V / __/ || (_) |\n \\_/ \\___|_|_|\\__,_| \\_/ \\___|\\__\\___/\n\n MCP Policy Gateway \u2014 Setup Wizard v6.0.0\n";
|
package/dist/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const VERSION = "6.0.0";
|
|
2
2
|
export const IMAGE_TAG = "6.0.0";
|
|
3
|
-
export const IMAGE_REPO = "ghcr.io/
|
|
3
|
+
export const IMAGE_REPO = "ghcr.io/paolovella/vellaveto";
|
|
4
4
|
export const DEFAULT_PORT = 3000;
|
|
5
5
|
export const DEFAULT_PROXY_PORT = 3001;
|
|
6
6
|
export const BANNER = `
|
package/dist/generators/helm.js
CHANGED
|
@@ -23,7 +23,7 @@ export function generateHelmFiles(state) {
|
|
|
23
23
|
function generateValues(state) {
|
|
24
24
|
let yaml = "";
|
|
25
25
|
yaml += "# Vellaveto Helm values — generated by setup wizard\n";
|
|
26
|
-
yaml += "# Usage: helm install vellaveto oci://ghcr.io/
|
|
26
|
+
yaml += "# Usage: helm install vellaveto oci://ghcr.io/paolovella/vellaveto/chart -f vellaveto-values.yaml\n\n";
|
|
27
27
|
yaml += `image:\n`;
|
|
28
28
|
yaml += ` tag: "${IMAGE_TAG}"\n\n`;
|
|
29
29
|
yaml += "securityContext:\n";
|
|
@@ -26,7 +26,7 @@ export function installCommand(language) {
|
|
|
26
26
|
case "typescript":
|
|
27
27
|
return "npm install @vellaveto-sdk/typescript";
|
|
28
28
|
case "go":
|
|
29
|
-
return "go get github.com/
|
|
29
|
+
return "go get github.com/paolovella/vellaveto/sdk/go";
|
|
30
30
|
case "java":
|
|
31
31
|
return "<!-- Add to pom.xml -->\n<dependency>\n <groupId>com.vellaveto</groupId>\n <artifactId>vellaveto-java-sdk</artifactId>\n <version>6.0.0</version>\n</dependency>";
|
|
32
32
|
case "skip":
|
|
@@ -86,7 +86,7 @@ import (
|
|
|
86
86
|
"fmt"
|
|
87
87
|
"log"
|
|
88
88
|
|
|
89
|
-
vellaveto "github.com/
|
|
89
|
+
vellaveto "github.com/paolovella/vellaveto/sdk/go"
|
|
90
90
|
)
|
|
91
91
|
|
|
92
92
|
func main() {
|
package/dist/wizard.js
CHANGED
|
@@ -17,7 +17,7 @@ import { detectionStep } from "./steps/detection.js";
|
|
|
17
17
|
import { auditStep } from "./steps/audit.js";
|
|
18
18
|
import { complianceStep } from "./steps/compliance.js";
|
|
19
19
|
import { sdkStep } from "./steps/sdk.js";
|
|
20
|
-
const REPO_URL = "https://github.com/
|
|
20
|
+
const REPO_URL = "https://github.com/paolovella/vellaveto.git";
|
|
21
21
|
function createDefaultState() {
|
|
22
22
|
return {
|
|
23
23
|
deploymentTarget: "docker",
|
|
@@ -178,7 +178,7 @@ function nextSteps(state, absDir) {
|
|
|
178
178
|
lines.push(` kubectl create secret generic vellaveto-api-key \\`);
|
|
179
179
|
lines.push(` --from-literal=api-key='${state.apiKey}'`);
|
|
180
180
|
lines.push(` kubectl apply -f ${absDir}/vellaveto-configmap.yaml`);
|
|
181
|
-
lines.push(` helm install vellaveto oci://ghcr.io/
|
|
181
|
+
lines.push(` helm install vellaveto oci://ghcr.io/paolovella/vellaveto/chart \\`);
|
|
182
182
|
lines.push(` -f ${absDir}/vellaveto-values.yaml`);
|
|
183
183
|
break;
|
|
184
184
|
case "source":
|
|
@@ -190,6 +190,6 @@ function nextSteps(state, absDir) {
|
|
|
190
190
|
break;
|
|
191
191
|
}
|
|
192
192
|
lines.push("");
|
|
193
|
-
lines.push(pc.dim("Documentation: https://github.com/
|
|
193
|
+
lines.push(pc.dim("Documentation: https://github.com/paolovella/vellaveto"));
|
|
194
194
|
return lines.join("\n");
|
|
195
195
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vellaveto",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.1",
|
|
4
4
|
"description": "Setup wizard for Vellaveto — MCP Policy Gateway",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"license": "SEE LICENSE IN LICENSE",
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
24
|
-
"url": "https://github.com/
|
|
24
|
+
"url": "https://github.com/paolovella/vellaveto.git",
|
|
25
25
|
"directory": "packages/create-vellaveto"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://vellaveto.online",
|
|
28
28
|
"bugs": {
|
|
29
|
-
"url": "https://github.com/
|
|
29
|
+
"url": "https://github.com/paolovella/vellaveto/issues"
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
32
32
|
"vellaveto",
|