Sign Windows executables with Authenticode using signtool, supporting EV and standard certificates
Signs Windows executables with Authenticode certificates using signtool for secure distribution.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSign Windows executables with Authenticode using signtool. This skill configures code signing for Windows applications with standard and EV certificates, timestamping, and CI/CD integration.
{
"type": "object",
"properties": {
"executablePath": { "type": "string" },
"certificateSource": { "enum": ["file", "store", "azure-keyvault", "digicert"] },
"timestampServer": { "type": "string" },
"hashAlgorithm": { "enum": ["SHA256", "SHA1", "dual"] }
},
"required": ["executablePath"]
}
# Sign with PFX file
signtool sign /f certificate.pfx /p password /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 MyApp.exe
# Sign with certificate store
signtool sign /n "My Company" /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 MyApp.exe
# Sign with Azure Key Vault
AzureSignTool sign -kvu https://myvault.vault.azure.net -kvi $AZURE_CLIENT_ID -kvt $AZURE_TENANT_ID -kvs $AZURE_CLIENT_SECRET -kvc MyCertificate -tr http://timestamp.digicert.com -td sha256 MyApp.exe
signtool verify /pa /v MyApp.exe
msix-package-generatorcode-signing-setup processActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.