code-signinglisted
Install: claude install-skill DrOlu/agent-skills
# Code Signing Skill
Sign Windows executables (.exe, .dll, .msi) and macOS applications (.app) with Hyperspace Technologies certificate.
## Overview
This skill provides code signing capabilities for:
- **Windows**: EXE, DLL, MSI files using `osslsigncode`
- **macOS**: .app bundles using `codesign`
## Certificate Details
| Field | Value |
|-------|-------|
| Organization | Hyperspace Technologies |
| CN | Hyperspace Technologies Code Signing |
| Email | reactorpro@hyperspace.ng |
| Website | https://reactorpro.ng |
| Location | Lagos, Nigeria |
| Valid Until | January 21, 2036 (10 years) |
## Certificate Location
**Permanent Location** (survives reboots):
```
~/.config/opencode/certs/hyperspace/
├── hyperspace.crt # X.509 Certificate
├── hyperspace.key # Private Key (chmod 600)
├── hyperspace.pfx # Windows PKCS#12 bundle (password: hyperspace2024)
└── hyperspace.cnf # OpenSSL config
```
## Quick Start - Helper Scripts
Two helper scripts are installed for easy signing:
```bash
# Sign Windows executable
sign-windows /path/to/app.exe "Application Name" --replace
# Sign macOS app bundle
sign-macos /path/to/App.app ng.hyperspace.appid "Application Name"
```
Scripts location: `~/.config/opencode/skills/code-signing/`
Symlinks: `~/.local/bin/sign-windows` and `~/.local/bin/sign-macos`
## Prerequisites
### Tools Required
```bash
# macOS (install via Homebrew)
brew install osslsigncode openssl
# Verify installation
which osslsigncode # Should retu