tauri-debug-quickstart

tauri-debug-quickstart is a skill for Claude Code, Codex from cesarandreslopez/tauri-agent-tools. It costs 41 tokens per session (1,591 once invoked), scanned A, original, MIT.

A quick-start guide for diagnosing broken Tauri desktop apps, which are desktop programs built with web technology and Rust. It maps common symptoms to tauri-agent-tools commands and starts with a general diagnostic bundle when the cause is unclear.

In plain words
What is it for?
Use it to collect app configuration, operating-system logs, crash reports, data files, process details, capabilities, development-tool information, and health results, then review the generated summary and next steps.
Why use it?
It reduces the time spent choosing unrelated logs or tools by directing you to the first useful check and then to deeper investigation when needed.

Skill for Claude CodeCodex

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 skills/cesarandreslopez/tauri-agent-tools/tauri-debug-quickstart
Any agent
npx skills add cesarandreslopez/tauri-agent-tools --skill tauri-debug-quickstart
Clone the repo
git clone --depth 1 https://github.com/cesarandreslopez/tauri-agent-tools

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tauri-debug-quickstart

README.md
[![agentmods](https://agentmods.dev/badge/skills/cesarandreslopez/tauri-agent-tools/tauri-debug-quickstart.svg)](https://agentmods.dev/skills/cesarandreslopez/tauri-agent-tools/tauri-debug-quickstart)
Your own site
<a href="https://agentmods.dev/skills/cesarandreslopez/tauri-agent-tools/tauri-debug-quickstart"><img src="https://agentmods.dev/badge/skills/cesarandreslopez/tauri-agent-tools/tauri-debug-quickstart.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,591 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.1 $0.00041 $0.01591
Opus 5 $0.00020 $0.00796
Sonnet 5 $0.00008 $0.00318
Haiku 4.5 $0.00004 $0.00159

Measured 5d ago against content hash ebe157774e98, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

tauri-debug-quickstart 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 5d 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.

.agents/skills/tauri-debug-quickstart/SKILL.md · 85 lines

How it starts

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

Tauri Debug Quickstart

When something is wrong with a Tauri app, the first 30 seconds matter — they decide whether you spend the next hour reading the right logs or the wrong ones. This skill points you at the right tauri-agent-tools command for the symptom you're seeing.

The single-command answer

If you don't know where to start, run this first:

tauri-agent-tools diagnose --config ./src-tauri -o ./diagnose-out

diagnose is a best-effort super-command that:

  1. Resolves the app's config + OS data/log paths
  2. Runs a forensics bundle (works even on dead apps — tails app logs for panics, pulls macOS DiagnosticReports, lists app-data files)
  3. If a live dev bridge is reachable, layers /process, /capabilities, /devtools, /health data on top
  4. Writes a master summary.md with detected anomalies and suggested next steps

Then open ./diagnose-out/summary.md and follow the "Next steps" section.

Symptom → command (when you need precision)

Pick the row that matches what's broken. Each command works without the bridge unless noted.

Symptom First command Why
Don't know what's wrong tauri-agent-tools diagnose -o ./diag Everything-bundle; graceful on dead apps
App crashed at startup tauri-agent-tools forensics --config ./src-tauri -o ./forensics Reads app log + DiagnosticReports without needing a live process
App is running but bridge isn't responding tauri-agent-tools probe Detects whether the bridge process is up and shows token-file state
App is running, bridge is up, but webview looks wrong tauri-agent-tools health --json Returns webview_ready + sidecar liveness (richer on bridge v0.7+; degrades to a liveness ping otherwise)
Evidence is scattered across webview/Rust/sidecar logs tauri-agent-tools logs --config ./src-tauri --pretty Merges on-disk log files + the bridge ring buffer into one timestamp-ordered timeline
Need to watch logs live while reproducing tauri-agent-tools logs --follow --pretty Needs bridge; multi-consumer-safe on bridge v0.8+, drain-polling fallback otherwise
What did the sidecar actually spawn (MCP servers, workers)? tauri-agent-tools process-tree --deep --json Walks the real OS descendant tree, including unregistered grandchildren — no bridge needed
Need one shareable archive of everything for a bug report tauri-agent-tools bundle --config ./src-tauri -o ./triage Logs + deep process tree + app-paths + forensics → redacted dir + .tar.gz
A sidecar process is the suspect tauri-agent-tools sidecar tap --schema ./schema.json -- <cmd> Wrap-and-run the sidecar standalone; frame NDJSON; validate envelopes
Need to know exactly which files the app touches tauri-agent-tools app-paths --config ./src-tauri --exists Resolves Tauri 2's per-platform app_data_dir/app_log_dir/etc. + checks existence
Need to audit Tauri capabilities for over-broad permissions tauri-agent-tools config inspect --config ./src-tauri (static) or tauri-agent-tools capabilities audit (live, needs bridge v0.7+) Flags *, fs:allow-all, shell:allow-spawn, etc.
OS-level error visible in Console.app or journalctl tauri-agent-tools os-logs --identifier com.example.app --level error --duration 30000 Filters platform log stream to the Tauri bundle id
Inspector / webview attach tauri-agent-tools webview attach (needs bridge v0.7+) Returns inspector URL or platform-specific hint
What sidecars did this app spawn? tauri-agent-tools process-tree --json (or --deep) Bridge /process lists registered sidecars (v0.7+); --deep walks the OS tree with no bridge

Read the full file on GitHub · 85 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. 5d ago First seen · 85 lines · 41 tokens per session scan A ebe157774e98

Subscribe to this mod's changes

tauri-debug-quickstart is a skill published in the GitHub repository cesarandreslopez/tauri-agent-tools (22 stars, last pushed 11d ago), licensed MIT. It adds 41 tokens to every session and 1,591 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

speicherbereinigung

Evidenzbasierte Windows-Speicherbereinigung mit kontrolliertem Notfallmodus, physischer Belegungsmessung, Prozess- und Entstehungsforensik sowie reversiblen Maßnahmen gegen wiederkehrende Speicherfüller.

ellmos-ai/skills · 54 tokens

email-management

Inbox management workflow — triage, batching, folder strategy, and inbox zero maintenance.

furkangonel/cowrangler · 19 tokens

greptimedb-release

Runbook for publishing a new GreptimeDB version (tag + GitHub release + docs release-note PR) on the upstream GreptimeTeam/greptimedb repo. Use when asked to "release" / "publish" a GreptimeDB version (e.g. v1.1.0, v1.0.3).

GreptimeTeam/greptimedb · 75 tokens

acquiring-disk-image-with-dd-and-dcfldd

Create forensically sound bit-for-bit disk images with dd or dcfldd on a Linux forensic workstation, preserving evidence integrity through hash verification (MD5/SHA) during acquisition. Use when imaging a suspect drive, USB device, or memory card for investigation, preserving volatile disk evidence during incident…

mukul975/Anthropic-Cybersecurity-Skills · 92 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

muapi-media-editing

Edit and enhance images and videos with AI via muapi.ai — prompt-based editing, upscaling, background removal, face swap, lipsync, video effects, and more.

SamurAIGPT/Generative-Media-Skills · 41 tokens