INNER CODE UNIT · Rust

list

ShurikenTrade/shuriken-skills · src/lib.rs:74

    for skill in list() {
        // Skip internal fixture skills in production rendering.
        if skill.name.starts_with("__") {
            continue;
        }
        out.push_str(&format!(
            "- `{}` — {}\n",
            skill.qualified_name(),
            skill.description,
        ));
    }
    out
}

#[cfg(test)]
mod tests {
    use super::*;

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…