Installation
Requirements
Section titled “Requirements”- Go 1.22+ — go.dev
- Git — git-scm.com
Optional
Section titled “Optional”- golangci-lint — Enhanced lint evidence (golangci-lint.run)
- gh CLI — GitHub PR/issue integration (cli.github.com)
Install from Go Module Registry
Section titled “Install from Go Module Registry”go install github.com/iksnae/code-certification/cmd/certify@latestThis installs the certify binary to your $GOPATH/bin.
Install from GitHub Release
Section titled “Install from GitHub Release”Download pre-built binaries from GitHub Releases:
# macOS (Apple Silicon)curl -L https://github.com/iksnae/code-certification/releases/latest/download/certify-darwin-arm64 -o certify
# macOS (Intel)curl -L https://github.com/iksnae/code-certification/releases/latest/download/certify-darwin-amd64 -o certify
# Linux (x86_64)curl -L https://github.com/iksnae/code-certification/releases/latest/download/certify-linux-amd64 -o certify
# Linux (ARM64)curl -L https://github.com/iksnae/code-certification/releases/latest/download/certify-linux-arm64 -o certify
chmod +x certifysudo mv certify /usr/local/bin/Build from Source
Section titled “Build from Source”git clone https://github.com/iksnae/code-certification.gitcd code-certificationgo build -o certify ./cmd/certify/Move the binary somewhere in your $PATH:
sudo mv certify /usr/local/bin/Or use the project’s Justfile:
just build # builds to build/bin/certifyVerify Installation
Section titled “Verify Installation”certify versionYou should see:
certify v0.9.0 (commit: a04d3f3, built: 2026-03-11T16:45:00Z)VSCode Extension
Section titled “VSCode Extension”See grades inline, open the dashboard, and configure AI providers — all from the editor.
code --install-extension iksnae.certify-vscodeNext Steps
Section titled “Next Steps”Start the guided onboarding:
cd your-repocertify onboardOr jump straight into the Quick Start →