Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

dioxusdioxus 搜索

Agent Skill

dioxus 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dioxus(dioxus 搜索)
来源仓库:https://github.com/nevaberry/nevaberry-plugins
仓库路径:skills/dioxus
安装命令:
npx skills add nevaberry/nevaberry-plugins --skill "dioxus"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add nevaberry/nevaberry-plugins --skill "dioxus"

简介

dioxus 用于发现并安装其他 AI 代理技能,扩展宿主功能集。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的技能搜索场景。
  • 通过 npx skills add 命令从 nevaberry-plugins 仓库安装。
  • 使用前需确认网络连通性与技能仓库的可信度。
  • 建议查看原始仓库的 skill 目录以了解可用技能列表。

SKILL.md

name
Dioxus
description
This skill should be used when asking about "Dioxus", "dioxus framework", "Rust UI framework", "RSX macro", "dioxus components", "dioxus signals", "hot reload in Dioxus", "WASM splitting", "wasm_split macro", "Manganis assets", "asset! macro", "dioxus Stores", "nested reactivity", "dioxus renderers", "WriteMutations", or when working on a Rust web/UI project using Dioxus.
version
0.7.3

Dioxus 0.7.3 Knowledge Patch

Claude's baseline knowledge covers Dioxus through 0.6.3. This skill provides 0.7.3 features.

Quick Reference

New in 0.7.3

FeatureDescription
Subsecond Hot-PatchingFull Rust code hot-reload via jump table
WASM SplittingLazy-load chunks for faster initial load
Manganis Assetsasset!() macro with optimization & cache-busting
StoresNested reactivity with path-based subscriptions

Subsecond Hot-Patching

Full Rust hot-reload without restart. Functions called through jump table that gets patched.

// Standard Dioxus - automatic
fn main() {
    dioxus::launch(app);
}

// Non-Dioxus apps
fn main() {
    dioxus_devtools::connect_subsecond();
    loop {
        dioxus_devtools::subsecond::call(|| handle_request());
    }
}

Limitations: No struct changes (size/alignment), thread-locals reset, only tip crate patches.

See references/subsecond-hotpatch.md.

WASM Code Splitting

Split large WASM binaries into lazy-loaded chunks.

#[wasm_split(admin_panel)]
async fn load_admin_panel() -> AdminPanel {
    AdminPanel::new()  // In separate module_admin_panel.wasm
}

async fn handle_route(route: Route) {
    if let Route::Admin = route {
        let panel = load_admin_panel().await;
        panel.render();
    }
}

Key points: Split points must be async, memory shared, requires --emit-relocs.

See references/wasm-split.md.

Manganis Assets

Compile-time asset management with optimization.

let img = asset!("/assets/image.png");
let css = asset!("/assets/style.css", AssetOptions::css().minified());

rsx! {
    img { src: "{img}" }
    link { rel: "stylesheet", href: "{css}" }
}

CSS Modules:

css_module!(Styles = "/my.module.css", AssetOptions::css_module());
rsx! { div { class: Styles::header } }

See references/manganis-assets.md.

Stores (Nested Reactivity)

Granular path-based subscriptions for nested data.

ScenarioUse
Scalar stateSignal
Nested structures with granular updatesStore
#[derive(Store, Clone)]
struct TodoItem {
    checked: bool,
    contents: String,
}

let store = Store::new(TodoItem { checked: false, contents: "Buy milk".into() });

// Subscribe only to `checked` field
let checked = store.checked();
rsx! { input { checked: checked.read() } }

// Changing `contents` won't re-render above
store.contents().set("Buy eggs".into());

See references/stores-signals.md.

Renderers

RendererPackageUse Case
Webdioxus-webWASM/browser via Sledgehammer JS
Desktopdioxus-desktopWry/Tao webview
Nativedioxus-nativeBlitz/Vello GPU (not a browser)
LiveViewdioxus-liveviewWebSocket streaming
SSRdioxus-ssrServer-side HTML rendering

All implement WriteMutations trait.

See references/renderers.md.

Workspace Structure

packages/
├── dioxus/           # Main re-export crate
├── core/             # VirtualDOM, components, diffing
├── rsx/              # RSX macro parsing
├── signals/          # Reactive state (Signal, Memo, Store)
├── hooks/            # Built-in hooks
├── router/           # Type-safe routing
├── fullstack/        # SSR, hydration, #[server]
├── cli/              # `dx` build tool
├── web/              # WASM renderer
├── desktop/          # Wry/Tao webview
├── native/           # Blitz/Vello GPU renderer
├── liveview/         # WebSocket streaming
├── manganis/         # asset!() macro
├── subsecond/        # Hot-patching system
└── wasm-split/       # WASM code splitting

Patterns (Unchanged from 0.5-0.6)

Components:

#[component]
fn MyComponent(name: String) -> Element {
    let mut count = use_signal(|| 0);
    rsx! { button { onclick: move |_| count += 1, "{name}: {count}" } }
}

Server Functions:

#[server]
async fn get_data(id: i32) -> Result<Data, ServerFnError> {
    // Runs on server, auto-RPC from client
}

Routing:

#[derive(Routable, Clone)]
enum Route {
    #[route("/")]
    Home {},
    #[route("/blog/:id")]
    Blog { id: usize },
}

Architecture

  • WriteMutations: Trait all renderers implement for DOM changes
  • Generational-box: Provides Copy semantics for signals
  • ReactiveContext: Tracks signal reads for subscription
  • Template-based: RSX compiles to static templates, only dynamic parts diffed

Reference Files

FileContents
references/subsecond-hotpatch.mdHot-patching architecture, ASLR, limitations
references/wasm-split.mdWASM splitting pipeline, runtime loader
references/manganis-assets.mdAsset processing, binary patching, CSS modules
references/stores-signals.mdStore derive, subscription tree, memory model
references/renderers.mdWriteMutations trait, renderer differences

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

29.04%
按下载量换算46

Claude Code

20.97%
按下载量换算33

Antigravity

17.71%
按下载量换算28

Gemini CLI

11.95%
按下载量换算19

github-copilot

8.21%
按下载量换算13

Cursor

3.48%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills