Conversation
- Split monolithic src/ into 10 workspace packages under packages/ - Switch package manager from npm to pnpm 10.22 with workspace support - Add turbo.json for build orchestration - Replace eslint+prettier with biome 1.9 for lint and format - Build per-package with tsup (cjs+esm+dts) - Add changesets for versioning and changelog generation - Move Docker setup to docker/ subdirectory - Remove old tooling (husky, lint-staged, eslint, prettier, vitest root)
- Rewrite CI workflow with A2A-matched job separation (install, audit, format, lint, typecheck, build, test matrix, coverage, docker, all-checks) - Update release workflow to changesets-based publish with npm + GitHub Packages mirror - Rewrite AGENTS.md with 10-package monorepo structure, tooling table, and updated imports - Rewrite ARCHITECTURE.md with package dependency graph, build system diagram, and package-annotated components - Update root README with A2A-matched format: badges, features, package table, documentation links - Fix all 9 skill files to use @reaatech/rag-eval-* package imports instead of monolithic import - Update CI examples in eval workflow for pnpm monorepo - Remove all references to removed GITHUB_TO_NPM.md and ABC_REMEDIATION.md
- Add mkdir -p results before eval command to create output directory - Override uuid to >=14.0.0 via pnpm.overrides to fix moderate vulnerability
- Add pull-requests: write permission for PR comment creation - Add continue-on-error to Comment on PR step as safety net
The eval workflow requires API keys, example data gate thresholds are deliberately below the example dataset scores, and it is a quality gate, not a CI check. Use workflow_dispatch and push to main only.
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.
Summary
Migrates the repository from a single npm package to a 10-package pnpm monorepo matching the architecture of
a2a-reference-ts.Structural Changes
packages/: core, metrics, cost, judge, gate, dataset, observability, suite, mcp-server, clitsc→tsupper-package (cjs+esm+dts), eslint+prettier → biome 1.9docker/subdirectoryCI Updates (A2A-matched)
Documentation
Code Quality