Skip to content

chore: rename project to Coord - #7

Open
kushagra2503 wants to merge 1 commit into
mainfrom
chore/rename-to-coord
Open

chore: rename project to Coord#7
kushagra2503 wants to merge 1 commit into
mainfrom
chore/rename-to-coord

Conversation

@kushagra2503

Copy link
Copy Markdown
Collaborator

Summary

Renames the project from Condominium / teambridge to Coord across every surface, so the product name, package names, CLI command, and on-disk identifiers all agree.

Renamed:

Surface Before After
Product name Condominium Coord
Root npm package teambridge coord
Workspace packages @teambridge/* @coord/*
CLI command / bin teambridge <cmd> coord <cmd>
Root script pnpm teambridge pnpm coord
Env vars TEAMBRIDGE_*, VITE_TEAMBRIDGE_* COORD_*, VITE_COORD_*
MCP URI scheme teambridge://workspace coord://workspace
Local state dir .teambridge/ .coord/
Participant branch prefix teambridge/<track>/<name> coord/<track>/<name>
Dashboard API client teambridgeClient.ts coordClient.ts
Exported identifiers TeambridgeConfig, TeambridgeError, buildTeambridgeUrl, … CoordConfig, CoordError, buildCoordUrl, …

Deliberately NOT renamed

These address already-deployed data, so renaming them would orphan it:

  • tc_ Supabase table prefix
  • teambridge_private Postgres schema
  • teambridge-checkpoints storage bucket
  • supabase/migrations/001_teambridge_relay.sql (applied migration — left byte-for-byte untouched)
  • [tb color= assign=] vault annotation tag (persisted inside existing vault markdown)

Migration required for existing local state

This is a breaking change for anyone with an existing .teambridge/ directory. After pulling, the daemon looks for .coord/ and will otherwise start from empty state:

mv .teambridge .coord
sqlite3 .coord/state.sqlite \
  "update participants set branch = replace(branch, 'teambridge', 'coord') where branch like '%teambridge%';"
# also rewrite teambridge paths/branches inside .coord/**/manifest.json, events.jsonl, and vault/*.md

Any pre-existing git worktrees on teambridge/<track>/<name> branches will no longer resolve as "the current track" (publish, vault *, ask, inbox, conflicts infer the track from the branch name), so those branches need renaming or the track needs re-joining.

Rename TEAMBRIDGE_* keys to COORD_* in any local .env.

Test plan

  • pnpm build clean across all 6 packages
  • Unit tests: core 25, mcp 27, cli 42 — all pass
  • Dashboard tests: 14 files / 72 tests pass (requires the daemon running on :9473; these tests make real fetches, a pre-existing dependency)
  • pnpm test:integration — all 9 end-to-end suites pass, including the CLI worktree flow, MCP stdio server, inbox/conflicts, and relay reconnect/checkpoint bootstrap
  • Daemon boots and reports coord daemon listening on http://127.0.0.1:9473
  • coord status reads migrated state (3 projects, 11 tracks, 33 participants) with coord/<track>/<name> branches
  • Dashboard serves <title>Coord</title> and renders migrated projects
  • No leftover teambridge references outside the intentional keep-list
  • No linter errors

Made with Cursor

Unifies every surface under a single name: the product name (Condominium),
npm packages (@teambridge/* -> @coord/*), CLI command, COORD_* env vars,
coord:// MCP URI scheme, the .coord/ state directory, and the
coord/<track>/<name> participant branch prefix.

Supabase identifiers are deliberately left as-is because they address
already-deployed data: the tc_ table prefix, the teambridge_private schema,
the teambridge-checkpoints storage bucket, and the applied migration
001_teambridge_relay.sql. The [tb ...] vault annotation tag is also unchanged
since it is persisted inside existing vault markdown.

Existing local state must be migrated with `mv .teambridge .coord` plus a
rewrite of teambridge/ branch prefixes in participants.branch.

Co-authored-by: Cursor <cursoragent@cursor.com>
@coderabbitai

coderabbitai Bot commented Jul 24, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 128 files, which is 28 over the limit of 100.

To get a review, narrow the scope:
• coderabbit review --committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to a paid plan to raise the limit.

This review couldn't start because sufficient usage credits or metered capacity aren't available. Add credits or update usage-based reviews in the billing tab, then retry.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: f764f00c-e6dd-4001-8df5-b2a5ca02e4a0

📥 Commits

Reviewing files that changed from the base of the PR and between a5a0831 and 305f958.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (128)
  • .env.example
  • .gitignore
  • CLAUDE.md
  • PROGRESS.md
  • README.md
  • agent.md
  • apps/dashboard/index.html
  • apps/dashboard/package.json
  • apps/dashboard/src/App.test.tsx
  • apps/dashboard/src/api/coordClient.test.ts
  • apps/dashboard/src/api/coordClient.ts
  • apps/dashboard/src/components/AppLayout.tsx
  • apps/dashboard/src/components/CheckpointState.test.tsx
  • apps/dashboard/src/components/CheckpointState.tsx
  • apps/dashboard/src/components/ConflictsPanel.tsx
  • apps/dashboard/src/components/EventFeed.test.tsx
  • apps/dashboard/src/components/EventFeed.tsx
  • apps/dashboard/src/components/InboxPanel.tsx
  • apps/dashboard/src/components/ProjectMemberSidebar.tsx
  • apps/dashboard/src/components/RecentDeltasPanel.tsx
  • apps/dashboard/src/components/RelaySyncHealth.tsx
  • apps/dashboard/src/components/TeammateDeltaPanel.tsx
  • apps/dashboard/src/components/TrackList.tsx
  • apps/dashboard/src/components/TrackParticipantsPanel.test.tsx
  • apps/dashboard/src/components/TrackParticipantsPanel.tsx
  • apps/dashboard/src/components/VaultHighlights.tsx
  • apps/dashboard/src/components/WorkspaceList.tsx
  • apps/dashboard/src/components/app-shell-context.tsx
  • apps/dashboard/src/components/app-sidebar.tsx
  • apps/dashboard/src/components/dev-pfp-panel.tsx
  • apps/dashboard/src/components/member-avatar.ts
  • apps/dashboard/src/components/participantDisplay.ts
  • apps/dashboard/src/components/repo-context-panel.tsx
  • apps/dashboard/src/components/settings-dialog.tsx
  • apps/dashboard/src/components/site-header.tsx
  • apps/dashboard/src/components/team-sidebar.tsx
  • apps/dashboard/src/components/workspaceDisplay.ts
  • apps/dashboard/src/hooks/useContextPointer.ts
  • apps/dashboard/src/lib/avatar-identity.ts
  • apps/dashboard/src/lib/branding.ts
  • apps/dashboard/src/lib/cache.ts
  • apps/dashboard/src/lib/local-profile-cache.ts
  • apps/dashboard/src/lib/vault-item-meta.ts
  • apps/dashboard/src/pages/DashboardPage.tsx
  • apps/dashboard/src/pages/ProjectSelectionPage.tsx
  • apps/dashboard/src/test/factories.ts
  • apps/dashboard/vite.config.ts
  • docs/CONCEPTS.md
  • docs/cli-worktrees.md
  • docs/daemon-api.md
  • docs/dashboard.md
  • docs/kushagra-handoff.md
  • docs/nihal-daemon-requests.md
  • docs/phase-1-design-choices.md
  • docs/plans/2026-06-21-001-feat-project-hierarchy-and-track-rename-plan.md
  • docs/plans/2026-06-27-001-docs-architecture-sync-plan.md
  • docs/plans/2026-07-02-001-feat-kushagra-cli-phase1-completion-plan.md
  • docs/plans/2026-07-06-001-feat-relay-dashboard-screens-plan.md
  • docs/plans/2026-07-06-002-feat-mcp-relay-contracts-plan.md
  • docs/plans/2026-07-07-001-feat-mcp-server-stdio-resources-tools-plan.md
  • docs/plans/2026-07-10-001-feat-inbox-conflicts-cross-surface-interlink-plan.md
  • package.json
  • packages/cli/package.json
  • packages/cli/src/commands/context.ts
  • packages/cli/src/commands/daemon.ts
  • packages/cli/src/commands/enter.ts
  • packages/cli/src/commands/hook.ts
  • packages/cli/src/commands/inbox.ts
  • packages/cli/src/commands/init.ts
  • packages/cli/src/commands/mcp.ts
  • packages/cli/src/commands/project.ts
  • packages/cli/src/commands/publish.ts
  • packages/cli/src/commands/relay.ts
  • packages/cli/src/commands/status.ts
  • packages/cli/src/commands/track.ts
  • packages/cli/src/commands/vault.ts
  • packages/cli/src/commands/ws.ts
  • packages/cli/src/daemon-client.ts
  • packages/cli/src/index.ts
  • packages/cli/src/lib/context-pointer.ts
  • packages/cli/src/lib/current-track.ts
  • packages/cli/src/lib/naming.ts
  • packages/cli/src/lib/pointers.ts
  • packages/cli/src/lib/worktree.ts
  • packages/cli/src/repo.ts
  • packages/cli/test/cli.test.cjs
  • packages/cli/test/current-track.test.cjs
  • packages/cli/test/enter.test.cjs
  • packages/cli/test/publish.test.cjs
  • packages/cli/test/repo.test.cjs
  • packages/cli/test/start.test.cjs
  • packages/cli/test/status.test.cjs
  • packages/cli/test/vault.test.cjs
  • packages/cli/test/worktree.test.cjs
  • packages/cli/test/ws.test.cjs
  • packages/core/package.json
  • packages/core/src/contracts/api.ts
  • packages/core/src/contracts/config.ts
  • packages/core/src/contracts/errors.ts
  • packages/core/src/contracts/mcp.ts
  • packages/core/src/contracts/schemas.ts
  • packages/core/test/contracts.test.cjs
  • packages/daemon/package.json
  • packages/daemon/src/index.ts
  • packages/daemon/src/pfp.ts
  • packages/mcp/package.json
  • packages/mcp/src/daemon-client.ts
  • packages/mcp/src/resolution.ts
  • packages/mcp/src/resources.ts
  • packages/mcp/src/server.ts
  • packages/mcp/src/tools.ts
  • packages/mcp/test/integration.test.cjs
  • packages/mcp/test/resolution.test.cjs
  • packages/mcp/test/resources.test.cjs
  • packages/vault/package.json
  • packages/vault/src/index.ts
  • report/phase-2-supabase-relay-plan.md
  • report/team-implementation-plan.md
  • scripts/seed-demo.mjs
  • tests/integration/cli-flow.test.mjs
  • tests/integration/context-hook-flow.test.mjs
  • tests/integration/daemon-inbox-conflicts.test.mjs
  • tests/integration/helpers.mjs
  • tests/integration/inbox-conflicts-flow.test.mjs
  • tests/integration/mcp-flow.test.mjs
  • tests/integration/relay-reconnect-bootstrap.test.mjs
  • tests/integration/vault-flow.test.mjs
  • todo.md

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/rename-to-coord

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant