We take security seriously and work to keep this project up to date. If you discover a security vulnerability, please report it privately so we can investigate and ship a fix before the issue becomes public.
Please use one of the following private channels — do not open a public issue, pull request, or discussion for security concerns:
- Preferred: open a private report via GitHub's Privately reporting a security vulnerability flow on this repository's Security tab.
- Email: send the details to me@jaredwray.com. If the issue is urgent, include
[SECURITY]in the subject line and we will respond as soon as possible.
When reporting, please include as much of the following as you can:
- A description of the vulnerability and its impact.
- Steps to reproduce, or a proof-of-concept.
- The affected version(s) and platform.
- Any suggested remediation, if you have one.
We will acknowledge receipt, work with you on a coordinated disclosure timeline, and credit you in the advisory once a fix is published unless you ask to remain anonymous.
This repository follows the defense-in-depth hardening checklist; progress is tracked in DEFENSE_IN_DEPTH.md. Measures currently in place:
- All changes land through pull requests — direct pushes to
mainare blocked, and merging requires passing status checks. - Tags can only be created by repository admins; published GitHub Releases are immutable (assets and tags cannot be changed after publish).
- Workflow runs from outside collaborators always require maintainer approval, and only allowlisted GitHub Actions can run.
- pnpm is pinned via
packageManager(pnpm@11.18.0). - Dependencies install through pnpm with a 7-day cooldown on new versions, lifecycle scripts blocked by default, and
trustPolicy: no-downgrade. - The lockfile is committed and CI installs with
--frozen-lockfile. There is no Dependabot config; dependency updates go through reviewed PRs. - CI runs with read-only permissions (only the release job gets
id-token: write); every action is pinned to a full commit SHA; Socket Firewall (sfw) wrapspnpm install/npm install; workflows are security-linted with zizmor on every PR. - Workflows do not use
pull_request_target. - npm releases are staged, never published directly: CI stages via stage-only OIDC trusted publishing after an Aikido
scan-releasegate, Drydock reviews the staged artifact, and a maintainer promotes it with 2FA. There are no npm tokens. - Published packages set
repository.urlto this repo so provenance can map back. - Socket reviews every pull request that changes dependencies; Aikido scans every build.
- Codespaces and Cursor Cloud Agents install through Aikido Safe Chain; package-manager shims must not be bypassed.