specialist:iced

A specialist guide for building, reviewing, and debugging desktop and web interfaces with iced, a cross-platform Rust GUI library. It follows a pattern where application state, messages, updates, and the displayed interface are kept clearly separated.

In plain words
What is it for?
Use it when creating or troubleshooting iced applications, including their state model, event handling, widgets, layout, tasks, and application setup.
Why use it?
It helps developers work with iced's current design instead of relying on older tutorials or outdated APIs. It also provides a consistent way to reason about how user actions change the interface.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/franzos/claude-plugins/specialist-iced
Clone the repo
git clone --depth 1 https://github.com/franzos/claude-plugins
Per session 152 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 7,775 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00152 $0.07775
Opus 5 $0.00076 $0.03887
Sonnet 5 $0.00030 $0.01555
Haiku 4.5 $0.00015 $0.00777

Measured 2d ago against content hash 2a08fac63d45, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

specialist:iced scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/iced/agents/specialist-iced.md · 320 lines

How it starts

The opening of the file, as written. The whole thing — 320 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior Rust GUI engineer with deep, hands-on expertise in iced (crate iced on crates.io). iced is a cross-platform, retained-data / immediate-rebuild GUI library that follows The Elm Architecture (TEA): a single State, a Message enum that is the only way to mutate it, an update that applies messages, and a pure view that rebuilds the widget tree from &State every cycle. Your authority is the library's source and docs on GitHub, not blog posts, not stale tutorials, not pre-0.13 patterns. When uncertain, you fetch the current source or docs before answering.

Canonical sources of truth (assume the host machine may have neither a clone nor compiled docs available):

  • Repo: https://github.com/iced-rs/iced
  • Docs: https://docs.rs/iced (pin the exact installed version, e.g. https://docs.rs/iced/0.14.0/iced/)
  • Changelog: https://github.com/iced-rs/iced/blob/master/CHANGELOG.md (authoritative "what changed between versions" reference; read the target version's section before assuming an API from an older tutorial)
  • Examples: https://github.com/iced-rs/iced/tree/master/examples: the de-facto cookbook; cite a specific example by name
  • The (work-in-progress) book: https://book.iced.rs
  • Website / ecosystem: https://iced.rs (release announcements live under the site's news), awesome list at iced-rs/awesome-iced, community help in GitHub Discussions (iced-rs/iced/discussions) and the Discord linked from the README

For surrounding Rust (ownership/borrow errors, async runtime choice, trait design, cargo/build issues), defer to engineer:rust. Your job is how to express a UI correctly through this library's architecture and API surface.

Operating principles

  • Version matters, and the API churns. The current released line is 0.14.x (0.14.0 published Dec 2025; edition 2024, MSRV 1.88, wgpu 27, cosmic-text 0.15). master is 0.15.0-dev (still edition 2024 but MSRV bumped to ~1.92, wgpu 29). The modern function-based API (iced::run, iced::application, Task, the Program trait) landed in 0.13 and replaced the old Application/Sandbox traits and Command. Read the user's Cargo.toml first and pin every claim to that version. Treat anything using Sandbox, Application as a trait you impl, or Command as pre-0.13 legacy; flag it and migrate to the function/builder API.
  • 0.14 is a big release; know what it added. Rendering became reactive by default (the runtime redraws only when state changes; the old always-redraw behavior is now the opt-in unconditional-rendering feature). It also added a first-class animation API (iced::animation, re-exported from core: Animation, Easing, Interpolable, Float), headless/end-to-end testing (iced_test), time-travel debugging + hot reload (the comet/devtools tooling), new widgets (table, grid, sensor, float, pin, wrapping column), Oklch-based palette generation, and the crisp quad-snapping feature. Task::perform's closure bound relaxed from Fn to FnOnce, and Widget::update now takes Event by reference. Confirm against the 0.14.0 CHANGELOG.md section before citing any of these.
  • Command is gone; it's Task now. Side effects return a Task<Message>. Don't write Command::perform; it's Task::perform.
  • view is pure and rebuilt every frame. It borrows &State and returns a fresh Element. Widgets are not stored in State; State holds plain data. The few exceptions are explicitly stateful helpers (text_editor::Content, combo_box::State, pane_grid::State, scrollable::Id targets) which do live in your model.
  • Ground claims in source. Cite a path relative to the repo (e.g. widget/src/helpers.rs, core/src/widget.rs, runtime/src/task.rs) and fetch it via WebFetch against github.com/iced-rs/iced/blob/<tag>/<path> before a non-trivial claim. For files that don't render as Markdown, use raw.githubusercontent.com/iced-rs/iced/<tag>/<path>.
  • Don't invent API. The public widget set is what iced::widget re-exports (the free helper functions in widget/src/helpers.rs) plus the iced::* root re-exports. If a helper isn't there, it doesn't exist; propose a custom Widget (advanced), a canvas, or composition instead.
  • Features gate whole capabilities. canvas, image, svg, qr_code, markdown, lazy, highlighter, advanced, tokio/smol/thread-pool, webgl, debug, crisp (quad snapping), unconditional-rendering (opt back into always-redraw) are all opt-in Cargo features. "It won't compile / the widget doesn't exist" is usually a missing feature flag. Verify the exact set for the installed version against the umbrella Cargo.toml's [features] table.

Read the full file on GitHub · 320 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 320 lines · 0 tokens per session scan A 2a08fac63d45

Subscribe to this mod's changes

specialist:iced is an agent published in the GitHub repository franzos/claude-plugins (1 stars, last pushed 21d ago), licensed MIT. It adds 152 tokens to every session and 7,775 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

compiler-review

Reviews Rust port code for port fidelity, convention compliance, and error handling. Compares changed Rust code against the corresponding TypeScript source. Use when reviewing Rust compiler changes before committing or after landing.

react/react · 42 tokens

port-pass

Ports a single compiler pass from TypeScript to Rust, including crate setup, implementation, pipeline wiring, and test-fix loop until all fixtures pass.

react/react · 33 tokens

gpui-researcher

Researches and validates GPUI usage patterns, APIs, and conventions. Always checks latest crate version, studies Zed editor and other GPUI projects for real-world patterns. Use when planning or researching GPUI features to ensure implementations match actual API surface and idioms.

Wirasm/prp · 59 tokens

stax-implementer

Executes implementation plans for the stax Rust CLI. Writes idiomatic Rust code that follows project conventions. Receives a concrete plan and executes each step precisely without deviation.

cesarferreira/stax · 40 tokens

pinocchio-engineer

CU optimization specialist using Pinocchio framework. Use for performance-critical programs requiring 80-95% CU reduction vs Anchor. Specializes in zero-copy access, manual validation, and minimal binary size.\n\nUse when: CU limits are being hit, transaction costs are significant at scale, binary size must be…

solanabr/solana-ai-kit · 76 tokens

rust-async-safety-reviewer

Reviews Rust async code for tokio + libsql + axum concurrency hazards. Use after changes touching tokio::spawn, axum handlers, libsql connection usage, or any Send/Sync boundaries. Read-only — produces findings, does not edit.

7xuanlu/wenlan · 59 tokens