mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* feat: add workflow eval framework Add workflow evaluation scenarios, rubrics, schemas, and runner scripts for installed Truthmark workflows. Move research notes under docs/research and migrate tests from Vitest to node:test. * Potential fix for pull request finding 'CodeQL / Replacement of a substring with itself' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --------- Co-authored-by: MerlinH <merlinh221@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
42 lines
505 B
Plaintext
42 lines
505 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
coverage/
|
|
*.tsbuildinfo
|
|
|
|
# Test and tool caches
|
|
.cache/
|
|
.vitest/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment and local overrides
|
|
.env
|
|
.env.*
|
|
*.local
|
|
|
|
# Editor and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
.hermes/
|
|
.lean-ctx/graph.db
|
|
.lean-ctx/graph.meta.json
|
|
|
|
# Manual workflow eval run artifacts
|
|
workflow-eval-framwork/runs/*
|
|
!workflow-eval-framwork/runs/.gitkeep
|