agui-tauri-windows-signing

agui-tauri-windows-signing is a skill for Claude Code, Codex from CopilotKit/OpenBot. It costs 202 tokens per session (3,254 once invoked), scanned A, original, MIT.

A workflow for signing Windows application files produced by Tauri, a framework for building desktop apps with web technologies. It uses a DigiCert certificate kept in Azure Key Vault and AzureSignTool, with GitHub OIDC for CI authentication.

In plain words
What is it for?
Use it to configure Tauri's signing command and troubleshoot signing of .exe, .dll, and .msi files in GitHub Actions or another CI workflow.
Why use it?
It helps prevent unsigned or incorrectly signed Windows builds and keeps the certificate's private key out of the build system. It also separates Windows file signing from NuGet, .NET assembly, and Tauri update signatures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to configure Tauri's signing command and troubleshoot signing of .exe, .dll, and .msi files in GitHub Actions or another CI workflow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/copilotkit/openbot/tauri-signing
About the project

OpenBot is a local template for AI coworkers that operate an assigned browser, files, and approved tools, while previewing and recording their actions. Developers clone and customize it to run AG-UI agents as supervised coworkers on their own machines. The catalogue contains two skills for working with the project.

CopilotKit/OpenBot · 5,014 stars · on GitHub · copilotkit.ai

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.

Any agent
npx skills add CopilotKit/OpenBot --skill tauri-signing
Clone the repo
git clone --depth 1 https://github.com/CopilotKit/OpenBot

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 agui-tauri-windows-signing

README.md
[![agentmods](https://agentmods.dev/badge/skills/copilotkit/openbot/tauri-signing/github.svg)](https://agentmods.dev/skills/copilotkit/openbot/tauri-signing)
Your own site
<a href="https://agentmods.dev/skills/copilotkit/openbot/tauri-signing"><img src="https://agentmods.dev/badge/skills/copilotkit/openbot/tauri-signing/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.

agentmods 80×15 button for agui-tauri-windows-signing

Your own site · 80×15
<a href="https://agentmods.dev/skills/copilotkit/openbot/tauri-signing"><img src="https://agentmods.dev/badge/skills/copilotkit/openbot/tauri-signing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 202 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,254 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00202 $0.03254
Opus 5 $0.00101 $0.01627
Sonnet 5 $0.00040 $0.00651
Haiku 4.5 $0.00020 $0.00325

Measured yesterday against content hash c17a9b6c9943, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-17, from the pricing page.

Security

Grade A, and why

agui-tauri-windows-signing 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 yesterday.

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.

Tauri-signing-SKILL.md · 287 lines

How it starts

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

Tauri Windows Signing with Azure Key Vault

Context: what signs what

The org's signing infrastructure has three independent mechanisms. Never conflate them — they use different keys, different tools, and different verification paths:

Mechanism Key Tool Applies to
NuGet author signature DigiCert cert, CN=Tawkit, Inc. — private key in Azure Key Vault (non-exportable, RSA-HSM) NuGetKeyVaultSignTool *.nupkg only
Authenticode (this skill) Same DigiCert cert, same vault AzureSignTool Windows PE binaries: .exe, .dll, .msi (incl. Tauri builds)
Assembly strong-naming AGUI.snk MSBuild .NET assemblies; unrelated to either signature
Tauri updater signature Tauri minisign key pair (NOT the vault cert) tauri signer Update manifests for tauri-plugin-updater

Additional facts that agents routinely get wrong:

  • nuget.org applies its own repository signature automatically on push. The author signature is what flips a package to "signed" on the gallery; it is not needed for Authenticode at all.
  • Symbol packages (*.snupkg) are intentionally not author-signed.
  • The vault certificate: DigiCert Trusted G4 Code Signing RSA4096 SHA384 2021 CA1 issuer chain, OV validation. Because it is OV (not EV), Windows SmartScreen reputation builds per-publisher over signed releases rather than being granted instantly — an unsigned-looking warning on a brand-new app is expected until reputation accrues, and is not a signing failure.
  • The private key never leaves the HSM. Every signature — NuGet or Authenticode — is a keys/sign operation executed inside the vault. Never attempt to export the key or generate a .pfx.

Reference implementation for the NuGet lane (the pattern this skill mirrors): .github/workflows/publish-release.yml (signing step) and sdks/dotnet/docs/signing.md (design doc).

Task: wire signing into a Tauri build

1. Point signCommand at a wrapper script

Read the full file on GitHub · 287 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. yesterday First seen · 287 lines · 202 tokens per session scan A c17a9b6c9943

Subscribe to this mod's changes

agui-tauri-windows-signing is a skill published in the GitHub repository CopilotKit/OpenBot (5,014 stars, last pushed today), licensed MIT. It adds 202 tokens to every session and 3,254 once invoked, about $0.0010 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-16.