@ziuus/vanta 0.10.37 → 0.10.39
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 +38 -2
- package/bin/vanta-bin +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,11 +10,18 @@ A fast, aesthetic terminal system dashboard in Rust. The most complete keyboard-
|
|
|
10
10
|
[](https://github.com/ziuus/vanta/actions/workflows/ci.yml)
|
|
11
11
|
[](https://github.com/ziuus/vanta/releases)
|
|
12
12
|
[](LICENSE)
|
|
13
|
-
[](https://github.com/ziuus/vanta-integrations)
|
|
14
|
+
[](https://vanta-website-omega.vercel.app)
|
|
14
15
|
|
|
15
16
|
<br />
|
|
16
17
|
|
|
17
|
-
<
|
|
18
|
+
<a href="https://vanta-website-omega.vercel.app">
|
|
19
|
+
<video src="https://raw.githubusercontent.com/ziuus/vanta/main/docs/vanta-demo.mp4" autoplay loop muted playsinline width="900"></video>
|
|
20
|
+
</a>
|
|
21
|
+
|
|
22
|
+
<p align="center">
|
|
23
|
+
<em>Live terminal dashboard in action. <a href="https://github.com/ziuus/vanta/releases/download/v0.10.38/vanta-demo.mp4">Watch 1080p 60FPS video</a> • <a href="https://vanta-website-omega.vercel.app">Visit Website</a></em>
|
|
24
|
+
</p>
|
|
18
25
|
|
|
19
26
|
</div>
|
|
20
27
|
|
|
@@ -198,6 +205,19 @@ You can easily load custom themes dynamically without recompiling Vanta.
|
|
|
198
205
|
```
|
|
199
206
|
4. Press `T` in Vanta to cycle to it, or set it explicitly in your `config.toml` (`theme = "cyberpunk"`).
|
|
200
207
|
|
|
208
|
+
## 🔌 Extensions & Plugins
|
|
209
|
+
|
|
210
|
+
- **Configuration:** Run `vanta config` to open the interactive settings editor.
|
|
211
|
+
- **First-time Setup:** The same setup menu runs automatically when starting Vanta for the first time.
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
Vanta is fully extensible via WebAssembly (WASM). You can install community widgets, or build your own!
|
|
215
|
+
|
|
216
|
+
- **Install via Menu:** Run `vanta menu` to browse and install extensions interactively.
|
|
217
|
+
- **Local Dev:** Use `vanta link /path/to/my_widget.wasm` to instantly test your custom plugin locally without publishing it.
|
|
218
|
+
|
|
219
|
+
Read more about building plugins at the [vanta-integrations](https://github.com/ziuus/vanta-integrations) repository.
|
|
220
|
+
|
|
201
221
|
## Configuration & Customization
|
|
202
222
|
|
|
203
223
|
Vanta is highly configurable via `~/.config/vanta/config.toml`. You can:
|
|
@@ -222,6 +242,22 @@ and never blocks on I/O.
|
|
|
222
242
|
| Media | MPRIS over D-Bus (`dbus` crate) |
|
|
223
243
|
| Audio viz | `cava` raw output, idle wave fallback |
|
|
224
244
|
|
|
245
|
+
## 🧩 Creating Plugins & Extensions
|
|
246
|
+
|
|
247
|
+
Want to build your own custom widgets (like a Crypto tracker or a File Space viewer)? Vanta supports a powerful, secure WebAssembly (WASM) plugin system via Extism.
|
|
248
|
+
|
|
249
|
+
Check out the **[Vanta Extension Developer Guide (EXTENSIONS.md)](EXTENSIONS.md)** to learn how to:
|
|
250
|
+
- Structure a new Rust WASM plugin out of the box.
|
|
251
|
+
- Compile and test your plugin locally (`vanta link`).
|
|
252
|
+
- Publish your plugin to the community registry (`vanta-integrations`).
|
|
253
|
+
|
|
254
|
+
## 🤖 AI Agent Integration
|
|
255
|
+
|
|
256
|
+
Vanta is explicitly designed to be modified and configured by AI agents (like Cursor, Claude, or Copilot). We provide dedicated skill/prompt files that you can feed directly into your AI:
|
|
257
|
+
|
|
258
|
+
- **For End Users (Configuration):** Provide the **[VANTA_CONFIG_SKILL.md](VANTA_CONFIG_SKILL.md)** file to your AI. It teaches the agent how to build gorgeous 2D dashboard grids, customize themes, set up performance profiles, and write your `config.toml`.
|
|
259
|
+
- **For Developers (WASM Plugins):** Provide the **[AGENTS.md](AGENTS.md)** file to your AI. It acts as a complete architecture and API guide, teaching the agent how to write Extism WASM widgets, hook into the host Key-Value mailbox, and compile plugins for Vanta.
|
|
260
|
+
|
|
225
261
|
## Contributing
|
|
226
262
|
|
|
227
263
|
Issues and PRs welcome — bug reports, new themes, new panels, or a GPU vendor
|
package/bin/vanta-bin
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziuus/vanta",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.39",
|
|
4
4
|
"description": "Aesthetic Rust TUI system dashboard — CPU, memory, disk, network, GPU, processes, now-playing, clock, file manager, notes and visualizer in one terminal pane",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vanta": "bin/vanta.js"
|