Skip to content
Merged
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
1 change: 1 addition & 0 deletions crates/agentmesh/tests/cli_flows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ fn normalize_snapshot_text(text: &str, repo: &Path, cache: &Path, home: &Path) -
.replace(&repo.display().to_string(), "<repo>")
.replace(&cache.display().to_string(), "<cache>")
.replace(&home.display().to_string(), "<home>")
.replace(agentmesh_core::VERSION, "<version>")
.replace('\\', "/");
normalize_hex_runs(&normalized)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ expression: surface
## status
exit: Some(0)
stdout:
AgentMesh 0.1.0 repo: repo lockfile: not ready (failed to read lockfile at <repo>/agentmesh.lock)
AgentMesh <version> repo: repo lockfile: not ready (failed to read lockfile at <repo>/agentmesh.lock)
hooks: claude ✗ codex ✗
watcher: stopped (drain: idle)
pending: 0 in queue
Expand All @@ -18,7 +18,7 @@ stderr:
## status verbose
exit: Some(0)
stdout:
AgentMesh 0.1.0 repo: repo lockfile: not ready (failed to read lockfile at <repo>/agentmesh.lock)
AgentMesh <version> repo: repo lockfile: not ready (failed to read lockfile at <repo>/agentmesh.lock)
hooks: claude ✗ codex ✗
watcher: stopped (drain: idle)
pending: 0 in queue
Expand Down Expand Up @@ -123,7 +123,7 @@ stderr:
## doctor
exit: Some(0)
stdout:
AgentMesh 0.1.0
AgentMesh <version>
Repository: <repo>

Adapters:
Expand Down Expand Up @@ -171,7 +171,7 @@ Core findings:
integrity_pinned_sha256: <sha256>
integrity_current_binary: <agentmesh-bin>
integrity_current_sha256: <sha256>
integrity_version: 0.1.0
integrity_version: <version>
adapter_claude: detected=true declared=true mode=bundled protocol=1 entities=3 hooks=1
adapter_codex: detected=true declared=true mode=bundled protocol=1 entities=3 hooks=1
adapter_coverage_instructions: claude,codex
Expand Down
Loading