create-vellaveto 6.0.0 → 6.0.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 +45 -0
- package/package.json +7 -2
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# create-vellaveto
|
|
2
|
+
|
|
3
|
+
Interactive setup wizard for [Vellaveto](https://github.com/vellaveto/vellaveto) — the runtime security engine for AI agent tool calls.
|
|
4
|
+
|
|
5
|
+
## Quick Alternative
|
|
6
|
+
|
|
7
|
+
If you just want protection without a config file, skip the wizard:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
cargo install vellaveto-proxy
|
|
11
|
+
vellaveto-proxy --protect shield -- ./your-mcp-server
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Three levels: `shield` (blocks credentials + dangerous commands), `fortress` (adds exfil + AI config protection), `vault` (default deny). No config file needed.
|
|
15
|
+
|
|
16
|
+
## Setup Wizard
|
|
17
|
+
|
|
18
|
+
For a custom configuration, use the interactive wizard:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx create-vellaveto
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or with your preferred package manager:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm init vellaveto
|
|
28
|
+
yarn create vellaveto
|
|
29
|
+
pnpm create vellaveto
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The wizard walks you through:
|
|
33
|
+
|
|
34
|
+
1. Choose a policy preset (deny-by-default, permissive, enterprise, etc.)
|
|
35
|
+
2. Configure detection settings (injection scanning, DLP)
|
|
36
|
+
3. Set up audit logging
|
|
37
|
+
4. Generate a ready-to-use `vellaveto.toml` config file
|
|
38
|
+
|
|
39
|
+
## Requirements
|
|
40
|
+
|
|
41
|
+
- Node.js 18+
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
See [LICENSING.md](../../LICENSING.md) for repository licensing details.
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vellaveto",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Setup wizard for Vellaveto — MCP Policy Gateway",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"create-vellaveto": "./dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist/"
|
|
10
|
+
"dist/",
|
|
11
|
+
"README.md"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
13
14
|
"build": "tsc",
|
|
@@ -23,6 +24,10 @@
|
|
|
23
24
|
"url": "https://github.com/vellaveto/vellaveto.git",
|
|
24
25
|
"directory": "packages/create-vellaveto"
|
|
25
26
|
},
|
|
27
|
+
"homepage": "https://www.vellaveto.online",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/vellaveto/vellaveto/issues"
|
|
30
|
+
},
|
|
26
31
|
"keywords": [
|
|
27
32
|
"vellaveto",
|
|
28
33
|
"mcp",
|