wm-tools 9.1.7

Curated tool implementations for the WhiteMagic MCP server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
//! Pipeline & skill tools — pipeline.create, pipeline.list, pipeline.status,
//! skill.invoke, skill.list.
//!
//! Gana::Horn — "System building, pipelines, invocation, status"
//!
//! Pipelines are stored as memories in the Sessions galaxy with a special
//! "pipeline" tag. Skills are stored in the Codex galaxy with a "skill" tag.
//! Both are lightweight, memory-backed constructs — no external process spawning.

#![forbid(unsafe_code)]

use async_trait::async_trait;

use serde_json::{Value, json};
use std::sync::Arc;
use wm_core::{Context, EffectRow, Galaxy, Gana, Resource, Tool, ToolStats};
use wm_memory::{Memory, MemoryStore};

// ── pipeline.create ──────────────────────────────────────────────────

/// Create a named pipeline by storing its definition as a memory.
///
/// The pipeline definition is a JSON object with steps, stored as memory
/// content in the Sessions galaxy with "pipeline" tag.
pub struct PipelineCreateTool {
    store: Arc<MemoryStore>,
    stats: ToolStats,
    effects: EffectRow,
}

impl PipelineCreateTool {
    pub fn new(store: Arc<MemoryStore>) -> Self {
        Self {
            store,
            stats: ToolStats::default(),
            effects: EffectRow {
                writes: vec![Resource::Galaxy("sessions".into())],
                ..Default::default()
            },
        }
    }
}

#[async_trait]
impl Tool for PipelineCreateTool {
    fn name(&self) -> &str {
        "pipeline.create"
    }
    fn gana(&self) -> Gana {
        Gana::Horn
    }
    fn effects(&self) -> &EffectRow {
        &self.effects
    }
    fn description(&self) -> &str {
        "Create a named pipeline with steps stored in memory"
    }
    async fn call(&self, _ctx: &mut Context, args: Value) -> wm_core::Result<Value> {
        let name = args
            .get("name")
            .and_then(|v| v.as_str())
            .ok_or_else(|| wm_core::CoreError::InvalidArgs("name (string) required".into()))?;
        let steps = args
            .get("steps")
            .and_then(|v| v.as_array())
            .ok_or_else(|| wm_core::CoreError::InvalidArgs("steps (array) required".into()))?;

        let definition = json!({
            "name": name,
            "steps": steps,
            "created_at": chrono::Utc::now().to_rfc3339(),
        });

        let mut mem = Memory::new(Galaxy::Sessions, definition.to_string());
        mem.metadata.tags = vec!["pipeline".into(), name.into()];
        mem.metadata.importance = 0.7;
        let id = mem.metadata.id;
        self.store.put(Galaxy::Sessions, &mem)?;

        Ok(json!({
            "status": "success",
            "pipeline_name": name,
            "pipeline_id": id.to_string(),
            "steps_count": steps.len(),
        }))
    }
    fn stats(&self) -> &ToolStats {
        &self.stats
    }
}

// ── pipeline.list ────────────────────────────────────────────────────

/// List all stored pipelines.
pub struct PipelineListTool {
    store: Arc<MemoryStore>,
    stats: ToolStats,
    effects: EffectRow,
}

impl PipelineListTool {
    pub fn new(store: Arc<MemoryStore>) -> Self {
        Self {
            store,
            stats: ToolStats::default(),
            effects: EffectRow::read_only(vec![Resource::Galaxy("sessions".into())]),
        }
    }
}

#[async_trait]
impl Tool for PipelineListTool {
    fn name(&self) -> &str {
        "pipeline.list"
    }
    fn gana(&self) -> Gana {
        Gana::Horn
    }
    fn effects(&self) -> &EffectRow {
        &self.effects
    }
    fn description(&self) -> &str {
        "List all stored pipelines"
    }
    async fn call(&self, _ctx: &mut Context, _args: Value) -> wm_core::Result<Value> {
        let mems = self.store.scan_all(Galaxy::Sessions)?;
        let pipelines: Vec<Value> = mems
            .iter()
            .filter(|m| m.metadata.tags.iter().any(|t| t == "pipeline"))
            .map(|m| {
                let def: Value = serde_json::from_str(&m.content).unwrap_or(Value::Null);
                json!({
                    "id": m.metadata.id,
                    "name": m.metadata.tags.iter()
                        .find(|t| *t != "pipeline")
                        .cloned()
                        .unwrap_or_default(),
                    "steps_count": def.get("steps").and_then(Value::as_array).map_or(0, std::vec::Vec::len),
                    "created_at": m.metadata.created_at.to_rfc3339(),
                })
            })
            .collect();

        Ok(json!({
            "status": "success",
            "count": pipelines.len(),
            "pipelines": pipelines,
        }))
    }
    fn stats(&self) -> &ToolStats {
        &self.stats
    }
}

// ── pipeline.status ──────────────────────────────────────────────────

/// Get the status of a specific pipeline by name or ID.
pub struct PipelineStatusTool {
    store: Arc<MemoryStore>,
    stats: ToolStats,
    effects: EffectRow,
}

impl PipelineStatusTool {
    pub fn new(store: Arc<MemoryStore>) -> Self {
        Self {
            store,
            stats: ToolStats::default(),
            effects: EffectRow::read_only(vec![Resource::Galaxy("sessions".into())]),
        }
    }
}

#[async_trait]
impl Tool for PipelineStatusTool {
    fn name(&self) -> &str {
        "pipeline.status"
    }
    fn gana(&self) -> Gana {
        Gana::Horn
    }
    fn effects(&self) -> &EffectRow {
        &self.effects
    }
    fn description(&self) -> &str {
        "Get detailed status of a specific pipeline"
    }
    async fn call(&self, _ctx: &mut Context, args: Value) -> wm_core::Result<Value> {
        let name = args.get("name").and_then(|v| v.as_str());
        let id_str = args.get("id").and_then(|v| v.as_str());

        if name.is_none() && id_str.is_none() {
            return Err(wm_core::CoreError::InvalidArgs(
                "Either name (string) or id (string) required".into(),
            ));
        }

        let mems = self.store.scan_all(Galaxy::Sessions)?;
        let pipeline = mems.iter().find(|m| {
            m.metadata.tags.iter().any(|t| t == "pipeline")
                && (name.is_some_and(|n| m.metadata.tags.contains(&n.to_string()))
                    || id_str.is_some_and(|id| m.metadata.id.to_string() == id))
        });

        match pipeline {
            Some(m) => {
                let def: Value = serde_json::from_str(&m.content).unwrap_or(Value::Null);
                Ok(json!({
                    "status": "success",
                    "id": m.metadata.id,
                    "name": m.metadata.tags.iter()
                        .find(|t| *t != "pipeline")
                        .cloned()
                        .unwrap_or_default(),
                    "definition": def,
                    "importance": m.metadata.importance,
                    "created_at": m.metadata.created_at.to_rfc3339(),
                }))
            }
            None => Err(wm_core::CoreError::NotFound("Pipeline not found".into())),
        }
    }
    fn stats(&self) -> &ToolStats {
        &self.stats
    }
}

// ── skill.invoke ─────────────────────────────────────────────────────

/// Invoke a skill by name. Skills are stored memories in the Codex galaxy
/// with a "skill" tag. Invocation looks up the skill and returns its
/// definition for execution.
pub struct SkillInvokeTool {
    store: Arc<MemoryStore>,
    stats: ToolStats,
    effects: EffectRow,
}

impl SkillInvokeTool {
    pub fn new(store: Arc<MemoryStore>) -> Self {
        Self {
            store,
            stats: ToolStats::default(),
            effects: EffectRow::read_only(vec![Resource::Galaxy("codex".into())]),
        }
    }
}

#[async_trait]
impl Tool for SkillInvokeTool {
    fn name(&self) -> &str {
        "skill.invoke"
    }
    fn gana(&self) -> Gana {
        Gana::Horn
    }
    fn effects(&self) -> &EffectRow {
        &self.effects
    }
    fn description(&self) -> &str {
        "Invoke a named skill from the Codex galaxy"
    }
    async fn call(&self, _ctx: &mut Context, args: Value) -> wm_core::Result<Value> {
        let skill_name = args
            .get("skill")
            .and_then(|v| v.as_str())
            .ok_or_else(|| wm_core::CoreError::InvalidArgs("skill (string) required".into()))?;
        let params = args.get("params").cloned().unwrap_or(Value::Null);

        let mems = self.store.scan(Galaxy::Codex, 500)?;
        let skill = mems.iter().find(|m| {
            m.metadata.tags.iter().any(|t| t == "skill")
                && m.metadata.tags.contains(&skill_name.to_string())
        });

        match skill {
            Some(m) => {
                let definition: Value = serde_json::from_str(&m.content).unwrap_or(Value::Null);
                Ok(json!({
                    "status": "success",
                    "skill": skill_name,
                    "skill_id": m.metadata.id,
                    "definition": definition,
                    "params": params,
                    "invoked_at": chrono::Utc::now().to_rfc3339(),
                }))
            }
            None => Err(wm_core::CoreError::NotFound(format!(
                "Skill '{skill_name}' not found"
            ))),
        }
    }
    fn stats(&self) -> &ToolStats {
        &self.stats
    }
}

// ── skill.list ───────────────────────────────────────────────────────

/// List all available skills.
pub struct SkillListTool {
    store: Arc<MemoryStore>,
    stats: ToolStats,
    effects: EffectRow,
}

impl SkillListTool {
    pub fn new(store: Arc<MemoryStore>) -> Self {
        Self {
            store,
            stats: ToolStats::default(),
            effects: EffectRow::read_only(vec![Resource::Galaxy("codex".into())]),
        }
    }
}

#[async_trait]
impl Tool for SkillListTool {
    fn name(&self) -> &str {
        "skill.list"
    }
    fn gana(&self) -> Gana {
        Gana::Horn
    }
    fn effects(&self) -> &EffectRow {
        &self.effects
    }
    fn description(&self) -> &str {
        "List all available skills in the Codex galaxy"
    }
    async fn call(&self, _ctx: &mut Context, _args: Value) -> wm_core::Result<Value> {
        let mems = self.store.scan(Galaxy::Codex, 500)?;
        let skills: Vec<Value> = mems
            .iter()
            .filter(|m| m.metadata.tags.iter().any(|t| t == "skill"))
            .map(|m| {
                json!({
                    "id": m.metadata.id,
                    "name": m.metadata.tags.iter()
                        .find(|t| *t != "skill")
                        .cloned()
                        .unwrap_or_default(),
                    "importance": m.metadata.importance,
                    "content_preview": m.content.chars().take(100).collect::<String>(),
                })
            })
            .collect();

        Ok(json!({
            "status": "success",
            "count": skills.len(),
            "skills": skills,
        }))
    }
    fn stats(&self) -> &ToolStats {
        &self.stats
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    fn open_store() -> (tempfile::TempDir, Arc<MemoryStore>) {
        let tmp = tempfile::tempdir().unwrap();
        let store = MemoryStore::open_default(tmp.path()).unwrap();
        (tmp, Arc::new(store))
    }

    fn seed_pipeline(store: &Arc<MemoryStore>) -> uuid::Uuid {
        let definition = json!({
            "name": "test-pipeline",
            "steps": [
                {"tool": "memory.create", "args": {"content": "step 1"}},
                {"tool": "memory.search", "args": {"query": "step 1"}}
            ]
        });
        let mut mem = Memory::new(Galaxy::Sessions, definition.to_string());
        mem.metadata.tags = vec!["pipeline".into(), "test-pipeline".into()];
        mem.metadata.importance = 0.7;
        let id = mem.metadata.id;
        store.put(Galaxy::Sessions, &mem).unwrap();
        id
    }

    fn seed_skill(store: &Arc<MemoryStore>) -> uuid::Uuid {
        let definition = json!({
            "name": "summarize",
            "handler": "memory.consolidate",
            "params_schema": {"galaxy": "string"}
        });
        let mut mem = Memory::new(Galaxy::Codex, definition.to_string());
        mem.metadata.tags = vec!["skill".into(), "summarize".into()];
        mem.metadata.importance = 0.8;
        let id = mem.metadata.id;
        store.put(Galaxy::Codex, &mem).unwrap();
        id
    }

    #[tokio::test]
    async fn pipeline_create_stores_definition() {
        let (_tmp, store) = open_store();
        let tool = PipelineCreateTool::new(store);
        let result = tool
            .call(
                &mut Context::default(),
                json!({"name": "my-pipeline", "steps": [{"tool": "memory.create"}]}),
            )
            .await
            .unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["status"], "success");
        assert_eq!(obj["pipeline_name"], "my-pipeline");
        assert_eq!(obj["steps_count"], 1);
    }

    #[tokio::test]
    async fn pipeline_create_missing_name() {
        let (_tmp, store) = open_store();
        let tool = PipelineCreateTool::new(store);
        let result = tool
            .call(&mut Context::default(), json!({"steps": []}))
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn pipeline_create_missing_steps() {
        let (_tmp, store) = open_store();
        let tool = PipelineCreateTool::new(store);
        let result = tool
            .call(&mut Context::default(), json!({"name": "test"}))
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn pipeline_list_shows_pipelines() {
        let (_tmp, store) = open_store();
        seed_pipeline(&store);

        let tool = PipelineListTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await.unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["status"], "success");
        assert_eq!(obj["count"], 1);
        let pipelines = obj["pipelines"].as_array().unwrap();
        assert_eq!(pipelines[0]["name"], "test-pipeline");
    }

    #[tokio::test]
    async fn pipeline_list_empty() {
        let (_tmp, store) = open_store();
        let tool = PipelineListTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await.unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["count"], 0);
    }

    #[tokio::test]
    async fn pipeline_status_by_name() {
        let (_tmp, store) = open_store();
        seed_pipeline(&store);

        let tool = PipelineStatusTool::new(store);
        let result = tool
            .call(&mut Context::default(), json!({"name": "test-pipeline"}))
            .await
            .unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["status"], "success");
        assert_eq!(obj["name"], "test-pipeline");
        assert!(obj["definition"].is_object());
    }

    #[tokio::test]
    async fn pipeline_status_not_found() {
        let (_tmp, store) = open_store();
        let tool = PipelineStatusTool::new(store);
        let result = tool
            .call(&mut Context::default(), json!({"name": "nonexistent"}))
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn pipeline_status_missing_args() {
        let (_tmp, store) = open_store();
        let tool = PipelineStatusTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn skill_invoke_finds_skill() {
        let (_tmp, store) = open_store();
        seed_skill(&store);

        let tool = SkillInvokeTool::new(store);
        let result = tool
            .call(
                &mut Context::default(),
                json!({"skill": "summarize", "params": {"galaxy": "codex"}}),
            )
            .await
            .unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["status"], "success");
        assert_eq!(obj["skill"], "summarize");
        assert!(obj["definition"].is_object());
    }

    #[tokio::test]
    async fn skill_invoke_not_found() {
        let (_tmp, store) = open_store();
        let tool = SkillInvokeTool::new(store);
        let result = tool
            .call(&mut Context::default(), json!({"skill": "nonexistent"}))
            .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn skill_invoke_missing_skill_arg() {
        let (_tmp, store) = open_store();
        let tool = SkillInvokeTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn skill_list_shows_skills() {
        let (_tmp, store) = open_store();
        seed_skill(&store);

        let tool = SkillListTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await.unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["status"], "success");
        assert_eq!(obj["count"], 1);
        let skills = obj["skills"].as_array().unwrap();
        assert_eq!(skills[0]["name"], "summarize");
    }

    #[tokio::test]
    async fn skill_list_empty() {
        let (_tmp, store) = open_store();
        let tool = SkillListTool::new(store);
        let result = tool.call(&mut Context::default(), json!({})).await.unwrap();
        let obj = result.as_object().unwrap();
        assert_eq!(obj["count"], 0);
    }
}