ane-editor 0.1.0

A New Editor / Agent Native Editor — a modern vim-inspired terminal editor built for humans and code agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub const SKILL_CONTENT: &str = include_str!("ane-skill.md");

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

    #[test]
    fn skill_content_is_non_empty() {
        assert!(!SKILL_CONTENT.is_empty());
    }

    #[test]
    fn skill_content_contains_key_markers() {
        assert!(SKILL_CONTENT.contains("ane exec"), "missing 'ane exec'");
        assert!(SKILL_CONTENT.contains("Action"), "missing 'Action'");
        assert!(SKILL_CONTENT.contains("Scope"), "missing 'Scope'");
    }
}