-
Notifications
You must be signed in to change notification settings - Fork 66
feat(mobile): add Codex task parity #3654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
484a6c7
refactor(shared): extract task contracts and model policy
richardsolomou ec5fb80
fix(models): preserve GLM effort policy
richardsolomou fa2dda4
test(ui): wait for async content
richardsolomou 0960bc3
test(ui): isolate plan approval presentation
richardsolomou 3f608f2
fix(shared): Preserve canonical task artifacts
richardsolomou 9c4235c
test(agent): match canonical model picker order
richardsolomou b4e9084
Merge main into shared cloud task foundations
richardsolomou b69d17d
refactor(api-client): extract cloud task transport
richardsolomou 01aec6d
refactor(core): extract cloud task policies
richardsolomou 53e5383
refactor(core): rename cloud task service as engine
richardsolomou 2245a2e
refactor(core): extract portable cloud task engine
richardsolomou 36f9b39
refactor(core): extract repository integration semantics
richardsolomou 3003336
refactor(core): extract pending prompt recovery
richardsolomou b5204c8
refactor(core): extract plan approval presentation
richardsolomou 7ccd259
refactor(core): extract permission option presentation
richardsolomou 046422e
refactor(core): extract composer controls
richardsolomou 37f1c0b
refactor(core): extract composer model policy
richardsolomou 0a1c884
fix(core): prefer streamed plan content
richardsolomou e27b337
refactor(core): extract session presentation semantics
richardsolomou 04a7f52
refactor(api-client): expose shared automation contracts
richardsolomou 0b25fcd
refactor(core): extract inbox presentation semantics
richardsolomou afa5cb6
refactor(core): extract inbox activity presentation
richardsolomou a7e4e28
refactor(core): extract portability contracts
richardsolomou 1f3ad6a
refactor(ui): reuse inbox identifier formatting
richardsolomou 0c3e6fb
refactor(mobile): adopt shared task runtime
richardsolomou 5299c52
fix(mobile): preserve permission mode on resume
richardsolomou 2b5d2a5
refactor(mobile): finish shared task adoption
richardsolomou d98d556
refactor(mobile): adopt repository and inbox transport
richardsolomou 2a5f225
refactor(mobile): adopt shared MCP and composer policies
richardsolomou 0d46bfb
refactor(mobile): adopt shared presentation semantics
richardsolomou 57df2f0
test(mobile): use shared inbox helpers
richardsolomou 807299f
refactor(mobile): finalize shared portability boundary
richardsolomou 38e8dc7
fix(mobile): align portable runtime dependencies
richardsolomou 9284b42
chore(mobile): Upgrade to Expo 57
richardsolomou 5e0b293
feat(mobile): add Codex task controls
richardsolomou f954c02
feat(mobile): align task composer with desktop
richardsolomou 15a35f2
feat(mobile): align task detail with desktop
richardsolomou e6ba8be
fix(mobile): reuse desktop adapter defaults
richardsolomou 3477cd3
fix(mobile): use canonical Codex config
richardsolomou 588bba6
refactor(mobile): share agent configuration controls
richardsolomou a6551d6
fix(mobile): validate resumed agent controls
richardsolomou 1c3bc6c
fix(mobile): centralize agent config transitions
richardsolomou 9d4a2e4
fix(core): treat legacy runs as Claude
richardsolomou c58a11d
Merge main into mobile Codex parity
richardsolomou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Low: Resume discards the previous permission mode
For an existing Codex task without a saved mobile composer selection, this falls back to
autoinstead of the latest run'sinitial_permission_mode. Both resume and retry subsequently send this value explicitly, so repository-controlled instructions can edit the workspace after the user retries a task that was originally Plan or Read only. Preserve and validate the previous run's mode when the adapter matches, falling back to the adapter default only when no valid prior mode exists.