Add dioxus and project-uv plugins

Introduce two new plugins: dioxus and project-uv with metadata
READMEs and SKILL documentation and example skill files
Update marketplace.json to advertise both plugins
This commit is contained in:
2026-05-11 23:02:01 +02:00
parent 1b5a7638d7
commit e562b53cc3
8 changed files with 563 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
# dioxus
Per-version reference skills for the [Dioxus](https://dioxuslabs.com/) Rust UI library.
Dioxus has had breaking API changes across minor versions (`cx`, `Scope`, and `use_state` are gone as of 0.7), so each skill is pinned to a specific Dioxus version. Enable the one that matches your project's `Cargo.toml`.
## Skills
- **dioxus-0.7** — Dioxus 0.7+ API reference: components, signals, RSX, assets, routing, fullstack, hydration.
## Install
```
/plugin marketplace add git@git.g4b.org:dirigence/reliquary.git
/plugin install dioxus@reliquary
```
Or in `.claude/settings.json`:
```json
{
"extraKnownMarketplaces": {
"reliquary": {
"source": { "source": "git", "url": "git@git.g4b.org:dirigence/reliquary.git" }
}
},
"enabledPlugins": { "dioxus@reliquary": true }
}
```