1.0.3: mcp-server module split (slice 1) + plain-English README#52
Merged
Conversation
First slice of decomposing the mcp-server/index.ts god file. Moves two self-contained, behavior-preserving groups out of index.ts: - tool-validation.ts: VALID_SOURCES/TYPES, MAX_MEMORY_CONTENT_LENGTH, ADMIN_TOOLS_ENV, isNonEmptyText, validateMemoryContent, validateForgetSelection, admin-tool guards, initializeEmbeddingProvider. - tool-schemas.ts: the nine memory_* zod tool-input schemas. index.ts re-exports the public surface so tests and embedders importing from `mcp-server/index.js` keep resolving unchanged. No behavior change: typecheck, lint, format, and the full suite (785 passed, mcp-server 97/97) stay green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Housekeeping release — no behavior change from 1.0.2. - README opens with a plain-English "In Plain English" section explaining what Audrey is for in everyday language before the technical detail. - CHANGELOG: human-readable 1.0.3 notes covering the mcp-server module split, the test-suite self-bootstrap, and the README. - Bump version to 1.0.3 across package.json, package-lock.json, mcp-server/config.ts, and python/audrey_memory/_version.py. - Track the released version in the release-cut idempotency / readiness tests. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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
Cuts 1.0.3 — a housekeeping release with no behavior change.
Refactor (slice 1 of the
mcp-server/index.tsdecomposition)Extracts two self-contained groups out of the ~3,600-line god file into focused modules, re-exported from
index.tsso tests/embedders importingmcp-server/index.jskeep resolving unchanged:tool-validation.ts—VALID_SOURCES/TYPES,MAX_MEMORY_CONTENT_LENGTH,isNonEmptyText,validateMemoryContent,validateForgetSelection, admin guards,initializeEmbeddingProvider.tool-schemas.ts— the ninememory_*zod tool-input schemas.index.ts: 3,640 → 3,422 lines. Behavior-preserving.Docs
README now opens with a short, plain-English explanation of what Audrey is for, before the technical detail.
Release
1.0.3 across all version surfaces + human-readable CHANGELOG.
Verification
typecheck / eslint / format:check / prod
npm audit(0 vulns) all clean; full suite 785 passed (mcp-server 97/97).🤖 Generated with Claude Code