Conversation
Introduce a new types/registry.ts defining ClientMatcher and ClientPatcher and export it from the public types entry. Improve TSDoc and typing across the TypeScript SDK: tighten provider client shapes (OpenAI, Anthropic, Gemini), add detection comments, refine hook/llm JSDoc, and update imports to use the new registry types. Add and enable eslint-plugin-tsdoc (package.json + package-lock + eslint.config.js) and bump the package version to 0.1.4-beta. Trim CONTRIBUTING/README content to focus on the TypeScript SDK and adjust package description.
Delete the CONTRIBUTING.MD file containing contribution guidelines, TypeScript SDK setup, testing commands, project structure, code quality rules, and PR guidelines. Removes the obsolete contributor documentation from the repository.
Introduce a CONTRIBUTING.md outlining contribution and development workflows for the Axon TypeScript SDK. Covers prerequisites (Node.js >=18), local setup, build/test commands, common NPM scripts, testing and coverage with Vitest, project structure, code quality rules (ESLint/Prettier/TypeScript strict), guidance for adding provider integrations, and pull request best practices.
Add the 'release: types: [published]' event to the Publish to npm (TS) workflow so it runs automatically when a GitHub release is published. The existing manual 'workflow_dispatch' trigger is preserved to allow manual runs.
devwdave
approved these changes
Feb 25, 2026
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.
Updated
CONTRIBUTING.mdandREADME.md (root)to remove the python support information. That SDK will be a future feature supportAdded TsDoc linting to our linter to catch bad / malformed TS documentation
bumped version for our next release
Fixed TSDoc issues found from new linter
Moved exported types from llm register to their own file in the types folder to be consistent with our other setups
Added more TsDocs to any interface, type, method, etc that is public facing to make using our package easier
Minor code clean up to make our providers more consistent looking
Added automated release for publishing