- Co-Authored-By
- Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
fix(coder-lite,openagents-cli): make --dev a mode, not a lane
Deploy story
What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.
Not deployed through the forge lane
No push, promotion, build, or deploy receipt references this commit (receipts are scanned over a bounded recent window). Changes shipped by full node replacement carry their proof in the release gate receipt instead.
Changed files
-
modified
crates/coder-lite/src/interactive.rs -
modified
crates/coder-lite/src/main.rs -
modified
crates/coder-lite/src/runtime.rs -
modified
crates/coder-lite/tests/turn.rs -
modified
crates/openagents-cli/src/runtime.rs
Diff
5 files changed, +33 -41
crates/coder-lite/src/interactive.rs modified +4
@@ -52,6 +52,8 @@ pub struct SessionOptions {
| 52 | 52 |
|
| 53 | 53 |
|
| 54 | 54 |
|
| 55 |
|
|
| 56 |
|
|
| 55 | 57 |
|
| 56 | 58 |
|
| 57 | 59 |
|
crates/coder-lite/src/main.rs modified +5 -10
@@ -40,10 +40,9 @@ Options:
| 40 | 40 |
|
| 41 | 41 |
|
| 42 | 42 |
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 46 |
|
|
| 43 |
|
|
| 44 |
|
|
| 45 |
|
|
| 47 | 46 |
|
| 48 | 47 |
|
| 49 | 48 |
|
@@ -78,13 +77,8 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
| 78 | 77 |
|
| 79 | 78 |
|
| 80 | 79 |
|
| 81 |
|
|
| 82 |
|
|
| 83 |
|
|
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 | 80 |
|
| 81 |
|
|
| 88 | 82 |
|
| 89 | 83 |
|
| 90 | 84 |
|
crates/coder-lite/src/runtime.rs modified +5 -1
@@ -171,6 +171,7 @@ impl Session {
| 171 | 171 |
|
| 172 | 172 |
|
| 173 | 173 |
|
| 174 |
|
|
| 174 | 175 |
|
| 175 | 176 |
|
| 176 | 177 |
|
@@ -180,6 +181,7 @@ impl Session {
| 180 | 181 |
|
| 181 | 182 |
|
| 182 | 183 |
|
| 184 |
|
|
| 183 | 185 |
|
| 184 | 186 |
|
| 185 | 187 |
|
crates/coder-lite/tests/turn.rs modified +1
crates/openagents-cli/src/runtime.rs modified +18 -30
@@ -189,10 +189,6 @@ pub enum Lane {
| 189 | 189 |
|
| 190 | 190 |
|
| 191 | 191 |
|
| 192 |
|
|
| 193 |
|
|
| 194 |
|
|
| 195 |
|
|
| 196 | 192 |
|
| 197 | 193 |
|
| 198 | 194 |
|
@@ -203,25 +199,16 @@ impl Lane {
| 203 | 199 |
|
| 204 | 200 |
|
| 205 | 201 |
|
| 206 |
|
|
| 207 |
|
|
| 202 |
|
|
| 208 | 203 |
|
| 209 | 204 |
|
| 210 | 205 |
|
| 211 | 206 |
|
| 212 |
|
|
| 213 | 207 |
|
| 214 |
|
|
| 215 |
|
|
| 216 |
|
|
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 208 |
|
|
| 209 |
|
|
| 224 | 210 |
|
| 211 |
|
|
| 225 | 212 |
|
| 226 | 213 |
|
| 227 | 214 |
|
@@ -233,8 +220,6 @@ impl Lane {
| 233 | 220 |
|
| 234 | 221 |
|
| 235 | 222 |
|
| 236 |
|
|
| 237 |
|
|
| 238 | 223 |
|
| 239 | 224 |
|
| 240 | 225 |
|
@@ -245,11 +230,6 @@ impl Lane {
| 245 | 230 |
|
| 246 | 231 |
|
| 247 | 232 |
|
| 248 |
|
|
| 249 |
|
|
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 | 233 |
|
| 254 | 234 |
|
| 255 | 235 |
|
@@ -261,7 +241,6 @@ impl Lane {
| 261 | 241 |
|
| 262 | 242 |
|
| 263 | 243 |
|
| 264 |
|
|
| 265 | 244 |
|
| 266 | 245 |
|
| 267 | 246 |
|
@@ -274,8 +253,6 @@ impl Lane {
| 274 | 253 |
|
| 275 | 254 |
|
| 276 | 255 |
|
| 277 |
|
|
| 278 |
|
|
| 279 | 256 |
|
| 280 | 257 |
|
| 281 | 258 |
|
@@ -587,6 +564,10 @@ pub struct ChatMessage {
| 587 | 564 |
|
| 588 | 565 |
|
| 589 | 566 |
|
| 567 |
|
|
| 568 |
|
|
| 569 |
|
|
| 570 |
|
|
| 590 | 571 |
|
| 591 | 572 |
|
| 592 | 573 |
|
@@ -675,6 +656,7 @@ impl CoderRuntimeSession {
| 675 | 656 |
|
| 676 | 657 |
|
| 677 | 658 |
|
| 659 |
|
|
| 678 | 660 |
|
| 679 | 661 |
|
| 680 | 662 |
|
@@ -719,6 +701,12 @@ impl CoderRuntimeSession {
| 719 | 701 |
|
| 720 | 702 |
|
| 721 | 703 |
|
| 704 |
|
|
| 705 |
|
|
| 706 |
|
|
| 707 |
|
|
| 708 |
|
|
| 709 |
|
|
| 722 | 710 |
|
| 723 | 711 |
|
| 724 | 712 |
|
@@ -1277,10 +1265,10 @@ impl CoderRuntimeSession {
| 1277 | 1265 |
|
| 1278 | 1266 |
|
| 1279 | 1267 |
|
| 1280 |
|
|
| 1281 |
|
|
| 1282 |
|
|
| 1268 |
|
|
| 1283 | 1269 |
|
| 1270 |
|
|
| 1271 |
|
|
| 1284 | 1272 |
|
| 1285 | 1273 |
|
| 1286 | 1274 |
|