ojo subscribe

Get a security analyst in your cluster.

Tell us where to send access. Design partners are free during beta, in exchange for feedback + a case study.

Prefer email? support@ojosec.com

ojo run --gate

The free tier is a CI gate: it blocks the vulnerability class before merge. Add it to a repo:
# .github/workflows/security.yml name: security on: [pull_request] jobs: ojo-gate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: { fetch-depth: 0 } - uses: ojo-security/gate@v1 # available to design partners with: rule-pack: generic
# blocks only NEW findings in the PR (baseline-aware), no noise on your backlog. Subscribe above to get gate access.

convergai@ojo:~$