chore(cursor-proxy-debugger): enhance traffic capture for Fork Chat and update README

- Added support for capturing and decoding Fork Chat traffic, including `ForkBackgroundComposer`, `NotifyConversationClone`, and `UploadConversationBlobs`.
- Updated the README to reflect new features and usage instructions for Fork Chat traffic.
- Modified `.gitignore` to include `proto/extensions-cursor-app/`.
- Refactored `Taskfile.yml` to improve error messages related to Cursor extensions.
- Introduced new tests for decoding functionality in `cursor-proxy-debugger`.
This commit is contained in:
leookun
2026-08-05 01:17:01 +08:00
parent 058aaa532e
commit 2f47f02497
20 changed files with 29904 additions and 9643 deletions
+4 -4
View File
@@ -4,7 +4,7 @@ package internapi.v1;
option go_package = "react-admin/cursor-server/gen/internapi/v1;internapiv1";
// Copied from: local:internapi.v1.BlobData (var: hxe)
// Copied from: local:internapi.v1.BlobData (var: Mn)
message BlobData {
BlobType blob_type = 1;
bytes blob_id = 2;
@@ -14,12 +14,12 @@ message BlobData {
}
}
// Copied from: local:internapi.v1.BlobDataPerMessage (var: Txe)
// Copied from: local:internapi.v1.BlobDataPerMessage (var: Ln)
message BlobDataPerMessage {
repeated BlobData blob_data = 1;
}
// Copied from: local:internapi.v1.BlobType (var: Axe)
// Copied from: local:internapi.v1.BlobType (var: Nn)
enum BlobType {
BLOB_TYPE_UNSPECIFIED = 0;
BLOB_TYPE_IMAGE = 1;
@@ -34,7 +34,7 @@ enum BlobType {
BLOB_TYPE_VIDEO = 10;
}
// Copied from: local:internapi.v1.ImageBlobData (var: pxe)
// Copied from: local:internapi.v1.ImageBlobData (var: bn)
message ImageBlobData {
string mime_type = 1;
}