Update repository with project files and documentation
- Added comprehensive documentation (BUILD_AND_TEST, CLIENT_CONFIG, KNOWN_ISSUES, ROADMAP, etc.) - Updated core functionality for board outline, size, and utilities - Added new tools for project, routing, schematic, and UI management - Included TypeScript SDK with full MCP implementation - Updated configuration examples for all platforms - Added changelog and status tracking - Improved Python utilities with KiCAD process management - Enhanced resource helpers and server capabilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
11
typescript-sdk/.github/CODEOWNERS
vendored
Normal file
11
typescript-sdk/.github/CODEOWNERS
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# TypeScript SDK Code Owners
|
||||
|
||||
# Default owners for everything in the repo
|
||||
* @modelcontextprotocol/typescript-sdk
|
||||
|
||||
# Auth team owns all auth-related code
|
||||
/src/server/auth/ @modelcontextprotocol/typescript-sdk-auth
|
||||
/src/client/auth* @modelcontextprotocol/typescript-sdk-auth
|
||||
/src/shared/auth* @modelcontextprotocol/typescript-sdk-auth
|
||||
/src/examples/client/simpleOAuthClient.ts @modelcontextprotocol/typescript-sdk-auth
|
||||
/src/examples/server/demoInMemoryOAuthProvider.ts @modelcontextprotocol/typescript-sdk-auth
|
||||
51
typescript-sdk/.github/workflows/main.yml
vendored
Normal file
51
typescript-sdk/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
cache: npm
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm test
|
||||
- run: npm run lint
|
||||
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'release'
|
||||
environment: release
|
||||
needs: build
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
cache: npm
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
|
||||
- run: npm ci
|
||||
|
||||
- run: npm publish --provenance --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
Reference in New Issue
Block a user