summaryrefslogtreecommitdiff
path: root/makima/src/daemon/skills
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-08 21:07:30 +0000
committersoryu <soryu@soryu.co>2026-02-08 21:07:30 +0000
commit3662b334dfd68cfdf00ed44ae88927c2e1b2aabe (patch)
treebff5ae1e189fb8bcc0211d97dab3b9acb4257038 /makima/src/daemon/skills
parent87fa8c4af66745bd30bc84b6c5ef657dd4dec002 (diff)
downloadsoryu-3662b334dfd68cfdf00ed44ae88927c2e1b2aabe.tar.gz
soryu-3662b334dfd68cfdf00ed44ae88927c2e1b2aabe.zip
Remove directive mechanism
Diffstat (limited to 'makima/src/daemon/skills')
-rw-r--r--makima/src/daemon/skills/directive.md88
-rw-r--r--makima/src/daemon/skills/mod.rs4
2 files changed, 0 insertions, 92 deletions
diff --git a/makima/src/daemon/skills/directive.md b/makima/src/daemon/skills/directive.md
deleted file mode 100644
index 0d1e9d6..0000000
--- a/makima/src/daemon/skills/directive.md
+++ /dev/null
@@ -1,88 +0,0 @@
----
-name: makima-directive
-description: Directive orchestration tools for autonomous goal-driven execution. Use when working with directives, chains, steps, verifiers, and approvals.
----
-
-# Makima Directive Commands
-
-These commands let orchestrators interact with directive state. Environment variables (`MAKIMA_API_URL`, `MAKIMA_API_KEY`, `MAKIMA_DIRECTIVE_ID`) are pre-configured by the daemon.
-
-## Status and Information
-
-### Get directive status
-```bash
-makima directive status
-```
-Returns full directive details including status, autonomy level, thresholds, and tracking info.
-
-### Get directive goals
-```bash
-makima directive goals
-```
-Returns the goal, requirements, acceptance criteria, constraints, and external dependencies.
-
-### List chains
-```bash
-makima directive chains
-```
-Returns all chains (plan generations) for the directive, ordered by generation.
-
-### Get chain with steps
-```bash
-makima directive chain <chain_id>
-```
-Returns a chain and all its steps with status, dependencies, and evaluation info.
-
-### List steps in a chain
-```bash
-makima directive steps <chain_id>
-```
-Returns just the steps array from a chain.
-
-## Status Updates
-
-### Update directive status
-```bash
-makima directive update-status <status>
-```
-Updates the directive status. Valid statuses: `draft`, `planning`, `active`, `paused`, `completed`, `archived`, `failed`.
-
-## Evaluation
-
-### Trigger manual evaluation for a step
-```bash
-makima directive evaluate <step_id>
-```
-Triggers a monitoring evaluation for the specified step. The step must have been executed (have a contract). Sets the step to "evaluating" and dispatches a monitoring contract.
-
-### List evaluations for a step
-```bash
-makima directive evaluations <step_id>
-```
-Returns the evaluation history for a step, ordered by evaluation number.
-
-## Output Format
-
-All commands output JSON to stdout.
-
-Example workflow:
-```bash
-# Check directive details and goals
-makima directive status
-makima directive goals
-
-# List execution chains
-makima directive chains
-
-# Get details of a specific chain
-makima directive chain <chain_id>
-
-# Trigger manual evaluation of a step
-makima directive evaluate <step_id>
-
-# Check evaluation history
-makima directive evaluations <step_id>
-
-# Update status to active
-makima directive update-status active
-```
diff --git a/makima/src/daemon/skills/mod.rs b/makima/src/daemon/skills/mod.rs
index 6e5d0a8..0b05f3a 100644
--- a/makima/src/daemon/skills/mod.rs
+++ b/makima/src/daemon/skills/mod.rs
@@ -9,12 +9,8 @@ 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");
-/// Directive skill content - directive orchestration commands
-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-directive", DIRECTIVE_SKILL),
];