mirror of
https://github.com/openai/codex.git
synced 2026-04-30 19:32:04 +03:00
tui: add /validate subcommand with high‑risk web validation
- Add /validate slash command - Plan + execute validations (Playwright MCP preference, curl, python) - Pre‑validation account setup: auto‑register or manual fallback (opens login) - Persist credentials in context/validation/credentials.json (usernames logged) - Update bugs.md and report with validation results + transcript Also adds Playwright tool support, inline python execution, and UI logs.
This commit is contained in:
@@ -132,6 +132,13 @@ pub(crate) enum AppEvent {
|
||||
responder: oneshot::Sender<bool>,
|
||||
},
|
||||
|
||||
/// Prompt the user to register at least two accounts and paste credentials.
|
||||
/// The responder receives `Some(raw_input)` when the user submits text, or `None` if dismissed.
|
||||
OpenRegistrationPrompt {
|
||||
url: Option<String>,
|
||||
responder: oneshot::Sender<Option<String>>,
|
||||
},
|
||||
|
||||
/// Notify that the security review scope has been resolved to specific paths.
|
||||
SecurityReviewScopeResolved {
|
||||
paths: Vec<String>,
|
||||
|
||||
Reference in New Issue
Block a user