Skip to content

Commit c305cfa

Browse files
committed
docs(agents): clarify comment in fetch_github_agents for .opcode.json agent files
1 parent 1cdfea7 commit c305cfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-tauri/src/commands/agents.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ pub async fn fetch_github_agents() -> Result<Vec<GitHubAgentFile>, String> {
20332033
.await
20342034
.map_err(|e| format!("Failed to parse GitHub response: {}", e))?;
20352035

2036-
// Filter only .opcode.json files
2036+
// Filter only .opcode.json agent files
20372037
let agent_files: Vec<GitHubAgentFile> = api_files
20382038
.into_iter()
20392039
.filter(|f| f.name.ends_with(".opcode.json") && f.file_type == "file")

0 commit comments

Comments
 (0)