@mobb.ai/cli 1.4.49 → 1.4.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.env +10 -0
  2. package/LICENSE +21 -0
  3. package/README.md +210 -78
  4. package/bin/cli.mjs +2 -0
  5. package/dist/args/commands/upload_ai_blame.d.mts +164 -0
  6. package/dist/args/commands/upload_ai_blame.mjs +6614 -0
  7. package/dist/hash_search/index.d.mts +10 -0
  8. package/dist/hash_search/index.mjs +112 -0
  9. package/dist/index.d.mts +2 -0
  10. package/dist/index.mjs +29052 -0
  11. package/package.json +160 -19
  12. package/src/features/codeium_intellij/proto/buf/validate/validate.proto +504 -0
  13. package/src/features/codeium_intellij/proto/exa/auto_cascade_common_pb/auto_cascade_common.proto +81 -0
  14. package/src/features/codeium_intellij/proto/exa/bug_checker_pb/bug_checker.proto +24 -0
  15. package/src/features/codeium_intellij/proto/exa/cascade_plugins_pb/cascade_plugins.proto +108 -0
  16. package/src/features/codeium_intellij/proto/exa/chat_client_server_pb/chat_client_server.proto +56 -0
  17. package/src/features/codeium_intellij/proto/exa/chat_pb/chat.proto +457 -0
  18. package/src/features/codeium_intellij/proto/exa/code_edit/code_edit_pb/code_edit.proto +191 -0
  19. package/src/features/codeium_intellij/proto/exa/codeium_common_pb/codeium_common.proto +3783 -0
  20. package/src/features/codeium_intellij/proto/exa/context_module_pb/context_module.proto +172 -0
  21. package/src/features/codeium_intellij/proto/exa/cortex_pb/cortex.proto +3604 -0
  22. package/src/features/codeium_intellij/proto/exa/diff_action_pb/diff_action.proto +73 -0
  23. package/src/features/codeium_intellij/proto/exa/extension_server_pb/extension_server.proto +565 -0
  24. package/src/features/codeium_intellij/proto/exa/index_pb/index.proto +474 -0
  25. package/src/features/codeium_intellij/proto/exa/knowledge_base_pb/knowledge_base.proto +149 -0
  26. package/src/features/codeium_intellij/proto/exa/language_server_pb/language_server.proto +2504 -0
  27. package/src/features/codeium_intellij/proto/exa/opensearch_clients_pb/opensearch_clients.proto +505 -0
  28. package/src/features/codeium_intellij/proto/exa/product_analytics_pb/product_analytics.proto +31 -0
  29. package/src/features/codeium_intellij/proto/exa/reactive_component_pb/reactive_component.proto +104 -0
  30. package/src/features/codeium_intellij/proto/exa/seat_management_pb/seat_management.proto +2349 -0
  31. package/src/post_install/binary.mjs +89 -0
  32. package/src/post_install/constants.mjs +2 -0
  33. package/src/post_install/cx_install.mjs +72 -0
  34. package/bin/mobbdev.js +0 -10
  35. package/lib/binary.js +0 -52
@@ -0,0 +1,81 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.auto_cascade_common_pb;
4
+
5
+ import "buf/validate/validate.proto";
6
+ import "exa/cortex_pb/cortex.proto";
7
+ import "google/protobuf/timestamp.proto";
8
+
9
+ option go_package = "github.com/Exafunction/Exafunction/exa/auto_cascade_common_pb";
10
+
11
+ message GitRepoInfo {
12
+ string repo_name = 1;
13
+ string branch = 2;
14
+ string commit = 3;
15
+ string pr_url = 4;
16
+ }
17
+
18
+ message SessionInfo {
19
+ string session_id = 1;
20
+ string explanation = 2;
21
+ string ssh_url = 3;
22
+ cortex_pb.CascadeRunStatus status = 4;
23
+ string summary = 5;
24
+ cortex_pb.CortexTrajectory trajectory = 6;
25
+ string session_key = 7;
26
+ google.protobuf.Timestamp created_at = 8;
27
+ repeated GitRepoInfo git_repos = 9;
28
+ google.protobuf.Timestamp updated_at = 10;
29
+ }
30
+
31
+ message SessionInfos {
32
+ map<string, SessionInfo> sessions = 1;
33
+ }
34
+
35
+ message GithubPullRequestInfo {
36
+ string url = 1;
37
+ string owner = 2;
38
+ string repo = 3;
39
+ string title = 4;
40
+ string number = 5;
41
+ GithubCICheckStatus ci_status = 6;
42
+ GithubPullRequestBranchStatus branch_status = 7;
43
+ google.protobuf.Timestamp updated_at = 8;
44
+ }
45
+
46
+ message GithubInstallationInfo {
47
+ string installation_id = 1;
48
+ string organization_name = 2;
49
+ }
50
+
51
+ enum BranchStatus {
52
+ BRANCH_STATUS_UNSPECIFIED = 0;
53
+ BRANCH_STATUS_NO_PR = 1;
54
+ BRANCH_STATUS_PR_OPEN = 2;
55
+ BRANCH_STATUS_PR_CLOSED = 3;
56
+ BRANCH_STATUS_PR_MERGED = 4;
57
+ BRANCH_STATUS_HAS_SUGGESTION = 5;
58
+ }
59
+
60
+ enum CommentType {
61
+ COMMENT_TYPE_UNSPECIFIED = 0;
62
+ COMMENT_TYPE_MANUAL_REVIEW_TRIGGER = 1;
63
+ COMMENT_TYPE_LGTM = 2;
64
+ COMMENT_TYPE_REVIEW_BODY = 3;
65
+ COMMENT_TYPE_REVIEW_COMMENT = 4;
66
+ }
67
+
68
+ enum GithubCICheckStatus {
69
+ GITHUB_CI_CHECK_STATUS_UNSPECIFIED = 0;
70
+ GITHUB_CI_CHECK_STATUS_SUCCESS = 1;
71
+ GITHUB_CI_CHECK_STATUS_FAILED = 2;
72
+ GITHUB_CI_CHECK_STATUS_PENDING = 3;
73
+ }
74
+
75
+ enum GithubPullRequestBranchStatus {
76
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_UNSPECIFIED = 0;
77
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_OPEN = 1;
78
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_CLOSED = 2;
79
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_DRAFT = 3;
80
+ GITHUB_PULL_REQUEST_BRANCH_STATUS_MERGED = 4;
81
+ }
@@ -0,0 +1,24 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.bug_checker_pb;
4
+
5
+ option go_package = "github.com/Exafunction/Exafunction/exa/bug_checker_pb";
6
+
7
+ message Fix {
8
+ string old_str = 1;
9
+ string new_str = 2;
10
+ }
11
+
12
+ message Bug {
13
+ string id = 1;
14
+ string file = 2;
15
+ int32 start = 3;
16
+ int32 end = 4;
17
+ string title = 5;
18
+ string description = 6;
19
+ string severity = 7;
20
+ string resolution = 8;
21
+ double confidence = 9;
22
+ repeated string categories = 10;
23
+ Fix fix = 11;
24
+ }
@@ -0,0 +1,108 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.cascade_plugins_pb;
4
+
5
+ import "buf/validate/validate.proto";
6
+ import "exa/codeium_common_pb/codeium_common.proto";
7
+
8
+ option go_package = "github.com/Exafunction/Exafunction/exa/cascade_plugins_pb";
9
+
10
+ service CascadePluginsService {
11
+ rpc GetAvailableCascadePlugins(GetAvailableCascadePluginsRequest) returns (GetAvailableCascadePluginsResponse);
12
+ rpc InstallCascadePlugin(InstallCascadePluginRequest) returns (InstallCascadePluginResponse);
13
+ rpc GetCascadePluginById(GetCascadePluginByIdRequest) returns (GetCascadePluginByIdResponse);
14
+ rpc GetMcpClientInfos(GetMcpClientInfosRequest) returns (GetMcpClientInfosResponse);
15
+ }
16
+
17
+ message CascadePluginTemplate {
18
+ string title = 1;
19
+ string id = 2;
20
+ string link = 3;
21
+ string description = 4;
22
+ map<string, CascadePluginCommand> commands = 5 [deprecated = true];
23
+ int64 installation_count = 6;
24
+ string trust_level = 7;
25
+ string readme = 8;
26
+
27
+ oneof configuration {
28
+ CascadePluginLocalConfig local = 9;
29
+ CascadePluginRemoteConfig remote = 10;
30
+ }
31
+ }
32
+
33
+ message CascadePluginLocalConfig {
34
+ map<string, CascadePluginCommand> commands = 5;
35
+ }
36
+
37
+ message CascadePluginCommand {
38
+ CascadePluginCommandTemplate template = 1;
39
+ repeated CascadePluginCommandVariable variables = 2;
40
+ }
41
+
42
+ message CascadePluginCommandTemplate {
43
+ string command = 1;
44
+ repeated string args = 2;
45
+ map<string, string> env = 3;
46
+ }
47
+
48
+ message CascadePluginCommandVariable {
49
+ string name = 1;
50
+ string title = 2;
51
+ string description = 3;
52
+ string link = 4;
53
+ string type = 5;
54
+ }
55
+
56
+ message CascadePluginRemoteConfig {
57
+ CascadePluginRemoteConfigTemplate template = 1;
58
+ }
59
+
60
+ message CascadePluginRemoteConfigTemplate {
61
+ string server_url = 1;
62
+ map<string, string> headers = 2;
63
+ }
64
+
65
+ message GetAvailableCascadePluginsRequest {
66
+ codeium_common_pb.Metadata metadata = 1;
67
+ string os = 2;
68
+
69
+ oneof _search_query {
70
+ string search_query = 3 [deprecated = true];
71
+ }
72
+ }
73
+
74
+ message GetAvailableCascadePluginsResponse {
75
+ repeated CascadePluginTemplate plugins = 1;
76
+ }
77
+
78
+ message InstallCascadePluginRequest {
79
+ codeium_common_pb.Metadata metadata = 1;
80
+ string plugin_id = 2;
81
+ }
82
+
83
+ message InstallCascadePluginResponse {
84
+ int64 installation_count = 1;
85
+ }
86
+
87
+ message GetCascadePluginByIdRequest {
88
+ codeium_common_pb.Metadata metadata = 1;
89
+ string os = 2;
90
+ string plugin_id = 3;
91
+ }
92
+
93
+ message GetCascadePluginByIdResponse {
94
+ CascadePluginTemplate plugin = 1;
95
+ }
96
+
97
+ message McpClientInfo {
98
+ string client_id = 1;
99
+ string client_secret = 2;
100
+ }
101
+
102
+ message GetMcpClientInfosRequest {
103
+ codeium_common_pb.Metadata metadata = 1;
104
+ }
105
+
106
+ message GetMcpClientInfosResponse {
107
+ map<string, McpClientInfo> client_infos = 1;
108
+ }
@@ -0,0 +1,56 @@
1
+ syntax = "proto3";
2
+
3
+ package exa.chat_client_server_pb;
4
+
5
+ import "exa/codeium_common_pb/codeium_common.proto";
6
+
7
+ service ChatClientServerService {
8
+ rpc StartChatClientRequestStream(StartChatClientRequestStreamRequest) returns (stream ChatClientRequest);
9
+ }
10
+
11
+ message StartChatClientRequestStreamRequest {
12
+
13
+ }
14
+
15
+ message ChatClientRequest {
16
+ oneof request {
17
+ AddCascadeInputRequest add_cascade_input = 1;
18
+ SendActionToChatPanelRequest send_action_to_chat_panel = 2;
19
+ InitialAckRequest initial_ack = 3;
20
+ RefreshCustomizationRequest refresh_customization = 4;
21
+ SendCascadeInputRequest send_cascade_input = 5;
22
+ }
23
+ }
24
+
25
+ message AddCascadeInputRequest {
26
+ repeated codeium_common_pb.TextOrScopeItem items = 1;
27
+ repeated codeium_common_pb.ImageData images = 2;
28
+ }
29
+
30
+ message SendCascadeInputRequest {
31
+ repeated codeium_common_pb.TextOrScopeItem items = 1;
32
+ repeated codeium_common_pb.ImageData images = 2;
33
+ }
34
+
35
+ message SendActionToChatPanelRequest {
36
+ string action_type = 1;
37
+ repeated bytes payload = 2;
38
+ }
39
+
40
+ message FileDiffState {
41
+ string uri = 1;
42
+ int32 num_insertions = 2;
43
+ int32 num_deletions = 3;
44
+
45
+ oneof _cascade_id {
46
+ string cascade_id = 4;
47
+ }
48
+ }
49
+
50
+ message InitialAckRequest {
51
+
52
+ }
53
+
54
+ message RefreshCustomizationRequest {
55
+ codeium_common_pb.RefreshCustomizationType config_type = 1;
56
+ }