Skip to main content

ai_agent/services/skill_search/
remote_skill_loader.rs

1pub fn load_remote_skill(_skill_id: &str) -> Option<RemoteSkill> {
2    None
3}
4
5#[derive(Debug, Clone)]
6pub struct RemoteSkill {
7    pub id: String,
8    pub name: String,
9}