summaryrefslogtreecommitdiff
path: root/makima/src/daemon/skills
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-07 18:27:54 +0000
committersoryu <soryu@soryu.co>2026-02-07 18:27:54 +0000
commit97e21c8296ec5f91912d56980ebf3b18a1ca3507 (patch)
tree3650e2eb62ab5b387006563ce64139aa7688da5f /makima/src/daemon/skills
parent8f757f561eeb397aaea70d7c10d41445cc5e50b5 (diff)
downloadsoryu-97e21c8296ec5f91912d56980ebf3b18a1ca3507.tar.gz
soryu-97e21c8296ec5f91912d56980ebf3b18a1ca3507.zip
Add directive monitor contracts
Diffstat (limited to 'makima/src/daemon/skills')
-rw-r--r--makima/src/daemon/skills/directive.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/makima/src/daemon/skills/directive.md b/makima/src/daemon/skills/directive.md
index cdfdaa2..0d1e9d6 100644
--- a/makima/src/daemon/skills/directive.md
+++ b/makima/src/daemon/skills/directive.md
@@ -47,6 +47,20 @@ 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.
@@ -63,6 +77,12 @@ 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
```