Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ body:
- CLI (`opfor run` / `opfor setup`)
- CLI — Autonomous mode (`opfor hunt`)
- MCP Server (`@keyvaluesystems/agent-opfor-mcp`)
- Browser Extension
- Browser Extension (`@keyvaluesystems/agent-opfor-extension`)
- SDK (`@keyvaluesystems/agent-opfor-sdk`)
- Evaluators / Suites
- Judge (LLM-as-judge)
Expand Down
29 changes: 13 additions & 16 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
## Problem

Briefly describe the issue or feature being addressed.
<!-- What was broken or missing? -->

## Solution

Explain your approach and any important design decisions.
<!-- How does this PR fix it? -->

<!-- Required: explain what this PR does and the motivation behind it. -->
## Changes

## Checklist
<!-- Packages and files affected -->

- [ ] `npm run build` passes
- [ ] `npm run typecheck` passes
- [ ] `npm run build:catalog:check` passes _(if evaluators or suites changed)_
- [ ] Tested against a local target _(if evaluator added or changed)_
- [ ] No secrets, `.env`, or `.opfor/` artifacts committed
- [ ] PR title follows `<type>: <what changed>` — e.g. `feat: add SSRF evaluator`
## Issue

## Evaluator checklist _(skip if no evaluator added)_
<!-- Closes #123 / N/A -->

- [ ] `id` is unique across all evaluators
- [ ] `pass_criteria` and `fail_criteria` are specific, not vague
- [ ] `severity` matches actual risk (`critical` = RCE / data breach)
- [ ] `standards` mapping is correct
- [ ] `.test.yaml` fixture included
## How to test

<!-- Steps for the maintainer to verify this works -->

## Screenshots

<!-- If applicable — report HTML, extension UI, CLI output -->
4 changes: 2 additions & 2 deletions .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Commit Lint

on:
pull_request:
branches: [master]
branches: [master, main]

jobs:
branch-name:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: npm

- name: Install dependencies
Expand Down
2 changes: 2 additions & 0 deletions core/tests/evaluators.judge.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
(globalThis as Record<string, unknown>).AI_SDK_LOG_WARNINGS = false;

/**
* Evaluator judge smoke tests.
*
Expand Down
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading