Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/edda-bridge-claude/src/admin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const HOOK_EVENTS: &[&str] = &[
"TeammateIdle",
];

/// Check if a matcher group (Claude Code hook format) contains a edda hook.
/// Check if a matcher group (Claude Code hook format) contains an edda hook.
fn matcher_group_contains_edda(group: &serde_json::Value) -> bool {
// New format: { "matcher": "", "hooks": [{ "type": "command", "command": "edda hook claude" }] }
if let Some(hooks_arr) = group.get("hooks").and_then(|h| h.as_array()) {
Expand Down
2 changes: 1 addition & 1 deletion crates/edda-conductor/src/check/edda_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::path::Path;
use std::time::Instant;
use tokio::process::Command;

/// Check that a edda event of the given type exists.
/// Check that an edda event of the given type exists.
/// Shells out to `edda log` (or `edda log` after rename).
pub async fn check_edda_event(event_type: &str, after: Option<&str>, cwd: &Path) -> CheckOutput {
let start = Instant::now();
Expand Down
2 changes: 1 addition & 1 deletion crates/edda-ledger/src/ledger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ impl Ledger {
let paths = EddaPaths::discover(repo_root);
if !paths.is_initialized() {
anyhow::bail!(
"not a edda workspace ({}/.edda not found). Run `edda init` first.",
"not an edda workspace ({}/.edda not found). Run `edda init` first.",
paths.root.display()
);
}
Expand Down
2 changes: 1 addition & 1 deletion crates/edda-mcp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ fn to_mcp_err(e: anyhow::Error) -> McpError {
pub async fn serve(repo_root: &Path) -> anyhow::Result<()> {
let paths = edda_ledger::paths::EddaPaths::discover(repo_root);
if !paths.is_initialized() {
anyhow::bail!("not a edda workspace (run `edda init` first)");
anyhow::bail!("not an edda workspace (run `edda init` first)");
}

let server = EddaServer::new(repo_root.to_path_buf());
Expand Down
2 changes: 1 addition & 1 deletion crates/edda-serve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ impl IntoResponse for AppError {
pub async fn serve(repo_root: &Path, config: ServeConfig) -> anyhow::Result<()> {
let paths = edda_ledger::EddaPaths::discover(repo_root);
if !paths.is_initialized() {
anyhow::bail!("not a edda workspace (run `edda init` first)");
anyhow::bail!("not an edda workspace (run `edda init` first)");
}

let store_root = edda_store::store_root();
Expand Down
Loading