From c95fce0173386050cc865dfd18315f9a6397f505 Mon Sep 17 00:00:00 2001 From: soryu Date: Wed, 4 Feb 2026 12:05:58 +0000 Subject: Add makima skills --- makima/src/daemon/skills/mod.rs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 makima/src/daemon/skills/mod.rs (limited to 'makima/src/daemon/skills/mod.rs') diff --git a/makima/src/daemon/skills/mod.rs b/makima/src/daemon/skills/mod.rs new file mode 100644 index 0000000..3b0c0dc --- /dev/null +++ b/makima/src/daemon/skills/mod.rs @@ -0,0 +1,20 @@ +//! 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 +pub const CHAIN_SKILL: &str = include_str!("chain.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), +]; -- cgit v1.2.3