summaryrefslogtreecommitdiff
path: root/makima/src/daemon/skills/mod.rs
blob: dafa9ec81f9b6b3d15579720a7cc45a34d842f3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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");

/// Chain skill content - multi-contract orchestration commands (legacy)
pub const CHAIN_SKILL: &str = include_str!("chain.md");

/// Directive skill content - autonomous goal-driven orchestration
pub const DIRECTIVE_SKILL: &str = include_str!("directive.md");

/// All skills as (name, content) pairs for installation
pub const ALL_SKILLS: &[(&str, &str)] = &[
    ("makima-supervisor", SUPERVISOR_SKILL),
    ("makima-contract", CONTRACT_SKILL),
    ("makima-chain", CHAIN_SKILL),
    ("makima-directive", DIRECTIVE_SKILL),
];