Validate EV code signing certificate chain and timestamp for Windows SmartScreen
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill ev-certificate-validator --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ev Certificate Validator?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-ev-certificate-validator-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: ev-certificate-validator
description: Validate EV code signing certificate chain and timestamp for Windows SmartScreen
allowed-tools: Read, Grep, Bash
tags: [windows, codesigning, ev-certificate, security, validation]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-ui-frameworks, skill-area:cross-platform-desktop]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# ev-certificate-validator
Validate EV (Extended Validation) code signing certificate chain and timestamp to ensure Windows SmartScreen compatibility.
## Capabilities
- Verify certificate chain validity
- Check timestamp presence and validity
- Validate EV certificate attributes
- Check certificate expiration
- Verify signature algorithm strength
- Validate publisher information
## Input Schema
```json
{
"type": "object",
"properties": {
"signedFile": { "type": "string" },
"checkSmartScreen": { "type": "boolean", "default": true }
},
"required": ["signedFile"]
}
```
## Validation Commands
```powershell
# Verify signature with chain
signtool verify /pa /all /v signed.exe
# Check certificate details
certutil -dump signed.exe
# Verify timestamp
signtool verify /pa /tw signed.exe
```
## Related Skills
- `windows-authenticode-signer`
- `code-signing-setup` process
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!