minion-engine 0.6.1

AI workflow engine that orchestrates Claude Code CLI — automate code review, refactoring, and PR creation with YAML workflows
Documentation
1
2
3
4
5
6
use serde_json::Value as JsonValue;

/// Convert serde_yaml::Value → serde_json::Value
pub fn yaml_to_json(v: &serde_yaml::Value) -> JsonValue {
    serde_json::to_value(v).unwrap_or(serde_json::Value::Null)
}