//! Embedded Claude Code skill content for makima commands. //! //! This module provides the SKILL.md content for each makima skill. //! Skills are installed to ~/.claude/skills/ on daemon startup. /// Supervisor skill content - contract orchestration commands pub const SUPERVISOR_SKILL: &str = include_str!("supervisor.md"); /// Contract skill content - task-contract interaction commands pub const CONTRACT_SKILL: &str = include_str!("contract.md"); /// All skills as (name, content) pairs for installation pub const ALL_SKILLS: &[(&str, &str)] = &[ ("makima-supervisor", SUPERVISOR_SKILL), ("makima-contract", CONTRACT_SKILL), ];