clawdex-mobile 2.0.1 → 4.0.0
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.
- package/.github/workflows/ci.yml +4 -3
- package/.github/workflows/npm-release.yml +62 -2
- package/.github/workflows/pages.yml +41 -0
- package/AGENTS.md +263 -110
- package/README.md +15 -4
- package/apps/mobile/.env.example +2 -2
- package/apps/mobile/App.tsx +175 -14
- package/apps/mobile/app.json +27 -9
- package/apps/mobile/eas.json +14 -4
- package/apps/mobile/package.json +14 -13
- package/apps/mobile/src/api/__tests__/chatMapping.test.ts +219 -0
- package/apps/mobile/src/api/__tests__/client.test.ts +587 -6
- package/apps/mobile/src/api/__tests__/ws.test.ts +27 -0
- package/apps/mobile/src/api/account.ts +47 -0
- package/apps/mobile/src/api/chatMapping.ts +435 -18
- package/apps/mobile/src/api/client.ts +321 -36
- package/apps/mobile/src/api/rateLimits.ts +143 -0
- package/apps/mobile/src/api/types.ts +107 -0
- package/apps/mobile/src/api/ws.ts +10 -1
- package/apps/mobile/src/components/ChatHeader.tsx +12 -12
- package/apps/mobile/src/components/ChatInput.tsx +154 -88
- package/apps/mobile/src/components/ChatMessage.tsx +548 -93
- package/apps/mobile/src/components/ComposerUsageLimits.tsx +167 -0
- package/apps/mobile/src/components/SelectionSheet.tsx +466 -0
- package/apps/mobile/src/components/ToolBlock.tsx +17 -15
- package/apps/mobile/src/components/VoiceRecordingWaveform.tsx +181 -0
- package/apps/mobile/src/components/WorkspacePickerModal.tsx +812 -0
- package/apps/mobile/src/components/__tests__/chat-input-layout.test.ts +35 -0
- package/apps/mobile/src/components/__tests__/chatImageSource.test.ts +44 -0
- package/apps/mobile/src/components/__tests__/composerUsageLimits.test.ts +138 -0
- package/apps/mobile/src/components/__tests__/voiceWaveform.test.ts +31 -0
- package/apps/mobile/src/components/chat-input-layout.ts +59 -0
- package/apps/mobile/src/components/chatImageSource.ts +86 -0
- package/apps/mobile/src/components/usageLimitBadges.ts +109 -0
- package/apps/mobile/src/components/voiceWaveform.ts +46 -0
- package/apps/mobile/src/config.ts +9 -2
- package/apps/mobile/src/hooks/useVoiceRecorder.ts +8 -1
- package/apps/mobile/src/navigation/DrawerContent.tsx +607 -457
- package/apps/mobile/src/navigation/__tests__/chatThreadTree.test.ts +89 -0
- package/apps/mobile/src/navigation/__tests__/drawerChats.test.ts +65 -0
- package/apps/mobile/src/navigation/chatThreadTree.ts +191 -0
- package/apps/mobile/src/navigation/drawerChats.ts +9 -0
- package/apps/mobile/src/screens/GitScreen.tsx +2 -0
- package/apps/mobile/src/screens/MainScreen.tsx +4239 -1237
- package/apps/mobile/src/screens/OnboardingScreen.tsx +924 -310
- package/apps/mobile/src/screens/SettingsScreen.tsx +256 -226
- package/apps/mobile/src/screens/TerminalScreen.tsx +2 -5
- package/apps/mobile/src/screens/__tests__/agentThreadDisplay.test.ts +80 -0
- package/apps/mobile/src/screens/__tests__/agentThreads.test.ts +170 -0
- package/apps/mobile/src/screens/__tests__/planCardState.test.ts +88 -0
- package/apps/mobile/src/screens/__tests__/subAgentTranscript.test.ts +102 -0
- package/apps/mobile/src/screens/__tests__/transcriptMessages.test.ts +97 -0
- package/apps/mobile/src/screens/agentThreadDisplay.ts +261 -0
- package/apps/mobile/src/screens/agentThreads.ts +167 -0
- package/apps/mobile/src/screens/planCardState.ts +40 -0
- package/apps/mobile/src/screens/subAgentTranscript.ts +149 -0
- package/apps/mobile/src/screens/transcriptMessages.ts +102 -0
- package/apps/mobile/src/theme.ts +6 -12
- package/bin/clawdex.js +7 -6
- package/codex-rust-bridge +0 -0
- package/codex-rust-bridge.exe +0 -0
- package/docs/codex-app-server-cli-gap-tracker.md +14 -5
- package/docs/privacy-policy.md +54 -0
- package/docs/setup-and-operations.md +21 -15
- package/docs/terms-of-service.md +33 -0
- package/docs/troubleshooting.md +15 -19
- package/package.json +6 -5
- package/scripts/bridge-binary.js +194 -0
- package/scripts/setup-wizard.sh +17 -186
- package/scripts/start-bridge-secure.js +240 -0
- package/scripts/start-bridge-secure.sh +1 -40
- package/services/mac-bridge/package.json +6 -6
- package/services/rust-bridge/Cargo.lock +56 -47
- package/services/rust-bridge/Cargo.toml +1 -1
- package/services/rust-bridge/package.json +1 -1
- package/services/rust-bridge/src/main.rs +517 -9
- package/site/index.html +54 -0
- package/site/privacy/index.html +80 -0
- package/site/styles.css +135 -0
- package/site/support/index.html +51 -0
- package/site/terms/index.html +68 -0
|
@@ -113,9 +113,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
113
113
|
|
|
114
114
|
[[package]]
|
|
115
115
|
name = "cc"
|
|
116
|
-
version = "1.2.
|
|
116
|
+
version = "1.2.57"
|
|
117
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "
|
|
118
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
119
119
|
dependencies = [
|
|
120
120
|
"find-msvc-tools",
|
|
121
121
|
"shlex",
|
|
@@ -135,9 +135,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
135
135
|
|
|
136
136
|
[[package]]
|
|
137
137
|
name = "chrono"
|
|
138
|
-
version = "0.4.
|
|
138
|
+
version = "0.4.44"
|
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
-
checksum = "
|
|
140
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
141
141
|
dependencies = [
|
|
142
142
|
"iana-time-zone",
|
|
143
143
|
"js-sys",
|
|
@@ -149,7 +149,7 @@ dependencies = [
|
|
|
149
149
|
|
|
150
150
|
[[package]]
|
|
151
151
|
name = "codex-rust-bridge"
|
|
152
|
-
version = "
|
|
152
|
+
version = "4.0.0"
|
|
153
153
|
dependencies = [
|
|
154
154
|
"axum",
|
|
155
155
|
"base64",
|
|
@@ -586,9 +586,9 @@ dependencies = [
|
|
|
586
586
|
|
|
587
587
|
[[package]]
|
|
588
588
|
name = "ipnet"
|
|
589
|
-
version = "2.
|
|
589
|
+
version = "2.12.0"
|
|
590
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
591
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
592
592
|
|
|
593
593
|
[[package]]
|
|
594
594
|
name = "iri-string"
|
|
@@ -602,15 +602,15 @@ dependencies = [
|
|
|
602
602
|
|
|
603
603
|
[[package]]
|
|
604
604
|
name = "itoa"
|
|
605
|
-
version = "1.0.
|
|
605
|
+
version = "1.0.18"
|
|
606
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
-
checksum = "
|
|
607
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
608
608
|
|
|
609
609
|
[[package]]
|
|
610
610
|
name = "js-sys"
|
|
611
|
-
version = "0.3.
|
|
611
|
+
version = "0.3.91"
|
|
612
612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "
|
|
613
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
614
614
|
dependencies = [
|
|
615
615
|
"once_cell",
|
|
616
616
|
"wasm-bindgen",
|
|
@@ -618,9 +618,9 @@ dependencies = [
|
|
|
618
618
|
|
|
619
619
|
[[package]]
|
|
620
620
|
name = "libc"
|
|
621
|
-
version = "0.2.
|
|
621
|
+
version = "0.2.183"
|
|
622
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
623
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
624
624
|
|
|
625
625
|
[[package]]
|
|
626
626
|
name = "linux-raw-sys"
|
|
@@ -705,9 +705,9 @@ dependencies = [
|
|
|
705
705
|
|
|
706
706
|
[[package]]
|
|
707
707
|
name = "once_cell"
|
|
708
|
-
version = "1.21.
|
|
708
|
+
version = "1.21.4"
|
|
709
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
710
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
711
711
|
|
|
712
712
|
[[package]]
|
|
713
713
|
name = "parking_lot"
|
|
@@ -740,9 +740,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
740
740
|
|
|
741
741
|
[[package]]
|
|
742
742
|
name = "pin-project-lite"
|
|
743
|
-
version = "0.2.
|
|
743
|
+
version = "0.2.17"
|
|
744
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
-
checksum = "
|
|
745
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
746
746
|
|
|
747
747
|
[[package]]
|
|
748
748
|
name = "pin-utils"
|
|
@@ -815,9 +815,9 @@ dependencies = [
|
|
|
815
815
|
|
|
816
816
|
[[package]]
|
|
817
817
|
name = "quinn-proto"
|
|
818
|
-
version = "0.11.
|
|
818
|
+
version = "0.11.14"
|
|
819
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
820
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
821
821
|
dependencies = [
|
|
822
822
|
"bytes",
|
|
823
823
|
"getrandom 0.3.4",
|
|
@@ -850,9 +850,9 @@ dependencies = [
|
|
|
850
850
|
|
|
851
851
|
[[package]]
|
|
852
852
|
name = "quote"
|
|
853
|
-
version = "1.0.
|
|
853
|
+
version = "1.0.45"
|
|
854
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
855
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
856
856
|
dependencies = [
|
|
857
857
|
"proc-macro2",
|
|
858
858
|
]
|
|
@@ -971,7 +971,7 @@ dependencies = [
|
|
|
971
971
|
"errno",
|
|
972
972
|
"libc",
|
|
973
973
|
"linux-raw-sys",
|
|
974
|
-
"windows-sys 0.
|
|
974
|
+
"windows-sys 0.59.0",
|
|
975
975
|
]
|
|
976
976
|
|
|
977
977
|
[[package]]
|
|
@@ -1134,12 +1134,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1134
1134
|
|
|
1135
1135
|
[[package]]
|
|
1136
1136
|
name = "socket2"
|
|
1137
|
-
version = "0.6.
|
|
1137
|
+
version = "0.6.3"
|
|
1138
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
-
checksum = "
|
|
1139
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1140
1140
|
dependencies = [
|
|
1141
1141
|
"libc",
|
|
1142
|
-
"windows-sys 0.
|
|
1142
|
+
"windows-sys 0.61.2",
|
|
1143
1143
|
]
|
|
1144
1144
|
|
|
1145
1145
|
[[package]]
|
|
@@ -1217,9 +1217,9 @@ dependencies = [
|
|
|
1217
1217
|
|
|
1218
1218
|
[[package]]
|
|
1219
1219
|
name = "tinyvec"
|
|
1220
|
-
version = "1.
|
|
1220
|
+
version = "1.11.0"
|
|
1221
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "
|
|
1222
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1223
1223
|
dependencies = [
|
|
1224
1224
|
"tinyvec_macros",
|
|
1225
1225
|
]
|
|
@@ -1232,9 +1232,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1232
1232
|
|
|
1233
1233
|
[[package]]
|
|
1234
1234
|
name = "tokio"
|
|
1235
|
-
version = "1.
|
|
1235
|
+
version = "1.50.0"
|
|
1236
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
-
checksum = "
|
|
1237
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1238
1238
|
dependencies = [
|
|
1239
1239
|
"bytes",
|
|
1240
1240
|
"libc",
|
|
@@ -1249,9 +1249,9 @@ dependencies = [
|
|
|
1249
1249
|
|
|
1250
1250
|
[[package]]
|
|
1251
1251
|
name = "tokio-macros"
|
|
1252
|
-
version = "2.6.
|
|
1252
|
+
version = "2.6.1"
|
|
1253
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1254
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1255
1255
|
dependencies = [
|
|
1256
1256
|
"proc-macro2",
|
|
1257
1257
|
"quote",
|
|
@@ -1449,9 +1449,9 @@ dependencies = [
|
|
|
1449
1449
|
|
|
1450
1450
|
[[package]]
|
|
1451
1451
|
name = "wasm-bindgen"
|
|
1452
|
-
version = "0.2.
|
|
1452
|
+
version = "0.2.114"
|
|
1453
1453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
-
checksum = "
|
|
1454
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1455
1455
|
dependencies = [
|
|
1456
1456
|
"cfg-if",
|
|
1457
1457
|
"once_cell",
|
|
@@ -1462,9 +1462,9 @@ dependencies = [
|
|
|
1462
1462
|
|
|
1463
1463
|
[[package]]
|
|
1464
1464
|
name = "wasm-bindgen-futures"
|
|
1465
|
-
version = "0.4.
|
|
1465
|
+
version = "0.4.64"
|
|
1466
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
-
checksum = "
|
|
1467
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
1468
1468
|
dependencies = [
|
|
1469
1469
|
"cfg-if",
|
|
1470
1470
|
"futures-util",
|
|
@@ -1476,9 +1476,9 @@ dependencies = [
|
|
|
1476
1476
|
|
|
1477
1477
|
[[package]]
|
|
1478
1478
|
name = "wasm-bindgen-macro"
|
|
1479
|
-
version = "0.2.
|
|
1479
|
+
version = "0.2.114"
|
|
1480
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1481
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1482
1482
|
dependencies = [
|
|
1483
1483
|
"quote",
|
|
1484
1484
|
"wasm-bindgen-macro-support",
|
|
@@ -1486,9 +1486,9 @@ dependencies = [
|
|
|
1486
1486
|
|
|
1487
1487
|
[[package]]
|
|
1488
1488
|
name = "wasm-bindgen-macro-support"
|
|
1489
|
-
version = "0.2.
|
|
1489
|
+
version = "0.2.114"
|
|
1490
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1491
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1492
1492
|
dependencies = [
|
|
1493
1493
|
"bumpalo",
|
|
1494
1494
|
"proc-macro2",
|
|
@@ -1499,18 +1499,18 @@ dependencies = [
|
|
|
1499
1499
|
|
|
1500
1500
|
[[package]]
|
|
1501
1501
|
name = "wasm-bindgen-shared"
|
|
1502
|
-
version = "0.2.
|
|
1502
|
+
version = "0.2.114"
|
|
1503
1503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1504
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1505
1505
|
dependencies = [
|
|
1506
1506
|
"unicode-ident",
|
|
1507
1507
|
]
|
|
1508
1508
|
|
|
1509
1509
|
[[package]]
|
|
1510
1510
|
name = "web-sys"
|
|
1511
|
-
version = "0.3.
|
|
1511
|
+
version = "0.3.91"
|
|
1512
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
-
checksum = "
|
|
1513
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1514
1514
|
dependencies = [
|
|
1515
1515
|
"js-sys",
|
|
1516
1516
|
"wasm-bindgen",
|
|
@@ -1625,6 +1625,15 @@ dependencies = [
|
|
|
1625
1625
|
"windows-targets 0.52.6",
|
|
1626
1626
|
]
|
|
1627
1627
|
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "windows-sys"
|
|
1630
|
+
version = "0.59.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"windows-targets 0.52.6",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1628
1637
|
[[package]]
|
|
1629
1638
|
name = "windows-sys"
|
|
1630
1639
|
version = "0.60.2"
|
|
@@ -1809,18 +1818,18 @@ dependencies = [
|
|
|
1809
1818
|
|
|
1810
1819
|
[[package]]
|
|
1811
1820
|
name = "zerocopy"
|
|
1812
|
-
version = "0.8.
|
|
1821
|
+
version = "0.8.47"
|
|
1813
1822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
-
checksum = "
|
|
1823
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
1815
1824
|
dependencies = [
|
|
1816
1825
|
"zerocopy-derive",
|
|
1817
1826
|
]
|
|
1818
1827
|
|
|
1819
1828
|
[[package]]
|
|
1820
1829
|
name = "zerocopy-derive"
|
|
1821
|
-
version = "0.8.
|
|
1830
|
+
version = "0.8.47"
|
|
1822
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
-
checksum = "
|
|
1832
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
1824
1833
|
dependencies = [
|
|
1825
1834
|
"proc-macro2",
|
|
1826
1835
|
"quote",
|