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.
npx skills add glebis/claude-skills --skill init-tauri-appgit clone --depth 1 https://github.com/glebis/claude-skillsWrote 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.
[](https://agentmods.dev/skills/glebis/claude-skills/init-tauri-app)<a href="https://agentmods.dev/skills/glebis/claude-skills/init-tauri-app"><img src="https://agentmods.dev/badge/skills/glebis/claude-skills/init-tauri-app/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/glebis/claude-skills/init-tauri-app"><img src="https://agentmods.dev/badge/skills/glebis/claude-skills/init-tauri-app.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00094 | $0.01623 |
| Opus 5 | $0.00047 | $0.00812 |
| Sonnet 5 | $0.00019 | $0.00325 |
| Haiku 4.5 | $0.00009 | $0.00162 |
Grade A, and why
init-tauri-app 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
init-tauri-app
Scaffolds a new Tauri v2 project pre-loaded with conventions proven in two production apps (cenno, cull). Delegates version-current boilerplate to the official scaffolder, then applies a durable convention layer and any opt-in modules the user selects.
When to use
- "Start a new Tauri app", "init a tauri project", "scaffold a tauri desktop app".
Prerequisites (verify before scaffolding)
node+npmon PATH (node --version)cargo+rustcon PATH (cargo --version)- macOS + Xcode CLT only required if the Swift-sidecar module is selected
Procedure
1. Gather inputs (AskUserQuestion)
Ask, in one batch:
- App name (kebab-case). Validate
^[a-z][a-z0-9-]*$. - Identifier (reverse-DNS, default
com.glebkalinin.<name>). - Target directory (default
~/ai_projects/<name>). Abort if it exists and is non-empty. - Frontend framework:
react-ts|svelte-kit|vanilla-ts. - Modules (multi-select): CLI+MCP · SQLite · Tray/Updater · Release/Preflight · Swift sidecar.
- JTBD artifact (optional): a path to a
jtbd.json. If not given, the skill auto-discovers./jtbd.jsonthen~/jtbd/<name>/jtbd.json. See Step 1.5.
If Swift sidecar selected but host is non-macOS or xcrun --find swift fails: warn and drop it.
1.5 Ingest JTBD (optional, additive)
- Resolve the artifact, first hit wins: explicit path →
./jtbd.json→~/jtbd/<name>/jtbd.json. If none found, skip this whole step (the scaffold proceeds with empty product context — no error). - Confirm: echo the artifact's
hookand ask the user to confirm before using it. On decline, skip. - Validate: the artifact must parse and have
name,hook,jtbd. If not, warn and skip ingestion (never abort the scaffold).render-jtbd.shexits 3 on invalid input — treat that as "skip". - Pre-fill: if valid, default the app name to
nameand identifier tocom.glebkalinin.<name>(still confirm with the user in Step 1 if not already chosen). - The artifacts are written during Step 3 (core layer) — see the JTBD block there.
What ships with it
47 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/.gitkeep 0 B
- assets/core/AGENTS.md 4.4 KB
- assets/core/capabilities/default.json 217 B
- assets/core/CLAUDE.md 122 B
- assets/core/CONTRIBUTING.md 312 B
- assets/core/gitignore 500 B
- assets/core/mcp.json 123 B
- assets/core/node-version 3 B
- assets/core/README.md 148 B
- assets/core/rust-toolchain.toml 66 B
- assets/core/scripts/check-versions.sh 548 B runs code
- assets/jtbd/agents-product-section.md.template 271 B
- assets/jtbd/fixtures/malformed-jtbd.json 73 B
- assets/jtbd/fixtures/sample-jtbd.json 1.4 KB
- assets/jtbd/guardrails-check.md.template 218 B
- assets/jtbd/jtbd-map.md 1.4 KB
- assets/jtbd/PRODUCT.md.template 1.1 KB
- assets/modules/cli-mcp/capability.json 189 B
- assets/modules/cli-mcp/cargo-deps.toml 238 B
- assets/modules/cli-mcp/cli.rs 331 B
- assets/modules/cli-mcp/INSERT.md 1.2 KB
- assets/modules/cli-mcp/mcp.rs 544 B
- assets/modules/cli-mcp/protocol.rs 576 B
- assets/modules/release-preflight/ci.yml 849 B
- assets/modules/release-preflight/INSERT.md 289 B
- assets/modules/release-preflight/preflight.sh 524 B runs code
- assets/modules/release-preflight/release.sh 4.2 KB runs code
- assets/modules/release-preflight/release.yml 3.6 KB
- assets/modules/sqlite/cargo-deps.toml 56 B
- assets/modules/sqlite/compat_golden.rs 552 B
- assets/modules/sqlite/db.rs 1.2 KB
- assets/modules/sqlite/INSERT.md 351 B
- assets/modules/sqlite/migrations.rs 682 B
- assets/modules/swift-sidecar/build.rs.fragment 245 B
- assets/modules/swift-sidecar/cargo-deps.toml 55 B
- assets/modules/swift-sidecar/INSERT.md 623 B
- assets/modules/swift-sidecar/Package.swift 366 B
- assets/modules/swift-sidecar/sidecar_ffi.rs 692 B
- assets/modules/swift-sidecar/Sidecar.swift 464 B
- assets/modules/tray-updater/cargo-deps.toml 88 B
- assets/modules/tray-updater/conf-fragment.json 315 B
- assets/modules/tray-updater/INSERT.md 1.2 KB
- assets/modules/tray-updater/tray.rs 694 B
- assets/modules/tray-updater/updater.rs 275 B
- scripts/render-jtbd.sh 1.2 KB runs code
- scripts/smoke-jtbd.sh 1.3 KB runs code
- scripts/smoke.sh 588 B runs code
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.
- 6d ago First seen · 105 lines · 94 tokens per session scan A 092f58482503
init-tauri-app is a skill published in the GitHub repository glebis/claude-skills (374 stars, last pushed 8d ago), licensed MIT. It adds 94 tokens to every session and 1,623 once invoked, about $0.0005 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-09-03.
Other skills, from other repositories
compiler-orchestrator
Orchestrate the Rust compiler port end-to-end. Discovers the current frontier, fixes failing passes, ports new passes, reviews, and commits in a loop.
compiler-port
Port a compiler pass from TypeScript to Rust. Gathers context, plans the port, implements in a subagent with test-fix loop, then reviews.
frontend-conventions
Coding conventions, architecture patterns, and testing rules for the SkillHub React frontend. Ensures agents follow Feature-Sliced Design and use the generated OpenAPI types.
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
typescript-react
Apply, review, and explain React conventions from the TypeScript Style Guide. Use automatically for TypeScript and TSX tasks involving prop-derived state, prop typing, component responsibilities, data flow, compound components, or client and server state.
typescript-rules
React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features.