jev_repl/skill.rs
1//! The jev skill: what an agent reads to write a page that parses and a request worth sending.
2//!
3//! The markdown is `skills/jev/SKILL.md` — the copy people read and the copy the binary carries
4//! are the same bytes, so an installed skill can never drift from the one in the repository.
5
6/// The directory a skill is installed under, and the name agents call it by.
7pub const SKILL_NAME: &str = "jev";
8
9/// The file every host reads the skill out of.
10pub const SKILL_FILE: &str = "SKILL.md";
11
12/// The skill itself: YAML frontmatter, then the instructions.
13pub const SKILL_MD: &str = include_str!("../skills/jev/SKILL.md");