feat(teams): repo restructure for personal + teams dual-edition architecture#321
Merged
feat(teams): repo restructure for personal + teams dual-edition architecture#321
Conversation
Multi-user MCP proxy for teams of 2-50 people with identity provider authentication, per-user workspaces, credential isolation, server templates, and admin management. 8 user stories (P1-P8), 38 functional requirements, 10 success criteria. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…tecture [#29] Establish build tag architecture to support two editions (personal and teams) from the same codebase. Personal is the default build; teams requires -tags teams. - Add edition detection via build tags (edition.go / edition_teams.go) - Add teams feature registry (internal/teams/) with init() registration pattern - Add edition to version output, startup logs, and /api/v1/status - Add Dockerfile for teams server distribution (distroless runtime) - Add Makefile targets: build-teams, build-docker, build-deb - Extend release workflow with teams Linux matrix + Docker GHCR push - Add native/ placeholder directories for future Swift/C# tray apps - Add frontend/src/{views,components}/teams/ skeleton directories - Update spec with FR-039 through FR-044 (build & distribution requirements)
Deploying mcpproxy-docs with
|
| Latest commit: |
1308259
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://fdc9f8da.mcpproxy-docs.pages.dev |
| Branch Preview URL: | https://029-mcpproxy-teams.mcpproxy-docs.pages.dev |
📦 Build ArtifactsWorkflow Run: View Run Available Artifacts
How to DownloadOption 1: GitHub Web UI (easiest)
Option 2: GitHub CLI gh run download 22816933233 --repo smart-mcp-proxy/mcpproxy-go
|
Comment out teams matrix entries and Docker build job in release workflow. Personal edition releases are unaffected. Uncomment when teams MVP is complete.
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
Establishes the foundational architecture for supporting two MCPProxy editions (Personal and Teams) from the same repository using Go build tags.
go build→ personal (default),go build -tags teams→ teams editioninternal/teams/package with feature registry andinit()registration pattern--version, startup logs, and/api/v1/statusnative/macos/(Swift) andnative/windows/(C#) for future native appsDistribution Matrix
Test plan
go build ./cmd/mcpproxyproduces personal editiongo build -tags teams ./cmd/mcpproxyproduces teams editionmcpproxy --versionshows "personal" / "teams" correctlygo test -tags teams ./internal/teams/...— 3/3 passgo test ./internal/... -v— all pass (except pre-existinginternal/servertimeout)./scripts/run-linter.sh— 0 issues./scripts/test-api-e2e.sh— 61/71 pass (10 failures pre-existing)