osvm 0.8.3

OpenSVM CLI tool for managing SVM nodes and deployments
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
//! AI service integration for chat functionality

use super::{Colors, RealtimeSuggestion};
use crate::services::ai_service::{AiService, PlannedTool, ToolPlan};
use crate::services::mcp_service::{McpServerConfig, McpService};
use anyhow::Result;
use log::{debug, error};
use std::io::{self, Write};
use std::sync::Arc;
use tokio::time::{sleep, Duration};

/// Generate real-time suggestions using AI
pub async fn generate_realtime_suggestions(
    partial_input: &str,
    ai_service: &AiService,
) -> Result<Vec<String>> {
    if partial_input.len() < 3 {
        return Ok(Vec::new());
    }

    // Quick context-aware suggestions
    let suggestions = vec![
        format!("{} --help", partial_input),
        format!("{} --verbose", partial_input),
        format!("@solana/{}", partial_input),
    ];

    Ok(suggestions)
}

/// Process message with AI and update chat history
pub async fn process_with_realtime_ai(
    message: String,
    ai_service: &Arc<AiService>,
    chat_history: &mut Vec<String>,
) -> Result<()> {
    // Show processing animation
    show_animated_status("Processing with AI", "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", 80).await;

    // Query AI - simple query for now as query_with_plan doesn't exist
    let ai_response = match ai_service.query_with_debug(&message, false).await {
        Ok(response) => response,
        Err(e) => {
            error!("AI query failed: {}", e);
            return Ok(());
        }
    };

    // For now, just display the response (planning API needs to be integrated differently)
    // The code below is disabled until we have proper plan API integration
    /*
    if let Some(ai_plan) = ai_response.plan {
        println!("\n{}• AI Agent Plan detected!{}", Colors::MAGENTA, Colors::RESET);
        show_colored_plan_diagram(&ai_plan);

        // Ask user for confirmation
        println!("\n{}Execute this plan? (y/n): {}", Colors::YELLOW, Colors::RESET);

        match get_user_choice().await {
            Ok(choice) if choice == 1 => {
                execute_ai_plan_with_colors(&ai_plan, &message, ai_service).await?;
            }
            _ => {
                println!("{}• Plan execution cancelled{}", Colors::DIM, Colors::RESET);
            }
        }
    }
    */

    // Display AI response
    if !ai_response.is_empty() {
        println!(
            "\n{}• Assistant: {}{}{}",
            Colors::CYAN,
            Colors::BOLD,
            ai_response,
            Colors::RESET
        );
        chat_history.push(format!("Assistant: {}", ai_response));
    }

    Ok(())
}

/// Show animated status message
pub async fn show_animated_status(message: &str, chars: &str, duration_ms: u64) {
    let frames: Vec<char> = chars.chars().collect();

    for frame in frames.iter().take(10) {
        print!(
            "\r{}{}  {} {}{}",
            Colors::YELLOW,
            frame,
            message,
            Colors::DIM,
            Colors::RESET
        );
        io::stdout().flush().unwrap_or(());
        sleep(Duration::from_millis(duration_ms)).await;
    }

    print!("\r\x1b[K");
    io::stdout().flush().unwrap_or(());
}

/// Display colored plan diagram
pub fn show_colored_plan_diagram(ai_plan: &ToolPlan) {
    println!(
        "\n{}╔══════════════════════════════════════════════════╗",
        Colors::MAGENTA
    );
    println!(
        "{}EXECUTION PLAN{}",
        Colors::BOLD,
        Colors::MAGENTA
    );
    println!(
        "╚══════════════════════════════════════════════════╝{}",
        Colors::RESET
    );

    // Show reasoning
    println!("\n{}📋 Reasoning:{}", Colors::CYAN, Colors::RESET);
    for line in wrap_text(&ai_plan.reasoning, 50) {
        println!("   {}", line);
    }

    // Show planned tools
    println!("\n{}🔧 Planned Tools:{}", Colors::YELLOW, Colors::RESET);
    for (i, tool) in ai_plan.osvm_tools_to_use.iter().enumerate() {
        let status_icon = "";
        println!(
            "   {} {}. {}{}{} {}({}){}",
            status_icon,
            i + 1,
            Colors::GREEN,
            tool.tool_name,
            Colors::RESET,
            Colors::DIM,
            tool.server_id,
            Colors::RESET
        );

        // PlannedTool doesn't have a reason field, show args instead
        if !tool.args.is_null() {
            println!(
                "      {}└─ Args: {}{}",
                Colors::DIM,
                tool.args,
                Colors::RESET
            );
        }
    }

    // Show expected outcome
    println!("\n{}✨ Expected Outcome:{}", Colors::GREEN, Colors::RESET);
    for line in wrap_text(&ai_plan.expected_outcome, 50) {
        println!("   {}", line);
    }
}

/// Wrap text to specified width
pub fn wrap_text(text: &str, width: usize) -> Vec<String> {
    let mut lines = Vec::new();
    let mut current_line = String::new();

    for word in text.split_whitespace() {
        if current_line.len() + word.len() + 1 > width {
            if !current_line.is_empty() {
                lines.push(current_line.clone());
                current_line.clear();
            }
        }

        if !current_line.is_empty() {
            current_line.push(' ');
        }
        current_line.push_str(word);
    }

    if !current_line.is_empty() {
        lines.push(current_line);
    }

    lines
}

/// Get user choice (1 for yes, 0 for no)
pub async fn get_user_choice() -> Result<u32> {
    let mut buffer = String::new();
    io::stdin().read_line(&mut buffer)?;

    match buffer.trim().to_lowercase().as_str() {
        "y" | "yes" => Ok(1),
        _ => Ok(0),
    }
}

/// Execute AI plan with colored output
pub async fn execute_ai_plan_with_colors(
    ai_plan: &ToolPlan,
    original_message: &str,
    ai_service: &Arc<AiService>,
) -> Result<()> {
    println!(
        "\n{}═══ Executing Plan ═══{}",
        Colors::MAGENTA,
        Colors::RESET
    );

    for (i, tool) in ai_plan.osvm_tools_to_use.iter().enumerate() {
        println!(
            "\n{}[{}/{}] Executing: {}{}{}",
            Colors::CYAN,
            i + 1,
            ai_plan.osvm_tools_to_use.len(),
            Colors::YELLOW,
            tool.tool_name,
            Colors::RESET
        );

        // Simulate tool execution animation
        show_animated_status(&format!("Running {}", tool.tool_name), "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", 50).await;

        // Simulate execution result
        println!(
            "   {}{} completed successfully{}",
            Colors::GREEN,
            tool.tool_name,
            Colors::RESET
        );

        sleep(Duration::from_millis(500)).await;
    }

    println!(
        "\n{}✓ Plan execution complete!{}",
        Colors::GREEN,
        Colors::RESET
    );

    Ok(())
}

/// Show contextual suggestions based on chat history
pub async fn show_contextual_suggestions(ai_service: &Arc<AiService>, chat_history: &[String]) {
    println!(
        "\n{}💡 Contextual Suggestions:{}",
        Colors::YELLOW,
        Colors::RESET
    );

    let suggestions = vec![
        ("Check wallet balance", "@solana/get_balance"),
        (
            "View recent transactions",
            "@solana/get_recent_transactions",
        ),
        ("Monitor network status", "/network status"),
    ];

    for (desc, cmd) in suggestions {
        println!("{} - {}{}{}", desc, Colors::CYAN, cmd, Colors::RESET);
    }
}

/// Show help commands
pub fn show_help_commands() {
    println!(
        "\n{}╔════════════════════════════════════════════════╗",
        Colors::CYAN
    );
    println!(
        "{}HELP - Commands{}",
        Colors::BOLD,
        Colors::CYAN
    );
    println!(
        "╚════════════════════════════════════════════════╝{}",
        Colors::RESET
    );

    let commands = vec![
        ("/help", "Show this help menu"),
        ("/clear", "Clear chat history"),
        ("/tools", "List available MCP tools"),
        ("/context", "Show conversation context"),
        ("/status", "Show system status"),
        ("@server/tool", "Execute specific MCP tool"),
        ("Ctrl+T", "Toggle task navigation mode"),
        ("Ctrl+C", "Exit application"),
        ("Tab", "Auto-complete suggestion"),
        ("↑/↓", "Navigate history or suggestions"),
    ];

    for (cmd, desc) in commands {
        println!("  {}{:<15}{} - {}", Colors::GREEN, cmd, Colors::DIM, desc);
    }

    println!("{}", Colors::RESET);
}

/// Show context visualization
pub async fn show_context_visualization(
    chat_history: &[String],
    ai_service: &Arc<AiService>,
) -> Result<()> {
    println!(
        "\n{}╔════════════════════════════════════════════════╗",
        Colors::BLUE
    );
    println!(
        "{}CONVERSATION CONTEXT{}",
        Colors::BOLD,
        Colors::BLUE
    );
    println!(
        "╚════════════════════════════════════════════════╝{}",
        Colors::RESET
    );

    if chat_history.is_empty() {
        println!(
            "{}  No conversation history yet{}",
            Colors::DIM,
            Colors::RESET
        );
    } else {
        println!("\n{}Recent Messages:{}", Colors::CYAN, Colors::RESET);
        for (i, msg) in chat_history.iter().rev().take(5).enumerate() {
            let truncated = if msg.chars().count() > 60 {
                let truncated_chars: String = msg.chars().take(57).collect();
                format!("{}...", truncated_chars)
            } else {
                msg.clone()
            };
            println!("  {}. {}", i + 1, truncated);
        }

        println!("\n{}Statistics:{}", Colors::YELLOW, Colors::RESET);
        println!("  • Total messages: {}", chat_history.len());
        println!("  • Current session: Active");
    }

    Ok(())
}

/// Show status overview
pub async fn show_status_overview(
    servers: &[(&String, &McpServerConfig)],
    chat_history: &[String],
) -> Result<()> {
    println!(
        "\n{}╔════════════════════════════════════════════════╗",
        Colors::CYAN
    );
    println!(
        "{}SYSTEM STATUS{}",
        Colors::BOLD,
        Colors::CYAN
    );
    println!(
        "╚════════════════════════════════════════════════╝{}",
        Colors::RESET
    );

    // MCP Servers
    println!("\n{}MCP Servers:{}", Colors::YELLOW, Colors::RESET);
    for (id, config) in servers {
        let status_icon = if config.enabled { "" } else { "" };
        let status_color = if config.enabled {
            Colors::GREEN
        } else {
            Colors::RED
        };

        println!(
            "  {} {}{}{} - {}",
            status_color,
            status_icon,
            Colors::BLUE,
            id,
            config.url
        );
    }

    // Chat Statistics
    println!("\n{}Chat Statistics:{}", Colors::YELLOW, Colors::RESET);
    println!("  • Messages: {}", chat_history.len());
    println!("  • Session: Active");
    println!("  • AI Service: Connected");

    println!("{}", Colors::RESET);
    Ok(())
}

/// Run demo mode for testing
pub async fn run_demo_mode() -> Result<()> {
    println!(
        "{}🎮 Demo Mode - Simulating chat interactions{}",
        Colors::MAGENTA,
        Colors::RESET
    );

    let demo_messages = vec![
        "What's my wallet balance?",
        "Show recent transactions",
        "How do I stake SOL?",
    ];

    for msg in demo_messages {
        println!("\n{}Simulating: {}{}", Colors::DIM, msg, Colors::RESET);
        show_animated_status("Processing", "⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏", 100).await;
        sleep(Duration::from_millis(500)).await;
    }

    println!("\n{}✓ Demo complete!{}", Colors::GREEN, Colors::RESET);
    Ok(())
}