Git Review

Multicode LabsComing soon
Workspace moduleWorkspaces

In development. Leave your email and we'll tell you when it lands.

Get notified
review: teammate invitations — acme/web-app #482
Add teammate invitations with roles10 files · +412 −96Complexity high
1 · The invitation data model
prisma/schema.prisma+26
Why: new Invitation + role types — the foundation of the feature
30 slug String @unique
30 slug String @unique
31 createdAt DateTime @default(now())
31 createdAt DateTime @default(now())
32}
32}
34model Invitation {
35 id String @id @default(cuid())
36 email String
37 role MemberRole @default(MEMBER)
38 token String @unique
39 status InvitationStatus @default(PENDING)
40 expiresAt DateTime
41 @@index([orgId, status])
42}
CSYou · L37Pending · will post to PR

Do we want invited members to become ADMIN straight from an email link? Feels like accept should cap at MEMBER and require an in-app grant for admin.

prisma/migrations/20260716_add_invitations/migration.sql+31
Why: creates the table the schema above declares — mechanical mirror, safe to skim
1CREATE TABLE "Invitation" (
2 "id" TEXT NOT NULL PRIMARY KEY,
29 more added lines — mirror of the schema above
Your review1 pending comment · posts as you, one batch

Simulated — a working replica of the guided walkthrough. Switch steps, toggle side-by-side or inline, hover a diff line and click + to comment, then post your review.

Overview

Git Review is a dedicated review workspace, currently in development. Open a branch or a pull request and a panel of specialist reviewers — correctness, security, simplification, test coverage — reads the diff in parallel and verifies each other's findings before you see them.

Confirmed findings land as inline comments or as Switchboard tasks, so review output flows into the same pipeline as everything else you triage.

Key features

  • Side-by-side diff viewer built for long agent-authored branches
  • Specialist reviewer panel with adversarial verification
  • One click from finding to inline comment or triaged task
  • Works on local branches and GitHub pull requests

Reviews

Reviews aren’t live yet. We’re building sign-in and verified reviews — one review per account, from people who actually installed the module — rather than launching with numbers we can’t stand behind.

Used Git Review and want to share feedback in the meantime? Email the team.

Details

Availability
Coming soonIn development. Leave your email and we'll tell you when it lands.
Developer
Multicode Labs
Provenance
Marketplace bundles are distributed signed: an ed25519 signature covers every file digest in the manifest and is checked at install, so bytes can’t change without failing verification. Modules included with the studio ship inside the app itself.

Permissions

Git Review needs the following to do its job. In-app, permissions always come from the verified manifest — never from listing copy.

  • Read repository history and diffs
  • Run reviewer agent sessions
  • Post comments on pull requests you choose

How your data is handled

  • Processed on your machine — sessions run on your own subscriptions and keys
  • Never sold to third parties or used outside the module’s core functionality
  • Removable in one step: uninstall reverses the install receipt completely