chore: align tooling to agentage conventions (CI, dependabot, eslint, tsconfig)#4
Merged
Conversation
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.
Aligns
mcp-memoryto the conventions used across the agentage repos - the same set just applied tomemory-core.PR review workflow (CI):
.github/workflows/pr-validation.yml- on every PR tomaster: install -> type-check -> lint -> format:check -> test (coverage) -> build, Node 22 + npm cache, concurrency-cancel.@agentage/memory-coreis a localfile:dependency until it publishes to npm, the job checks out memory-core as a sibling and builds it first, thennpm ciresolves the link. (Relies on the publicagentage/memory-corerepo; swaps to a plain npm dep once published.)Dependabot / ESLint / TypeScript / Prettier / scripts: identical to the memory-core alignment - org
eslint.config.mjsrule set, strictertsconfig.json+tsconfig.build.json,.prettierrc+.prettierignore,lint:fix/format/test:coverage/clean/prepublishOnly/verify,node>=22 / npm>=10. Lockfile committed fornpm ci.Tests: added
edit-and-render.test.ts(edit input-guard branches, delete, empty-render paths) to bring branch coverage over the 70% gate.Verified locally:
npm run verifypasses (type-check, lint, format, 16 tests @ 94% lines / 77% branches, build).