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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ HarnessKit manages **all five extension types** from a unified interface — **S
| **Hermes** | ✓ | ✓ | ✓ | ✓ | ✓ |
| **Kiro** | ✓ | ✓ | — | ✓ | ✓ |
| **Oh My Pi** | ✓ | ✓ | ✓ | — | ✓ |
| **DeepSeek Harness** | ✓ | ✓ | | — | ✓ |
| **DeepSeek Harness** | ✓ | ✓ | | — | ✓ |

<small><i>* "—" indicates the agent currently does not support this extension type. Devin Desktop support keeps legacy Windsurf paths compatible.</i></small>

Expand Down
2 changes: 2 additions & 0 deletions crates/hk-core/src/adapter/claude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,8 @@ impl AgentAdapter for ClaudeAdapter {
uri: None,
installed_at,
updated_at,
base_layers: vec![],
pack: None,
});
}
entries
Expand Down
2 changes: 2 additions & 0 deletions crates/hk-core/src/adapter/codex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,8 @@ impl AgentAdapter for CodexAdapter {
uri: None,
installed_at: None,
updated_at: None,
base_layers: vec![],
pack: None,
});
break; // Take the latest version after sorting
}
Expand Down
4 changes: 4 additions & 0 deletions crates/hk-core/src/adapter/copilot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,8 @@ impl AgentAdapter for CopilotAdapter {
uri: None,
installed_at: None,
updated_at: None,
base_layers: vec![],
pack: None,
});
}
}
Expand Down Expand Up @@ -316,6 +318,8 @@ impl AgentAdapter for CopilotAdapter {
uri: Some(plugin_uri.to_string()),
installed_at: None,
updated_at: None,
base_layers: vec![],
pack: None,
});
}
}
Expand Down
4 changes: 4 additions & 0 deletions crates/hk-core/src/adapter/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ impl AgentAdapter for CursorAdapter {
uri: None,
installed_at: None,
updated_at: None,
base_layers: vec![],
pack: None,
});
}
}
Expand Down Expand Up @@ -279,6 +281,8 @@ impl AgentAdapter for CursorAdapter {
uri: None,
installed_at: None,
updated_at: None,
base_layers: vec![],
pack: None,
});
}
}
Expand Down
Loading
Loading