feat: public Skillbench release - #1
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR prepares Skillbench for its first public release by adding public-facing documentation and a static GitHub Pages site, and by introducing CI/release automation for publishing and binaries.
Changes:
- Adds a full static website (HTML/CSS/JS) plus manifest/robots/sitemap and social assets under
site/. - Adds automated site validation (
scripts/check-site.ts) and wires it into CI/Pages/release workflows. - Updates packaging + project metadata (MIT license, npm metadata, contributing/security docs) and adds release automation (CI, Pages deploy, release + binaries, Dependabot).
Reviewed changes
Copilot reviewed 19 out of 22 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| site/styles.css | Adds complete styling for the public static site. |
| site/index.html | Adds the static landing page markup and interactive sections. |
| site/script.js | Adds client-side behavior (copy buttons, nav toggle, interactive previews). |
| site/site.webmanifest | Adds PWA manifest metadata and icon reference. |
| site/robots.txt | Enables crawling and points to sitemap. |
| site/sitemap.xml | Adds sitemap for the Pages site root. |
| site/assets/og-skillbench.svg | Adds OG image source asset (SVG variant). |
| site/assets/favicon.svg | Adds SVG favicon. |
| scripts/check-site.ts | Adds a Bun script to validate required HTML, anchors, and local assets. |
| .github/workflows/ci.yml | Adds PR/main CI (typecheck/tests/audit/package/site + binary smoke). |
| .github/workflows/pages.yml | Adds Pages deployment workflow for the static site. |
| .github/workflows/release.yml | Adds tag-driven release workflow for validation, binaries, npm publish, and GitHub release. |
| package.json | Publishes package metadata, adds site scripts, includes LICENSE, sets MIT license + publish config. |
| README.md | Rewrites README for public usage, workflows, and release model. |
| LICENSE | Adds MIT license text. |
| SECURITY.md | Adds vulnerability reporting + safety guidance. |
| CONTRIBUTING.md | Adds contribution guidance and PR invariants. |
| CHANGELOG.md | Adds initial changelog entry for 0.3.0. |
| .github/pull_request_template.md | Adds PR template with evidence checklist + invariants. |
| .github/dependabot.yml | Adds Dependabot config for npm + GitHub Actions. |
| .github/CODEOWNERS | Sets repository-wide code ownership. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <svg aria-hidden="true" viewBox="0 0 24 24"><path d="m13 2-8 12h6l-1 8 9-13h-6z" /></svg> | ||
| <span>TRIGGER EVAL</span> | ||
| </button> | ||
| <button class="terminal-row active" type="button" role="option" aria-selected="true" data-result="baseline 0.40|skill 1.00|Δ +0.60"> |
| path: release/skillbench-* | ||
| if-no-files-found: error | ||
|
|
||
| npm: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Outcome
Local evidence
bun run check— 15 tests passbun run site:check— links, anchors, and local assets passbun audit --audit-level high— no vulnerabilitiesnpm pack --dry-run— expected four-file packageskillbench --versionreturns0.3.0Release follow-up
After merge: deploy Pages, publish the initial npm package, configure npm trusted publishing, tag the release, and verify installation from the public registry.