diff --git a/components/public-api/gitpod/v1/scm.proto b/components/public-api/gitpod/v1/scm.proto
new file mode 100644
index 00000000000000..ca7d5c6900b0c9
--- /dev/null
+++ b/components/public-api/gitpod/v1/scm.proto
@@ -0,0 +1,65 @@
+syntax = "proto3";
+
+package gitpod.v1;
+
+import "google/protobuf/timestamp.proto";
+
+option go_package = "github.com/gitpod-io/gitpod/components/public-api/go/v1";
+
+service SCMService {
+  rpc GetToken(GetTokenRequest) returns (GetTokenResponse) {}
+  rpc GuessTokenScopes(GuessTokenScopesRequest) returns (GuessTokenScopesResponse) {}
+  rpc SearchRepositories(SearchRepositoriesRequest) returns (SearchRepositoriesResponse) {}
+  rpc ListSuggestedRepositories(ListSuggestedRepositoriesRequest) returns (ListSuggestedRepositoriesResponse) {}
+}
+
+message GetTokenRequest {
+    string host = 1;
+    string organization_id = 2;
+}
+message GetTokenResponse {
+    GitToken token = 1;
+}
+
+message GuessTokenScopesRequest {
+    string host = 1;
+    string repo_url = 2;
+    string git_command = 3;
+}
+message GuessTokenScopesResponse {
+    repeated string scopes = 1;
+    string message = 2;
+}
+
+message SearchRepositoriesRequest {
+    string organization_id = 1;
+    string search_string = 2;
+    int32 limit = 3;
+}
+message SearchRepositoriesResponse {
+    repeated SuggestedRepository repositories = 1;
+}
+
+message ListSuggestedRepositoriesRequest {
+    string organization_id = 1;
+}
+message ListSuggestedRepositoriesResponse {
+    repeated SuggestedRepository repositories = 1;
+}
+
+message GitToken {
+  string username = 1;
+  string value = 2;
+  string id_token = 3;
+  string refresh_token = 4;
+  repeated string scopes = 5;
+  google.protobuf.Timestamp update_date = 6;
+  google.protobuf.Timestamp expiry_date = 7;
+}
+
+message SuggestedRepository {
+    string url = 1;
+    string repo_name = 2;
+    string config_name = 3;
+    string config_id = 4;
+}
diff --git a/components/public-api/go/v1/scm.pb.go b/components/public-api/go/v1/scm.pb.go
new file mode 100644
index 00000000000000..0d5ebb75a746be
--- /dev/null
+++ b/components/public-api/go/v1/scm.pb.go
@@ -0,0 +1,920 @@
+// Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+// Licensed under the GNU Affero General Public License (AGPL).
+// See License.AGPL.txt in the project root for license information.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// 	protoc-gen-go v1.28.1
+// 	protoc        (unknown)
+// source: gitpod/v1/scm.proto
+
+package v1
+
+import (
+	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
+	reflect "reflect"
+	sync "sync"
+)
+
+const (
+	// Verify that this generated code is sufficiently up-to-date.
+	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+	// Verify that runtime/protoimpl is sufficiently up-to-date.
+	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+type GetTokenRequest struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Host           string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
+	OrganizationId string `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
+}
+
+func (x *GetTokenRequest) Reset() {
+	*x = GetTokenRequest{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[0]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *GetTokenRequest) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*GetTokenRequest) ProtoMessage() {}
+
+func (x *GetTokenRequest) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[0]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use GetTokenRequest.ProtoReflect.Descriptor instead.
+func (*GetTokenRequest) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{0}
+}
+
+func (x *GetTokenRequest) GetHost() string {
+	if x != nil {
+		return x.Host
+	}
+	return ""
+}
+
+func (x *GetTokenRequest) GetOrganizationId() string {
+	if x != nil {
+		return x.OrganizationId
+	}
+	return ""
+}
+
+type GetTokenResponse struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Token *GitToken `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
+}
+
+func (x *GetTokenResponse) Reset() {
+	*x = GetTokenResponse{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[1]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *GetTokenResponse) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*GetTokenResponse) ProtoMessage() {}
+
+func (x *GetTokenResponse) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[1]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use GetTokenResponse.ProtoReflect.Descriptor instead.
+func (*GetTokenResponse) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{1}
+}
+
+func (x *GetTokenResponse) GetToken() *GitToken {
+	if x != nil {
+		return x.Token
+	}
+	return nil
+}
+
+type GuessTokenScopesRequest struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Host       string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
+	RepoUrl    string `protobuf:"bytes,2,opt,name=repo_url,json=repoUrl,proto3" json:"repo_url,omitempty"`
+	GitCommand string `protobuf:"bytes,3,opt,name=git_command,json=gitCommand,proto3" json:"git_command,omitempty"`
+}
+
+func (x *GuessTokenScopesRequest) Reset() {
+	*x = GuessTokenScopesRequest{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[2]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *GuessTokenScopesRequest) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*GuessTokenScopesRequest) ProtoMessage() {}
+
+func (x *GuessTokenScopesRequest) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[2]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use GuessTokenScopesRequest.ProtoReflect.Descriptor instead.
+func (*GuessTokenScopesRequest) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{2}
+}
+
+func (x *GuessTokenScopesRequest) GetHost() string {
+	if x != nil {
+		return x.Host
+	}
+	return ""
+}
+
+func (x *GuessTokenScopesRequest) GetRepoUrl() string {
+	if x != nil {
+		return x.RepoUrl
+	}
+	return ""
+}
+
+func (x *GuessTokenScopesRequest) GetGitCommand() string {
+	if x != nil {
+		return x.GitCommand
+	}
+	return ""
+}
+
+type GuessTokenScopesResponse struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Scopes  []string `protobuf:"bytes,1,rep,name=scopes,proto3" json:"scopes,omitempty"`
+	Message string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
+}
+
+func (x *GuessTokenScopesResponse) Reset() {
+	*x = GuessTokenScopesResponse{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[3]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *GuessTokenScopesResponse) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*GuessTokenScopesResponse) ProtoMessage() {}
+
+func (x *GuessTokenScopesResponse) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[3]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use GuessTokenScopesResponse.ProtoReflect.Descriptor instead.
+func (*GuessTokenScopesResponse) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{3}
+}
+
+func (x *GuessTokenScopesResponse) GetScopes() []string {
+	if x != nil {
+		return x.Scopes
+	}
+	return nil
+}
+
+func (x *GuessTokenScopesResponse) GetMessage() string {
+	if x != nil {
+		return x.Message
+	}
+	return ""
+}
+
+type SearchRepositoriesRequest struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
+	SearchString   string `protobuf:"bytes,2,opt,name=search_string,json=searchString,proto3" json:"search_string,omitempty"`
+	Limit          int32  `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+}
+
+func (x *SearchRepositoriesRequest) Reset() {
+	*x = SearchRepositoriesRequest{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[4]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *SearchRepositoriesRequest) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SearchRepositoriesRequest) ProtoMessage() {}
+
+func (x *SearchRepositoriesRequest) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[4]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use SearchRepositoriesRequest.ProtoReflect.Descriptor instead.
+func (*SearchRepositoriesRequest) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{4}
+}
+
+func (x *SearchRepositoriesRequest) GetOrganizationId() string {
+	if x != nil {
+		return x.OrganizationId
+	}
+	return ""
+}
+
+func (x *SearchRepositoriesRequest) GetSearchString() string {
+	if x != nil {
+		return x.SearchString
+	}
+	return ""
+}
+
+func (x *SearchRepositoriesRequest) GetLimit() int32 {
+	if x != nil {
+		return x.Limit
+	}
+	return 0
+}
+
+type SearchRepositoriesResponse struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Repositories []*SuggestedRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
+}
+
+func (x *SearchRepositoriesResponse) Reset() {
+	*x = SearchRepositoriesResponse{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[5]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *SearchRepositoriesResponse) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SearchRepositoriesResponse) ProtoMessage() {}
+
+func (x *SearchRepositoriesResponse) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[5]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use SearchRepositoriesResponse.ProtoReflect.Descriptor instead.
+func (*SearchRepositoriesResponse) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{5}
+}
+
+func (x *SearchRepositoriesResponse) GetRepositories() []*SuggestedRepository {
+	if x != nil {
+		return x.Repositories
+	}
+	return nil
+}
+
+type ListSuggestedRepositoriesRequest struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
+}
+
+func (x *ListSuggestedRepositoriesRequest) Reset() {
+	*x = ListSuggestedRepositoriesRequest{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[6]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *ListSuggestedRepositoriesRequest) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ListSuggestedRepositoriesRequest) ProtoMessage() {}
+
+func (x *ListSuggestedRepositoriesRequest) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[6]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use ListSuggestedRepositoriesRequest.ProtoReflect.Descriptor instead.
+func (*ListSuggestedRepositoriesRequest) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{6}
+}
+
+func (x *ListSuggestedRepositoriesRequest) GetOrganizationId() string {
+	if x != nil {
+		return x.OrganizationId
+	}
+	return ""
+}
+
+type ListSuggestedRepositoriesResponse struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Repositories []*SuggestedRepository `protobuf:"bytes,1,rep,name=repositories,proto3" json:"repositories,omitempty"`
+}
+
+func (x *ListSuggestedRepositoriesResponse) Reset() {
+	*x = ListSuggestedRepositoriesResponse{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[7]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *ListSuggestedRepositoriesResponse) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ListSuggestedRepositoriesResponse) ProtoMessage() {}
+
+func (x *ListSuggestedRepositoriesResponse) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[7]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use ListSuggestedRepositoriesResponse.ProtoReflect.Descriptor instead.
+func (*ListSuggestedRepositoriesResponse) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{7}
+}
+
+func (x *ListSuggestedRepositoriesResponse) GetRepositories() []*SuggestedRepository {
+	if x != nil {
+		return x.Repositories
+	}
+	return nil
+}
+
+type GitToken struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Username     string                 `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
+	Value        string                 `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
+	IdToken      string                 `protobuf:"bytes,3,opt,name=id_token,json=idToken,proto3" json:"id_token,omitempty"`
+	RefreshToken string                 `protobuf:"bytes,4,opt,name=refresh_token,json=refreshToken,proto3" json:"refresh_token,omitempty"`
+	Scopes       []string               `protobuf:"bytes,5,rep,name=scopes,proto3" json:"scopes,omitempty"`
+	UpdateDate   *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_date,json=updateDate,proto3" json:"update_date,omitempty"`
+	ExpiryDate   *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=expiry_date,json=expiryDate,proto3" json:"expiry_date,omitempty"`
+}
+
+func (x *GitToken) Reset() {
+	*x = GitToken{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[8]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *GitToken) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*GitToken) ProtoMessage() {}
+
+func (x *GitToken) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[8]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use GitToken.ProtoReflect.Descriptor instead.
+func (*GitToken) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{8}
+}
+
+func (x *GitToken) GetUsername() string {
+	if x != nil {
+		return x.Username
+	}
+	return ""
+}
+
+func (x *GitToken) GetValue() string {
+	if x != nil {
+		return x.Value
+	}
+	return ""
+}
+
+func (x *GitToken) GetIdToken() string {
+	if x != nil {
+		return x.IdToken
+	}
+	return ""
+}
+
+func (x *GitToken) GetRefreshToken() string {
+	if x != nil {
+		return x.RefreshToken
+	}
+	return ""
+}
+
+func (x *GitToken) GetScopes() []string {
+	if x != nil {
+		return x.Scopes
+	}
+	return nil
+}
+
+func (x *GitToken) GetUpdateDate() *timestamppb.Timestamp {
+	if x != nil {
+		return x.UpdateDate
+	}
+	return nil
+}
+
+func (x *GitToken) GetExpiryDate() *timestamppb.Timestamp {
+	if x != nil {
+		return x.ExpiryDate
+	}
+	return nil
+}
+
+type SuggestedRepository struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Url        string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
+	RepoName   string `protobuf:"bytes,2,opt,name=repo_name,json=repoName,proto3" json:"repo_name,omitempty"`
+	ConfigName string `protobuf:"bytes,3,opt,name=config_name,json=configName,proto3" json:"config_name,omitempty"`
+	ConfigId   string `protobuf:"bytes,4,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
+}
+
+func (x *SuggestedRepository) Reset() {
+	*x = SuggestedRepository{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_gitpod_v1_scm_proto_msgTypes[9]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *SuggestedRepository) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SuggestedRepository) ProtoMessage() {}
+
+func (x *SuggestedRepository) ProtoReflect() protoreflect.Message {
+	mi := &file_gitpod_v1_scm_proto_msgTypes[9]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use SuggestedRepository.ProtoReflect.Descriptor instead.
+func (*SuggestedRepository) Descriptor() ([]byte, []int) {
+	return file_gitpod_v1_scm_proto_rawDescGZIP(), []int{9}
+}
+
+func (x *SuggestedRepository) GetUrl() string {
+	if x != nil {
+		return x.Url
+	}
+	return ""
+}
+
+func (x *SuggestedRepository) GetRepoName() string {
+	if x != nil {
+		return x.RepoName
+	}
+	return ""
+}
+
+func (x *SuggestedRepository) GetConfigName() string {
+	if x != nil {
+		return x.ConfigName
+	}
+	return ""
+}
+
+func (x *SuggestedRepository) GetConfigId() string {
+	if x != nil {
+		return x.ConfigId
+	}
+	return ""
+}
+
+var File_gitpod_v1_scm_proto protoreflect.FileDescriptor
+
+var file_gitpod_v1_scm_proto_rawDesc = []byte{
+	0x0a, 0x13, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x63, 0x6d, 0x2e,
+	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
+	0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
+	0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74,
+	0x6f, 0x22, 0x4e, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71,
+	0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61,
+	0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
+	0x64, 0x22, 0x3d, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73,
+	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01,
+	0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
+	0x2e, 0x47, 0x69, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
+	0x22, 0x69, 0x0a, 0x17, 0x47, 0x75, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x53, 0x63,
+	0x6f, 0x70, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x68,
+	0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x12,
+	0x19, 0x0a, 0x08, 0x72, 0x65, 0x70, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x07, 0x72, 0x65, 0x70, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x67, 0x69,
+	0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
+	0x0a, 0x67, 0x69, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x22, 0x4c, 0x0a, 0x18, 0x47,
+	0x75, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x52,
+	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65,
+	0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12,
+	0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x7f, 0x0a, 0x19, 0x53, 0x65, 0x61,
+	0x72, 0x63, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52,
+	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
+	0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
+	0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12,
+	0x23, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
+	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x74,
+	0x72, 0x69, 0x6e, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
+	0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x60, 0x0a, 0x1a, 0x53, 0x65,
+	0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73,
+	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0c, 0x72, 0x65, 0x70, 0x6f,
+	0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e,
+	0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65,
+	0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x52, 0x0c,
+	0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x4b, 0x0a, 0x20,
+	0x4c, 0x69, 0x73, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70,
+	0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+	0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+	0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e,
+	0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x21, 0x4c, 0x69, 0x73,
+	0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69,
+	0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42,
+	0x0a, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01,
+	0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
+	0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69,
+	0x74, 0x6f, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69,
+	0x65, 0x73, 0x22, 0x8e, 0x02, 0x0a, 0x08, 0x47, 0x69, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12,
+	0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76,
+	0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
+	0x65, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x07, 0x69, 0x64, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x23, 0x0a, 0x0d,
+	0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x04, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x54, 0x6f, 0x6b, 0x65,
+	0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
+	0x09, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64,
+	0x61, 0x74, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
+	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
+	0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61,
+	0x74, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x65, 0x78, 0x70, 0x69, 0x72, 0x79,
+	0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
+	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
+	0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x79, 0x44,
+	0x61, 0x74, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x13, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65,
+	0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x75,
+	0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1b, 0x0a,
+	0x09, 0x72, 0x65, 0x70, 0x6f, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x08, 0x72, 0x65, 0x70, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f,
+	0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
+	0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x63,
+	0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
+	0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x32, 0x91, 0x03, 0x0a, 0x0a, 0x53, 0x43, 0x4d,
+	0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x45, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x54, 0x6f,
+	0x6b, 0x65, 0x6e, 0x12, 0x1a, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e,
+	0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
+	0x1b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54,
+	0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d,
+	0x0a, 0x10, 0x47, 0x75, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x53, 0x63, 0x6f, 0x70,
+	0x65, 0x73, 0x12, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x47,
+	0x75, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x52,
+	0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
+	0x76, 0x31, 0x2e, 0x47, 0x75, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x53, 0x63, 0x6f,
+	0x70, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a,
+	0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72,
+	0x69, 0x65, 0x73, 0x12, 0x24, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e,
+	0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69,
+	0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x67, 0x69, 0x74, 0x70,
+	0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x70, 0x6f,
+	0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+	0x22, 0x00, 0x12, 0x78, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73,
+	0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x65, 0x73, 0x12,
+	0x2b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74,
+	0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
+	0x6f, 0x72, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x67,
+	0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x75, 0x67,
+	0x67, 0x65, 0x73, 0x74, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x69,
+	0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x39, 0x5a, 0x37,
+	0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f,
+	0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70,
+	0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70,
+	0x69, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+	file_gitpod_v1_scm_proto_rawDescOnce sync.Once
+	file_gitpod_v1_scm_proto_rawDescData = file_gitpod_v1_scm_proto_rawDesc
+)
+
+func file_gitpod_v1_scm_proto_rawDescGZIP() []byte {
+	file_gitpod_v1_scm_proto_rawDescOnce.Do(func() {
+		file_gitpod_v1_scm_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_v1_scm_proto_rawDescData)
+	})
+	return file_gitpod_v1_scm_proto_rawDescData
+}
+
+var file_gitpod_v1_scm_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
+var file_gitpod_v1_scm_proto_goTypes = []interface{}{
+	(*GetTokenRequest)(nil),                   // 0: gitpod.v1.GetTokenRequest
+	(*GetTokenResponse)(nil),                  // 1: gitpod.v1.GetTokenResponse
+	(*GuessTokenScopesRequest)(nil),           // 2: gitpod.v1.GuessTokenScopesRequest
+	(*GuessTokenScopesResponse)(nil),          // 3: gitpod.v1.GuessTokenScopesResponse
+	(*SearchRepositoriesRequest)(nil),         // 4: gitpod.v1.SearchRepositoriesRequest
+	(*SearchRepositoriesResponse)(nil),        // 5: gitpod.v1.SearchRepositoriesResponse
+	(*ListSuggestedRepositoriesRequest)(nil),  // 6: gitpod.v1.ListSuggestedRepositoriesRequest
+	(*ListSuggestedRepositoriesResponse)(nil), // 7: gitpod.v1.ListSuggestedRepositoriesResponse
+	(*GitToken)(nil),                          // 8: gitpod.v1.GitToken
+	(*SuggestedRepository)(nil),               // 9: gitpod.v1.SuggestedRepository
+	(*timestamppb.Timestamp)(nil),             // 10: google.protobuf.Timestamp
+}
+var file_gitpod_v1_scm_proto_depIdxs = []int32{
+	8,  // 0: gitpod.v1.GetTokenResponse.token:type_name -> gitpod.v1.GitToken
+	9,  // 1: gitpod.v1.SearchRepositoriesResponse.repositories:type_name -> gitpod.v1.SuggestedRepository
+	9,  // 2: gitpod.v1.ListSuggestedRepositoriesResponse.repositories:type_name -> gitpod.v1.SuggestedRepository
+	10, // 3: gitpod.v1.GitToken.update_date:type_name -> google.protobuf.Timestamp
+	10, // 4: gitpod.v1.GitToken.expiry_date:type_name -> google.protobuf.Timestamp
+	0,  // 5: gitpod.v1.SCMService.GetToken:input_type -> gitpod.v1.GetTokenRequest
+	2,  // 6: gitpod.v1.SCMService.GuessTokenScopes:input_type -> gitpod.v1.GuessTokenScopesRequest
+	4,  // 7: gitpod.v1.SCMService.SearchRepositories:input_type -> gitpod.v1.SearchRepositoriesRequest
+	6,  // 8: gitpod.v1.SCMService.ListSuggestedRepositories:input_type -> gitpod.v1.ListSuggestedRepositoriesRequest
+	1,  // 9: gitpod.v1.SCMService.GetToken:output_type -> gitpod.v1.GetTokenResponse
+	3,  // 10: gitpod.v1.SCMService.GuessTokenScopes:output_type -> gitpod.v1.GuessTokenScopesResponse
+	5,  // 11: gitpod.v1.SCMService.SearchRepositories:output_type -> gitpod.v1.SearchRepositoriesResponse
+	7,  // 12: gitpod.v1.SCMService.ListSuggestedRepositories:output_type -> gitpod.v1.ListSuggestedRepositoriesResponse
+	9,  // [9:13] is the sub-list for method output_type
+	5,  // [5:9] is the sub-list for method input_type
+	5,  // [5:5] is the sub-list for extension type_name
+	5,  // [5:5] is the sub-list for extension extendee
+	0,  // [0:5] is the sub-list for field type_name
+}
+
+func init() { file_gitpod_v1_scm_proto_init() }
+func file_gitpod_v1_scm_proto_init() {
+	if File_gitpod_v1_scm_proto != nil {
+		return
+	}
+	if !protoimpl.UnsafeEnabled {
+		file_gitpod_v1_scm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*GetTokenRequest); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*GetTokenResponse); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*GuessTokenScopesRequest); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*GuessTokenScopesResponse); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*SearchRepositoriesRequest); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*SearchRepositoriesResponse); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*ListSuggestedRepositoriesRequest); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*ListSuggestedRepositoriesResponse); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*GitToken); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_gitpod_v1_scm_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*SuggestedRepository); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+	}
+	type x struct{}
+	out := protoimpl.TypeBuilder{
+		File: protoimpl.DescBuilder{
+			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+			RawDescriptor: file_gitpod_v1_scm_proto_rawDesc,
+			NumEnums:      0,
+			NumMessages:   10,
+			NumExtensions: 0,
+			NumServices:   1,
+		},
+		GoTypes:           file_gitpod_v1_scm_proto_goTypes,
+		DependencyIndexes: file_gitpod_v1_scm_proto_depIdxs,
+		MessageInfos:      file_gitpod_v1_scm_proto_msgTypes,
+	}.Build()
+	File_gitpod_v1_scm_proto = out.File
+	file_gitpod_v1_scm_proto_rawDesc = nil
+	file_gitpod_v1_scm_proto_goTypes = nil
+	file_gitpod_v1_scm_proto_depIdxs = nil
+}
diff --git a/components/public-api/go/v1/scm_grpc.pb.go b/components/public-api/go/v1/scm_grpc.pb.go
new file mode 100644
index 00000000000000..6f8ef2417e5baa
--- /dev/null
+++ b/components/public-api/go/v1/scm_grpc.pb.go
@@ -0,0 +1,217 @@
+// Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+// Licensed under the GNU Affero General Public License (AGPL).
+// See License.AGPL.txt in the project root for license information.
+
+// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
+// versions:
+// - protoc-gen-go-grpc v1.2.0
+// - protoc             (unknown)
+// source: gitpod/v1/scm.proto
+
+package v1
+
+import (
+	context "context"
+	grpc "google.golang.org/grpc"
+	codes "google.golang.org/grpc/codes"
+	status "google.golang.org/grpc/status"
+)
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the grpc package it is being compiled against.
+// Requires gRPC-Go v1.32.0 or later.
+const _ = grpc.SupportPackageIsVersion7
+
+// SCMServiceClient is the client API for SCMService service.
+//
+// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
+type SCMServiceClient interface {
+	GetToken(ctx context.Context, in *GetTokenRequest, opts ...grpc.CallOption) (*GetTokenResponse, error)
+	GuessTokenScopes(ctx context.Context, in *GuessTokenScopesRequest, opts ...grpc.CallOption) (*GuessTokenScopesResponse, error)
+	SearchRepositories(ctx context.Context, in *SearchRepositoriesRequest, opts ...grpc.CallOption) (*SearchRepositoriesResponse, error)
+	ListSuggestedRepositories(ctx context.Context, in *ListSuggestedRepositoriesRequest, opts ...grpc.CallOption) (*ListSuggestedRepositoriesResponse, error)
+}
+
+type sCMServiceClient struct {
+	cc grpc.ClientConnInterface
+}
+
+func NewSCMServiceClient(cc grpc.ClientConnInterface) SCMServiceClient {
+	return &sCMServiceClient{cc}
+}
+
+func (c *sCMServiceClient) GetToken(ctx context.Context, in *GetTokenRequest, opts ...grpc.CallOption) (*GetTokenResponse, error) {
+	out := new(GetTokenResponse)
+	err := c.cc.Invoke(ctx, "/gitpod.v1.SCMService/GetToken", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
+func (c *sCMServiceClient) GuessTokenScopes(ctx context.Context, in *GuessTokenScopesRequest, opts ...grpc.CallOption) (*GuessTokenScopesResponse, error) {
+	out := new(GuessTokenScopesResponse)
+	err := c.cc.Invoke(ctx, "/gitpod.v1.SCMService/GuessTokenScopes", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
+func (c *sCMServiceClient) SearchRepositories(ctx context.Context, in *SearchRepositoriesRequest, opts ...grpc.CallOption) (*SearchRepositoriesResponse, error) {
+	out := new(SearchRepositoriesResponse)
+	err := c.cc.Invoke(ctx, "/gitpod.v1.SCMService/SearchRepositories", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
+func (c *sCMServiceClient) ListSuggestedRepositories(ctx context.Context, in *ListSuggestedRepositoriesRequest, opts ...grpc.CallOption) (*ListSuggestedRepositoriesResponse, error) {
+	out := new(ListSuggestedRepositoriesResponse)
+	err := c.cc.Invoke(ctx, "/gitpod.v1.SCMService/ListSuggestedRepositories", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
+// SCMServiceServer is the server API for SCMService service.
+// All implementations must embed UnimplementedSCMServiceServer
+// for forward compatibility
+type SCMServiceServer interface {
+	GetToken(context.Context, *GetTokenRequest) (*GetTokenResponse, error)
+	GuessTokenScopes(context.Context, *GuessTokenScopesRequest) (*GuessTokenScopesResponse, error)
+	SearchRepositories(context.Context, *SearchRepositoriesRequest) (*SearchRepositoriesResponse, error)
+	ListSuggestedRepositories(context.Context, *ListSuggestedRepositoriesRequest) (*ListSuggestedRepositoriesResponse, error)
+	mustEmbedUnimplementedSCMServiceServer()
+}
+
+// UnimplementedSCMServiceServer must be embedded to have forward compatible implementations.
+type UnimplementedSCMServiceServer struct {
+}
+
+func (UnimplementedSCMServiceServer) GetToken(context.Context, *GetTokenRequest) (*GetTokenResponse, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method GetToken not implemented")
+}
+func (UnimplementedSCMServiceServer) GuessTokenScopes(context.Context, *GuessTokenScopesRequest) (*GuessTokenScopesResponse, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method GuessTokenScopes not implemented")
+}
+func (UnimplementedSCMServiceServer) SearchRepositories(context.Context, *SearchRepositoriesRequest) (*SearchRepositoriesResponse, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method SearchRepositories not implemented")
+}
+func (UnimplementedSCMServiceServer) ListSuggestedRepositories(context.Context, *ListSuggestedRepositoriesRequest) (*ListSuggestedRepositoriesResponse, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method ListSuggestedRepositories not implemented")
+}
+func (UnimplementedSCMServiceServer) mustEmbedUnimplementedSCMServiceServer() {}
+
+// UnsafeSCMServiceServer may be embedded to opt out of forward compatibility for this service.
+// Use of this interface is not recommended, as added methods to SCMServiceServer will
+// result in compilation errors.
+type UnsafeSCMServiceServer interface {
+	mustEmbedUnimplementedSCMServiceServer()
+}
+
+func RegisterSCMServiceServer(s grpc.ServiceRegistrar, srv SCMServiceServer) {
+	s.RegisterService(&SCMService_ServiceDesc, srv)
+}
+
+func _SCMService_GetToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(GetTokenRequest)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(SCMServiceServer).GetToken(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/gitpod.v1.SCMService/GetToken",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(SCMServiceServer).GetToken(ctx, req.(*GetTokenRequest))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
+func _SCMService_GuessTokenScopes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(GuessTokenScopesRequest)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(SCMServiceServer).GuessTokenScopes(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/gitpod.v1.SCMService/GuessTokenScopes",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(SCMServiceServer).GuessTokenScopes(ctx, req.(*GuessTokenScopesRequest))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
+func _SCMService_SearchRepositories_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(SearchRepositoriesRequest)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(SCMServiceServer).SearchRepositories(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/gitpod.v1.SCMService/SearchRepositories",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(SCMServiceServer).SearchRepositories(ctx, req.(*SearchRepositoriesRequest))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
+func _SCMService_ListSuggestedRepositories_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(ListSuggestedRepositoriesRequest)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(SCMServiceServer).ListSuggestedRepositories(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/gitpod.v1.SCMService/ListSuggestedRepositories",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(SCMServiceServer).ListSuggestedRepositories(ctx, req.(*ListSuggestedRepositoriesRequest))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
+// SCMService_ServiceDesc is the grpc.ServiceDesc for SCMService service.
+// It's only intended for direct use with grpc.RegisterService,
+// and not to be introspected or modified (even as a copy)
+var SCMService_ServiceDesc = grpc.ServiceDesc{
+	ServiceName: "gitpod.v1.SCMService",
+	HandlerType: (*SCMServiceServer)(nil),
+	Methods: []grpc.MethodDesc{
+		{
+			MethodName: "GetToken",
+			Handler:    _SCMService_GetToken_Handler,
+		},
+		{
+			MethodName: "GuessTokenScopes",
+			Handler:    _SCMService_GuessTokenScopes_Handler,
+		},
+		{
+			MethodName: "SearchRepositories",
+			Handler:    _SCMService_SearchRepositories_Handler,
+		},
+		{
+			MethodName: "ListSuggestedRepositories",
+			Handler:    _SCMService_ListSuggestedRepositories_Handler,
+		},
+	},
+	Streams:  []grpc.StreamDesc{},
+	Metadata: "gitpod/v1/scm.proto",
+}
diff --git a/components/public-api/go/v1/v1connect/scm.connect.go b/components/public-api/go/v1/v1connect/scm.connect.go
new file mode 100644
index 00000000000000..5e24c8b5e3fc32
--- /dev/null
+++ b/components/public-api/go/v1/v1connect/scm.connect.go
@@ -0,0 +1,156 @@
+// Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+// Licensed under the GNU Affero General Public License (AGPL).
+// See License.AGPL.txt in the project root for license information.
+
+// Code generated by protoc-gen-connect-go. DO NOT EDIT.
+//
+// Source: gitpod/v1/scm.proto
+
+package v1connect
+
+import (
+	context "context"
+	errors "errors"
+	connect_go "github.com/bufbuild/connect-go"
+	v1 "github.com/gitpod-io/gitpod/components/public-api/go/v1"
+	http "net/http"
+	strings "strings"
+)
+
+// This is a compile-time assertion to ensure that this generated file and the connect package are
+// compatible. If you get a compiler error that this constant is not defined, this code was
+// generated with a version of connect newer than the one compiled into your binary. You can fix the
+// problem by either regenerating this code with an older version of connect or updating the connect
+// version compiled into your binary.
+const _ = connect_go.IsAtLeastVersion0_1_0
+
+const (
+	// SCMServiceName is the fully-qualified name of the SCMService service.
+	SCMServiceName = "gitpod.v1.SCMService"
+)
+
+// SCMServiceClient is a client for the gitpod.v1.SCMService service.
+type SCMServiceClient interface {
+	GetToken(context.Context, *connect_go.Request[v1.GetTokenRequest]) (*connect_go.Response[v1.GetTokenResponse], error)
+	GuessTokenScopes(context.Context, *connect_go.Request[v1.GuessTokenScopesRequest]) (*connect_go.Response[v1.GuessTokenScopesResponse], error)
+	SearchRepositories(context.Context, *connect_go.Request[v1.SearchRepositoriesRequest]) (*connect_go.Response[v1.SearchRepositoriesResponse], error)
+	ListSuggestedRepositories(context.Context, *connect_go.Request[v1.ListSuggestedRepositoriesRequest]) (*connect_go.Response[v1.ListSuggestedRepositoriesResponse], error)
+}
+
+// NewSCMServiceClient constructs a client for the gitpod.v1.SCMService service. By default, it uses
+// the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends
+// uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or
+// connect.WithGRPCWeb() options.
+//
+// The URL supplied here should be the base URL for the Connect or gRPC server (for example,
+// http://api.acme.com or https://acme.com/grpc).
+func NewSCMServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) SCMServiceClient {
+	baseURL = strings.TrimRight(baseURL, "/")
+	return &sCMServiceClient{
+		getToken: connect_go.NewClient[v1.GetTokenRequest, v1.GetTokenResponse](
+			httpClient,
+			baseURL+"/gitpod.v1.SCMService/GetToken",
+			opts...,
+		),
+		guessTokenScopes: connect_go.NewClient[v1.GuessTokenScopesRequest, v1.GuessTokenScopesResponse](
+			httpClient,
+			baseURL+"/gitpod.v1.SCMService/GuessTokenScopes",
+			opts...,
+		),
+		searchRepositories: connect_go.NewClient[v1.SearchRepositoriesRequest, v1.SearchRepositoriesResponse](
+			httpClient,
+			baseURL+"/gitpod.v1.SCMService/SearchRepositories",
+			opts...,
+		),
+		listSuggestedRepositories: connect_go.NewClient[v1.ListSuggestedRepositoriesRequest, v1.ListSuggestedRepositoriesResponse](
+			httpClient,
+			baseURL+"/gitpod.v1.SCMService/ListSuggestedRepositories",
+			opts...,
+		),
+	}
+}
+
+// sCMServiceClient implements SCMServiceClient.
+type sCMServiceClient struct {
+	getToken                  *connect_go.Client[v1.GetTokenRequest, v1.GetTokenResponse]
+	guessTokenScopes          *connect_go.Client[v1.GuessTokenScopesRequest, v1.GuessTokenScopesResponse]
+	searchRepositories        *connect_go.Client[v1.SearchRepositoriesRequest, v1.SearchRepositoriesResponse]
+	listSuggestedRepositories *connect_go.Client[v1.ListSuggestedRepositoriesRequest, v1.ListSuggestedRepositoriesResponse]
+}
+
+// GetToken calls gitpod.v1.SCMService.GetToken.
+func (c *sCMServiceClient) GetToken(ctx context.Context, req *connect_go.Request[v1.GetTokenRequest]) (*connect_go.Response[v1.GetTokenResponse], error) {
+	return c.getToken.CallUnary(ctx, req)
+}
+
+// GuessTokenScopes calls gitpod.v1.SCMService.GuessTokenScopes.
+func (c *sCMServiceClient) GuessTokenScopes(ctx context.Context, req *connect_go.Request[v1.GuessTokenScopesRequest]) (*connect_go.Response[v1.GuessTokenScopesResponse], error) {
+	return c.guessTokenScopes.CallUnary(ctx, req)
+}
+
+// SearchRepositories calls gitpod.v1.SCMService.SearchRepositories.
+func (c *sCMServiceClient) SearchRepositories(ctx context.Context, req *connect_go.Request[v1.SearchRepositoriesRequest]) (*connect_go.Response[v1.SearchRepositoriesResponse], error) {
+	return c.searchRepositories.CallUnary(ctx, req)
+}
+
+// ListSuggestedRepositories calls gitpod.v1.SCMService.ListSuggestedRepositories.
+func (c *sCMServiceClient) ListSuggestedRepositories(ctx context.Context, req *connect_go.Request[v1.ListSuggestedRepositoriesRequest]) (*connect_go.Response[v1.ListSuggestedRepositoriesResponse], error) {
+	return c.listSuggestedRepositories.CallUnary(ctx, req)
+}
+
+// SCMServiceHandler is an implementation of the gitpod.v1.SCMService service.
+type SCMServiceHandler interface {
+	GetToken(context.Context, *connect_go.Request[v1.GetTokenRequest]) (*connect_go.Response[v1.GetTokenResponse], error)
+	GuessTokenScopes(context.Context, *connect_go.Request[v1.GuessTokenScopesRequest]) (*connect_go.Response[v1.GuessTokenScopesResponse], error)
+	SearchRepositories(context.Context, *connect_go.Request[v1.SearchRepositoriesRequest]) (*connect_go.Response[v1.SearchRepositoriesResponse], error)
+	ListSuggestedRepositories(context.Context, *connect_go.Request[v1.ListSuggestedRepositoriesRequest]) (*connect_go.Response[v1.ListSuggestedRepositoriesResponse], error)
+}
+
+// NewSCMServiceHandler builds an HTTP handler from the service implementation. It returns the path
+// on which to mount the handler and the handler itself.
+//
+// By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf
+// and JSON codecs. They also support gzip compression.
+func NewSCMServiceHandler(svc SCMServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler) {
+	mux := http.NewServeMux()
+	mux.Handle("/gitpod.v1.SCMService/GetToken", connect_go.NewUnaryHandler(
+		"/gitpod.v1.SCMService/GetToken",
+		svc.GetToken,
+		opts...,
+	))
+	mux.Handle("/gitpod.v1.SCMService/GuessTokenScopes", connect_go.NewUnaryHandler(
+		"/gitpod.v1.SCMService/GuessTokenScopes",
+		svc.GuessTokenScopes,
+		opts...,
+	))
+	mux.Handle("/gitpod.v1.SCMService/SearchRepositories", connect_go.NewUnaryHandler(
+		"/gitpod.v1.SCMService/SearchRepositories",
+		svc.SearchRepositories,
+		opts...,
+	))
+	mux.Handle("/gitpod.v1.SCMService/ListSuggestedRepositories", connect_go.NewUnaryHandler(
+		"/gitpod.v1.SCMService/ListSuggestedRepositories",
+		svc.ListSuggestedRepositories,
+		opts...,
+	))
+	return "/gitpod.v1.SCMService/", mux
+}
+
+// UnimplementedSCMServiceHandler returns CodeUnimplemented from all methods.
+type UnimplementedSCMServiceHandler struct{}
+
+func (UnimplementedSCMServiceHandler) GetToken(context.Context, *connect_go.Request[v1.GetTokenRequest]) (*connect_go.Response[v1.GetTokenResponse], error) {
+	return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("gitpod.v1.SCMService.GetToken is not implemented"))
+}
+
+func (UnimplementedSCMServiceHandler) GuessTokenScopes(context.Context, *connect_go.Request[v1.GuessTokenScopesRequest]) (*connect_go.Response[v1.GuessTokenScopesResponse], error) {
+	return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("gitpod.v1.SCMService.GuessTokenScopes is not implemented"))
+}
+
+func (UnimplementedSCMServiceHandler) SearchRepositories(context.Context, *connect_go.Request[v1.SearchRepositoriesRequest]) (*connect_go.Response[v1.SearchRepositoriesResponse], error) {
+	return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("gitpod.v1.SCMService.SearchRepositories is not implemented"))
+}
+
+func (UnimplementedSCMServiceHandler) ListSuggestedRepositories(context.Context, *connect_go.Request[v1.ListSuggestedRepositoriesRequest]) (*connect_go.Response[v1.ListSuggestedRepositoriesResponse], error) {
+	return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("gitpod.v1.SCMService.ListSuggestedRepositories is not implemented"))
+}
diff --git a/components/public-api/go/v1/v1connect/scm.proxy.connect.go b/components/public-api/go/v1/v1connect/scm.proxy.connect.go
new file mode 100644
index 00000000000000..433e7e5379ff81
--- /dev/null
+++ b/components/public-api/go/v1/v1connect/scm.proxy.connect.go
@@ -0,0 +1,60 @@
+// Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+// Licensed under the GNU Affero General Public License (AGPL).
+// See License.AGPL.txt in the project root for license information.
+
+// Code generated by protoc-proxy-gen. DO NOT EDIT.
+
+package v1connect
+
+import (
+	context "context"
+	connect_go "github.com/bufbuild/connect-go"
+	v1 "github.com/gitpod-io/gitpod/components/public-api/go/v1"
+)
+
+var _ SCMServiceHandler = (*ProxySCMServiceHandler)(nil)
+
+type ProxySCMServiceHandler struct {
+	Client v1.SCMServiceClient
+	UnimplementedSCMServiceHandler
+}
+
+func (s *ProxySCMServiceHandler) GetToken(ctx context.Context, req *connect_go.Request[v1.GetTokenRequest]) (*connect_go.Response[v1.GetTokenResponse], error) {
+	resp, err := s.Client.GetToken(ctx, req.Msg)
+	if err != nil {
+		// TODO(milan): Convert to correct status code
+		return nil, err
+	}
+
+	return connect_go.NewResponse(resp), nil
+}
+
+func (s *ProxySCMServiceHandler) GuessTokenScopes(ctx context.Context, req *connect_go.Request[v1.GuessTokenScopesRequest]) (*connect_go.Response[v1.GuessTokenScopesResponse], error) {
+	resp, err := s.Client.GuessTokenScopes(ctx, req.Msg)
+	if err != nil {
+		// TODO(milan): Convert to correct status code
+		return nil, err
+	}
+
+	return connect_go.NewResponse(resp), nil
+}
+
+func (s *ProxySCMServiceHandler) SearchRepositories(ctx context.Context, req *connect_go.Request[v1.SearchRepositoriesRequest]) (*connect_go.Response[v1.SearchRepositoriesResponse], error) {
+	resp, err := s.Client.SearchRepositories(ctx, req.Msg)
+	if err != nil {
+		// TODO(milan): Convert to correct status code
+		return nil, err
+	}
+
+	return connect_go.NewResponse(resp), nil
+}
+
+func (s *ProxySCMServiceHandler) ListSuggestedRepositories(ctx context.Context, req *connect_go.Request[v1.ListSuggestedRepositoriesRequest]) (*connect_go.Response[v1.ListSuggestedRepositoriesResponse], error) {
+	resp, err := s.Client.ListSuggestedRepositories(ctx, req.Msg)
+	if err != nil {
+		// TODO(milan): Convert to correct status code
+		return nil, err
+	}
+
+	return connect_go.NewResponse(resp), nil
+}
diff --git a/components/public-api/typescript/src/gitpod/v1/scm_connect.ts b/components/public-api/typescript/src/gitpod/v1/scm_connect.ts
new file mode 100644
index 00000000000000..0147e67be84d64
--- /dev/null
+++ b/components/public-api/typescript/src/gitpod/v1/scm_connect.ts
@@ -0,0 +1,58 @@
+/**
+ * Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+ * Licensed under the GNU Affero General Public License (AGPL).
+ * See License.AGPL.txt in the project root for license information.
+ */
+
+// @generated by protoc-gen-connect-es v1.1.2 with parameter "target=ts"
+// @generated from file gitpod/v1/scm.proto (package gitpod.v1, syntax proto3)
+/* eslint-disable */
+// @ts-nocheck
+
+import { GetTokenRequest, GetTokenResponse, GuessTokenScopesRequest, GuessTokenScopesResponse, ListSuggestedRepositoriesRequest, ListSuggestedRepositoriesResponse, SearchRepositoriesRequest, SearchRepositoriesResponse } from "./scm_pb.js";
+import { MethodKind } from "@bufbuild/protobuf";
+
+/**
+ * @generated from service gitpod.v1.SCMService
+ */
+export const SCMService = {
+  typeName: "gitpod.v1.SCMService",
+  methods: {
+    /**
+     * @generated from rpc gitpod.v1.SCMService.GetToken
+     */
+    getToken: {
+      name: "GetToken",
+      I: GetTokenRequest,
+      O: GetTokenResponse,
+      kind: MethodKind.Unary,
+    },
+    /**
+     * @generated from rpc gitpod.v1.SCMService.GuessTokenScopes
+     */
+    guessTokenScopes: {
+      name: "GuessTokenScopes",
+      I: GuessTokenScopesRequest,
+      O: GuessTokenScopesResponse,
+      kind: MethodKind.Unary,
+    },
+    /**
+     * @generated from rpc gitpod.v1.SCMService.SearchRepositories
+     */
+    searchRepositories: {
+      name: "SearchRepositories",
+      I: SearchRepositoriesRequest,
+      O: SearchRepositoriesResponse,
+      kind: MethodKind.Unary,
+    },
+    /**
+     * @generated from rpc gitpod.v1.SCMService.ListSuggestedRepositories
+     */
+    listSuggestedRepositories: {
+      name: "ListSuggestedRepositories",
+      I: ListSuggestedRepositoriesRequest,
+      O: ListSuggestedRepositoriesResponse,
+      kind: MethodKind.Unary,
+    },
+  }
+} as const;
diff --git a/components/public-api/typescript/src/gitpod/v1/scm_pb.ts b/components/public-api/typescript/src/gitpod/v1/scm_pb.ts
new file mode 100644
index 00000000000000..dbcbdb323334bb
--- /dev/null
+++ b/components/public-api/typescript/src/gitpod/v1/scm_pb.ts
@@ -0,0 +1,473 @@
+/**
+ * Copyright (c) 2023 Gitpod GmbH. All rights reserved.
+ * Licensed under the GNU Affero General Public License (AGPL).
+ * See License.AGPL.txt in the project root for license information.
+ */
+
+// @generated by protoc-gen-es v1.3.3 with parameter "target=ts"
+// @generated from file gitpod/v1/scm.proto (package gitpod.v1, syntax proto3)
+/* eslint-disable */
+// @ts-nocheck
+
+import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
+import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
+
+/**
+ * @generated from message gitpod.v1.GetTokenRequest
+ */
+export class GetTokenRequest extends Message<GetTokenRequest> {
+  /**
+   * @generated from field: string host = 1;
+   */
+  host = "";
+
+  /**
+   * @generated from field: string organization_id = 2;
+   */
+  organizationId = "";
+
+  constructor(data?: PartialMessage<GetTokenRequest>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.GetTokenRequest";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "host", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTokenRequest {
+    return new GetTokenRequest().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTokenRequest {
+    return new GetTokenRequest().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTokenRequest {
+    return new GetTokenRequest().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: GetTokenRequest | PlainMessage<GetTokenRequest> | undefined, b: GetTokenRequest | PlainMessage<GetTokenRequest> | undefined): boolean {
+    return proto3.util.equals(GetTokenRequest, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.GetTokenResponse
+ */
+export class GetTokenResponse extends Message<GetTokenResponse> {
+  /**
+   * @generated from field: gitpod.v1.GitToken token = 1;
+   */
+  token?: GitToken;
+
+  constructor(data?: PartialMessage<GetTokenResponse>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.GetTokenResponse";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "token", kind: "message", T: GitToken },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetTokenResponse {
+    return new GetTokenResponse().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetTokenResponse {
+    return new GetTokenResponse().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetTokenResponse {
+    return new GetTokenResponse().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: GetTokenResponse | PlainMessage<GetTokenResponse> | undefined, b: GetTokenResponse | PlainMessage<GetTokenResponse> | undefined): boolean {
+    return proto3.util.equals(GetTokenResponse, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.GuessTokenScopesRequest
+ */
+export class GuessTokenScopesRequest extends Message<GuessTokenScopesRequest> {
+  /**
+   * @generated from field: string host = 1;
+   */
+  host = "";
+
+  /**
+   * @generated from field: string repo_url = 2;
+   */
+  repoUrl = "";
+
+  /**
+   * @generated from field: string git_command = 3;
+   */
+  gitCommand = "";
+
+  constructor(data?: PartialMessage<GuessTokenScopesRequest>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.GuessTokenScopesRequest";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "host", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 2, name: "repo_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 3, name: "git_command", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GuessTokenScopesRequest {
+    return new GuessTokenScopesRequest().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GuessTokenScopesRequest {
+    return new GuessTokenScopesRequest().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GuessTokenScopesRequest {
+    return new GuessTokenScopesRequest().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: GuessTokenScopesRequest | PlainMessage<GuessTokenScopesRequest> | undefined, b: GuessTokenScopesRequest | PlainMessage<GuessTokenScopesRequest> | undefined): boolean {
+    return proto3.util.equals(GuessTokenScopesRequest, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.GuessTokenScopesResponse
+ */
+export class GuessTokenScopesResponse extends Message<GuessTokenScopesResponse> {
+  /**
+   * @generated from field: repeated string scopes = 1;
+   */
+  scopes: string[] = [];
+
+  /**
+   * @generated from field: string message = 2;
+   */
+  message = "";
+
+  constructor(data?: PartialMessage<GuessTokenScopesResponse>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.GuessTokenScopesResponse";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "scopes", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
+    { no: 2, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GuessTokenScopesResponse {
+    return new GuessTokenScopesResponse().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GuessTokenScopesResponse {
+    return new GuessTokenScopesResponse().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GuessTokenScopesResponse {
+    return new GuessTokenScopesResponse().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: GuessTokenScopesResponse | PlainMessage<GuessTokenScopesResponse> | undefined, b: GuessTokenScopesResponse | PlainMessage<GuessTokenScopesResponse> | undefined): boolean {
+    return proto3.util.equals(GuessTokenScopesResponse, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.SearchRepositoriesRequest
+ */
+export class SearchRepositoriesRequest extends Message<SearchRepositoriesRequest> {
+  /**
+   * @generated from field: string organization_id = 1;
+   */
+  organizationId = "";
+
+  /**
+   * @generated from field: string search_string = 2;
+   */
+  searchString = "";
+
+  /**
+   * @generated from field: int32 limit = 3;
+   */
+  limit = 0;
+
+  constructor(data?: PartialMessage<SearchRepositoriesRequest>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.SearchRepositoriesRequest";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 2, name: "search_string", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchRepositoriesRequest {
+    return new SearchRepositoriesRequest().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchRepositoriesRequest {
+    return new SearchRepositoriesRequest().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchRepositoriesRequest {
+    return new SearchRepositoriesRequest().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: SearchRepositoriesRequest | PlainMessage<SearchRepositoriesRequest> | undefined, b: SearchRepositoriesRequest | PlainMessage<SearchRepositoriesRequest> | undefined): boolean {
+    return proto3.util.equals(SearchRepositoriesRequest, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.SearchRepositoriesResponse
+ */
+export class SearchRepositoriesResponse extends Message<SearchRepositoriesResponse> {
+  /**
+   * @generated from field: repeated gitpod.v1.SuggestedRepository repositories = 1;
+   */
+  repositories: SuggestedRepository[] = [];
+
+  constructor(data?: PartialMessage<SearchRepositoriesResponse>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.SearchRepositoriesResponse";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "repositories", kind: "message", T: SuggestedRepository, repeated: true },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SearchRepositoriesResponse {
+    return new SearchRepositoriesResponse().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SearchRepositoriesResponse {
+    return new SearchRepositoriesResponse().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SearchRepositoriesResponse {
+    return new SearchRepositoriesResponse().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: SearchRepositoriesResponse | PlainMessage<SearchRepositoriesResponse> | undefined, b: SearchRepositoriesResponse | PlainMessage<SearchRepositoriesResponse> | undefined): boolean {
+    return proto3.util.equals(SearchRepositoriesResponse, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.ListSuggestedRepositoriesRequest
+ */
+export class ListSuggestedRepositoriesRequest extends Message<ListSuggestedRepositoriesRequest> {
+  /**
+   * @generated from field: string organization_id = 1;
+   */
+  organizationId = "";
+
+  constructor(data?: PartialMessage<ListSuggestedRepositoriesRequest>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.ListSuggestedRepositoriesRequest";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListSuggestedRepositoriesRequest {
+    return new ListSuggestedRepositoriesRequest().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListSuggestedRepositoriesRequest {
+    return new ListSuggestedRepositoriesRequest().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListSuggestedRepositoriesRequest {
+    return new ListSuggestedRepositoriesRequest().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: ListSuggestedRepositoriesRequest | PlainMessage<ListSuggestedRepositoriesRequest> | undefined, b: ListSuggestedRepositoriesRequest | PlainMessage<ListSuggestedRepositoriesRequest> | undefined): boolean {
+    return proto3.util.equals(ListSuggestedRepositoriesRequest, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.ListSuggestedRepositoriesResponse
+ */
+export class ListSuggestedRepositoriesResponse extends Message<ListSuggestedRepositoriesResponse> {
+  /**
+   * @generated from field: repeated gitpod.v1.SuggestedRepository repositories = 1;
+   */
+  repositories: SuggestedRepository[] = [];
+
+  constructor(data?: PartialMessage<ListSuggestedRepositoriesResponse>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.ListSuggestedRepositoriesResponse";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "repositories", kind: "message", T: SuggestedRepository, repeated: true },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListSuggestedRepositoriesResponse {
+    return new ListSuggestedRepositoriesResponse().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListSuggestedRepositoriesResponse {
+    return new ListSuggestedRepositoriesResponse().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListSuggestedRepositoriesResponse {
+    return new ListSuggestedRepositoriesResponse().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: ListSuggestedRepositoriesResponse | PlainMessage<ListSuggestedRepositoriesResponse> | undefined, b: ListSuggestedRepositoriesResponse | PlainMessage<ListSuggestedRepositoriesResponse> | undefined): boolean {
+    return proto3.util.equals(ListSuggestedRepositoriesResponse, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.GitToken
+ */
+export class GitToken extends Message<GitToken> {
+  /**
+   * @generated from field: string username = 1;
+   */
+  username = "";
+
+  /**
+   * @generated from field: string value = 2;
+   */
+  value = "";
+
+  /**
+   * @generated from field: string id_token = 3;
+   */
+  idToken = "";
+
+  /**
+   * @generated from field: string refresh_token = 4;
+   */
+  refreshToken = "";
+
+  /**
+   * @generated from field: repeated string scopes = 5;
+   */
+  scopes: string[] = [];
+
+  /**
+   * @generated from field: google.protobuf.Timestamp update_date = 6;
+   */
+  updateDate?: Timestamp;
+
+  /**
+   * @generated from field: google.protobuf.Timestamp expiry_date = 7;
+   */
+  expiryDate?: Timestamp;
+
+  constructor(data?: PartialMessage<GitToken>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.GitToken";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "username", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 3, name: "id_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 4, name: "refresh_token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 5, name: "scopes", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
+    { no: 6, name: "update_date", kind: "message", T: Timestamp },
+    { no: 7, name: "expiry_date", kind: "message", T: Timestamp },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GitToken {
+    return new GitToken().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GitToken {
+    return new GitToken().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GitToken {
+    return new GitToken().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: GitToken | PlainMessage<GitToken> | undefined, b: GitToken | PlainMessage<GitToken> | undefined): boolean {
+    return proto3.util.equals(GitToken, a, b);
+  }
+}
+
+/**
+ * @generated from message gitpod.v1.SuggestedRepository
+ */
+export class SuggestedRepository extends Message<SuggestedRepository> {
+  /**
+   * @generated from field: string url = 1;
+   */
+  url = "";
+
+  /**
+   * @generated from field: string repo_name = 2;
+   */
+  repoName = "";
+
+  /**
+   * @generated from field: string config_name = 3;
+   */
+  configName = "";
+
+  /**
+   * @generated from field: string config_id = 4;
+   */
+  configId = "";
+
+  constructor(data?: PartialMessage<SuggestedRepository>) {
+    super();
+    proto3.util.initPartial(data, this);
+  }
+
+  static readonly runtime: typeof proto3 = proto3;
+  static readonly typeName = "gitpod.v1.SuggestedRepository";
+  static readonly fields: FieldList = proto3.util.newFieldList(() => [
+    { no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 2, name: "repo_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 3, name: "config_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+    { no: 4, name: "config_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
+  ]);
+
+  static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SuggestedRepository {
+    return new SuggestedRepository().fromBinary(bytes, options);
+  }
+
+  static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SuggestedRepository {
+    return new SuggestedRepository().fromJson(jsonValue, options);
+  }
+
+  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SuggestedRepository {
+    return new SuggestedRepository().fromJsonString(jsonString, options);
+  }
+
+  static equals(a: SuggestedRepository | PlainMessage<SuggestedRepository> | undefined, b: SuggestedRepository | PlainMessage<SuggestedRepository> | undefined): boolean {
+    return proto3.util.equals(SuggestedRepository, a, b);
+  }
+}