Marketplace backend (agor-pro/src/marketplace.rs): fetch catalog from GitHub, download+verify+extract plugins, install/uninstall/update with SHA-256 checksum verification and path traversal protection. 6 Tauri plugin commands. PluginMarketplace.svelte: Browse/Installed tabs, search, plugin cards with permission badges, one-click install/uninstall/update. Plugin catalog repo: agents-orchestrator/agor-plugins (3 seed plugins). Plugin scaffolding: scripts/plugin-init.sh. 7 marketplace vitest tests, 3 Rust tests.
16 lines
459 B
TOML
16 lines
459 B
TOML
[package]
|
|
name = "agor-pro"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Commercial plugin for Agents Orchestrator"
|
|
license = "LicenseRef-Commercial"
|
|
|
|
[dependencies]
|
|
agor-core = { path = "../agor-core" }
|
|
tauri = { version = "2.10.3", features = [] }
|
|
rusqlite = { version = "0.31", features = ["bundled-full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
dirs = "5"
|
|
tokio = { version = "1", features = ["process"] }
|