rust-tauri-apps — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited rust-tauri-apps (Agent Skill) and scored it 96/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 1 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 1 flagged
A bulleted imperative like {match} tells the agent to never reveal, disclose, or mention something to the user. Used adversarially it can instruct the agent to hide its tool calls or lie about what it did — stripping the transparency a user relies on to trust the agent.
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Build Tauri v2 applications with small Rust command surfaces, secure capabilities, explicit IPC contracts, and maintainable distribution workflows.
src-tauri, tauri.conf.json, capabilities, permissions, plugins, frontend invocation code, and CI/release scripts.#[tauri::command] functions.tauri-v2 skill when available for framework-specific current docs; use this skill for Rust architecture, security, testing, and command design.references/tauri-v2-rust-backend.md for command/state/plugin architecture and typed IPC.references/capabilities-security.md for permissions, filesystem/shell risk, secrets, updater, and secure defaults.references/distribution-mobile.md for bundling, updater, sidecars, signing, desktop/mobile packaging, and release checks.serde DTOs at the IPC boundary and convert to domain types inside services.tauri::State for shared app services with clear ownership; avoid global mutable statics.Use repo-native checks first, then add Tauri-specific validation:
cargo fmt --all --check
cargo test --manifest-path src-tauri/Cargo.toml --all-targets
cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets --all-features -- -D warningsFor command changes, add Rust tests around service behavior and frontend tests or contract fixtures for IPC shapes when the app already has a frontend test lane.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.