Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:42:35.445Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

crates/edit_prediction_cli/evals/codex-acp--add-derive.md

1.5 KB

+++ repository_url = "https://github.com/zed-industries/codex-acp" revision = "c3d24ee70928fc9da08c131fc632d624413ccc43" +++

Edit History

--- a/src/prompt_args.rs
+++ b/src/prompt_args.rs
@@ -28,7 +28,7 @@ impl PromptArgsError {
     }
 }

-#[derive(Debug)]
+#[derive(Debug, Serialize)]
 pub enum PromptExpansionError {
     Args {
         command: String,

Cursor Position

#[derive(Debug)]
pub enum PromptArgsError {
//                      ^[CURSOR_POSITION]
    MissingAssignment { token: String },
    MissingKey { token: String },
}

Expected Patch

--- a/src/prompt_args.rs
+++ b/src/prompt_args.rs
@@ -9,7 +9,7 @@ use std::sync::LazyLock;
 static PROMPT_ARG_REGEX: LazyLock<Regex> =
     LazyLock::new(|| Regex::new(r"\$[A-Z][A-Z0-9_]*").unwrap_or_else(|_| std::process::abort()));

-#[derive(Debug)]
+#[derive(Debug, Serialize)]
 pub enum PromptArgsError {
     MissingAssignment { token: String },
     MissingKey { token: String },
--- a/src/prompt_args.rs
+++ b/src/prompt_args.rs
@@ -3,19 +3,20 @@
 use regex_lite::Regex;
+use serde::Serialize;
 use shlex::Shlex;
 use std::collections::HashMap;
 use std::collections::HashSet;
 use std::sync::LazyLock;

 static PROMPT_ARG_REGEX: LazyLock<Regex> =
     LazyLock::new(|| Regex::new(r"\$[A-Z][A-Z0-9_]*").unwrap_or_else(|_| std::process::abort()));

-#[derive(Debug)]
+#[derive(Debug, Serialize)]
 pub enum PromptArgsError {
     MissingAssignment { token: String },
     MissingKey { token: String },
 }
Served at tenant.openagents/omega Member data and write actions are omitted.