e562b53cc3
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
30 lines
808 B
Markdown
30 lines
808 B
Markdown
# 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 }
|
|
}
|
|
```
|