opencrates 3.0.1

Enterprise-grade AI-powered Rust development companion with comprehensive automation, monitoring, and deployment capabilities
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
//! AIChat integration for OpenCrates
//! 
//! This module provides integration with AIChat for enhanced code generation,
//! analysis, and interactive assistance capabilities.

use anyhow::Result;
use serde::{Deserialize, Serialize};
use std::process::Command;
use tracing::{debug, info, warn};

/// Configuration for AIChat integration
/// Contains all necessary settings for connecting to and using AIChat services
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AIChatConfig {
    /// AI model to use for chat operations (e.g., "gpt-4", "claude-3")
    pub model: String,
    /// API key for authentication (optional if using system config)
    pub api_key: Option<String>,
    /// Temperature setting for AI responses (0.0 = deterministic, 1.0 = creative)
    pub temperature: f32,
    /// Maximum number of tokens to generate in responses
    pub max_tokens: usize,
}

impl Default for AIChatConfig {
    fn default() -> Self {
        Self {
            model: "gpt-4".to_string(),
            api_key: None,
            temperature: 0.7,
            max_tokens: 2048,
        }
    }
}

/// AIChat integration for OpenCrates
/// Provides methods for code generation, analysis, and interactive assistance
pub struct AIChatIntegration {
    config: AIChatConfig,
}

impl AIChatIntegration {
    /// Creates a new AIChat integration instance
    /// 
    /// # Arguments
    /// * `config` - Configuration settings for the integration
    /// 
    /// # Returns
    /// A new AIChatIntegration instance
    pub fn new(config: AIChatConfig) -> Self {
        Self { config }
    }

    /// Generates code using AIChat based on the provided prompt
    /// 
    /// # Arguments
    /// * `prompt` - The code generation prompt
    /// 
    /// # Returns
    /// Generated code as a string
    /// 
    /// # Errors
    /// Returns an error if code generation fails or AIChat is not available
    pub async fn generate_code(&self, prompt: &str) -> Result<String> {
        info!("Generating code using AIChat");
        debug!("Prompt: {}", prompt);

        // Build the AIChat command
        let mut cmd = Command::new("aichat");
        
        // Add model specification
        cmd.arg("--model").arg(&self.config.model);
        
        // Add temperature if specified
        if self.config.temperature != 0.7 {
            cmd.arg("--temperature").arg(self.config.temperature.to_string());
        }
        
        // Add max tokens if specified
        if self.config.max_tokens != 2048 {
            cmd.arg("--max-tokens").arg(self.config.max_tokens.to_string());
        }

        // Add the enhanced prompt for code generation
        let enhanced_prompt = format!(
            "Generate Rust code for the following request. \
            Provide clean, idiomatic Rust code with proper error handling, \
            documentation, and tests where appropriate:\n\n{}",
            prompt
        );
        
        cmd.arg(&enhanced_prompt);

        // Execute the command
        match cmd.output() {
            Ok(output) => {
                if output.status.success() {
                    let generated_code = String::from_utf8(output.stdout)?;
                    info!("Successfully generated {} bytes of code", generated_code.len());
                    Ok(generated_code)
                } else {
                    let error_msg = String::from_utf8_lossy(&output.stderr);
                    warn!("AIChat code generation failed: {}", error_msg);
                    Err(anyhow::anyhow!("AIChat failed: {}", error_msg))
                }
            }
            Err(e) => {
                warn!("Failed to execute aichat command: {}", e);
                // Fallback to built-in code generation
                self.fallback_code_generation(prompt).await
            }
        }
    }

    /// Analyzes code using AIChat to provide insights and suggestions
    /// 
    /// # Arguments
    /// * `code` - The code to analyze
    /// 
    /// # Returns
    /// Analysis results and suggestions as a string
    /// 
    /// # Errors
    /// Returns an error if code analysis fails or AIChat is not available
    pub async fn analyze_code(&self, code: &str) -> Result<String> {
        info!("Analyzing code using AIChat");
        debug!("Code length: {} characters", code.len());

        // Build the AIChat command for analysis
        let mut cmd = Command::new("aichat");
        
        cmd.arg("--model").arg(&self.config.model);
        
        // Use lower temperature for more focused analysis
        cmd.arg("--temperature").arg("0.3");
        
        // Create analysis prompt
        let analysis_prompt = format!(
            "Analyze the following Rust code and provide:\n\
            1. Code quality assessment\n\
            2. Potential issues or bugs\n\
            3. Performance optimization suggestions\n\
            4. Security considerations\n\
            5. Best practices recommendations\n\n\
            Code to analyze:\n```rust\n{}\n```",
            code
        );
        
        cmd.arg(&analysis_prompt);

        // Execute the command
        match cmd.output() {
            Ok(output) => {
                if output.status.success() {
                    let analysis_result = String::from_utf8(output.stdout)?;
                    info!("Successfully analyzed code");
                    Ok(analysis_result)
                } else {
                    let error_msg = String::from_utf8_lossy(&output.stderr);
                    warn!("AIChat code analysis failed: {}", error_msg);
                    Err(anyhow::anyhow!("AIChat analysis failed: {}", error_msg))
                }
            }
            Err(e) => {
                warn!("Failed to execute aichat command for analysis: {}", e);
                // Fallback to built-in analysis
                self.fallback_code_analysis(code).await
            }
        }
    }

    /// Provides interactive chat functionality for development assistance
    /// 
    /// # Arguments
    /// * `question` - The question or request for assistance
    /// 
    /// # Returns
    /// AI response providing assistance
    /// 
    /// # Errors
    /// Returns an error if the chat interaction fails
    pub async fn interactive_chat(&self, question: &str) -> Result<String> {
        info!("Starting interactive chat session");
        debug!("Question: {}", question);

        let mut cmd = Command::new("aichat");
        
        cmd.arg("--model").arg(&self.config.model);
        cmd.arg("--temperature").arg(self.config.temperature.to_string());
        
        // Create context-aware prompt
        let chat_prompt = format!(
            "You are an expert Rust developer assistant helping with OpenCrates development. \
            Provide helpful, accurate, and practical advice for Rust programming, \
            crate development, and software architecture.\n\n\
            Question: {}",
            question
        );
        
        cmd.arg(&chat_prompt);

        match cmd.output() {
            Ok(output) => {
                if output.status.success() {
                    let response = String::from_utf8(output.stdout)?;
                    info!("Interactive chat completed successfully");
                    Ok(response)
                } else {
                    let error_msg = String::from_utf8_lossy(&output.stderr);
                    warn!("AIChat interactive session failed: {}", error_msg);
                    Err(anyhow::anyhow!("Chat failed: {}", error_msg))
                }
            }
            Err(e) => {
                warn!("Failed to start interactive chat: {}", e);
                // Fallback response
                Ok("I'm sorry, but I'm unable to connect to AIChat at the moment. Please ensure AIChat is installed and properly configured.".to_string())
            }
        }
    }

    /// Checks if AIChat is available and properly configured
    /// 
    /// # Returns
    /// True if AIChat is available, false otherwise
    pub fn is_available(&self) -> bool {
        match Command::new("aichat").arg("--version").output() {
            Ok(output) => {
                let available = output.status.success();
                if available {
                    debug!("AIChat is available");
                } else {
                    debug!("AIChat command failed");
                }
                available
            }
            Err(e) => {
                debug!("AIChat not found: {}", e);
                false
            }
        }
    }

    /// Gets the current configuration
    /// 
    /// # Returns
    /// Reference to the current AIChatConfig
    pub fn config(&self) -> &AIChatConfig {
        &self.config
    }

    /// Updates the configuration
    /// 
    /// # Arguments
    /// * `config` - New configuration to apply
    pub fn update_config(&mut self, config: AIChatConfig) {
        info!("Updating AIChat configuration");
        self.config = config;
    }

    /// Generates documentation for code using AIChat
    /// 
    /// # Arguments
    /// * `code` - The code to document
    /// * `doc_type` - Type of documentation to generate ("api", "tutorial", "readme")
    /// 
    /// # Returns
    /// Generated documentation as a string
    /// 
    /// # Errors
    /// Returns an error if documentation generation fails
    pub async fn generate_documentation(&self, code: &str, doc_type: &str) -> Result<String> {
        info!("Generating {} documentation using AIChat", doc_type);

        let mut cmd = Command::new("aichat");
        cmd.arg("--model").arg(&self.config.model);
        cmd.arg("--temperature").arg("0.4"); // Slightly more focused for documentation
        
        let doc_prompt = match doc_type {
            "api" => format!(
                "Generate comprehensive API documentation for the following Rust code. \
                Include function descriptions, parameters, return values, examples, and error conditions:\n\n```rust\n{}\n```",
                code
            ),
            "tutorial" => format!(
                "Create a tutorial explaining how to use the following Rust code. \
                Include step-by-step instructions and practical examples:\n\n```rust\n{}\n```",
                code
            ),
            "readme" => format!(
                "Generate a README.md file for a Rust project containing this code. \
                Include project description, installation, usage, and examples:\n\n```rust\n{}\n```",
                code
            ),
            _ => format!(
                "Generate documentation for the following Rust code:\n\n```rust\n{}\n```",
                code
            ),
        };

        cmd.arg(&doc_prompt);

        match cmd.output() {
            Ok(output) => {
                if output.status.success() {
                    let documentation = String::from_utf8(output.stdout)?;
                    info!("Successfully generated {} documentation", doc_type);
                    Ok(documentation)
                } else {
                    let error_msg = String::from_utf8_lossy(&output.stderr);
                    warn!("Documentation generation failed: {}", error_msg);
                    Err(anyhow::anyhow!("Documentation generation failed: {}", error_msg))
                }
            }
            Err(e) => {
                warn!("Failed to execute documentation generation: {}", e);
                // Fallback to basic documentation
                self.fallback_documentation(code, doc_type).await
            }
        }
    }

    // Private helper methods

    /// Fallback code generation when AIChat is not available
    async fn fallback_code_generation(&self, prompt: &str) -> Result<String> {
        warn!("Using fallback code generation");
        
        // Simple template-based code generation
        let code_template = format!(
            r#"// Generated code for: {}
//
// This is a basic template. Please customize as needed.

use anyhow::Result;

/// Main function generated for the request
pub fn generated_function() -> Result<()> {{
    // TODO: Implement the requested functionality
    println!("Generated code for: {}", "{}");
    Ok(())
}}

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

    #[test]
    fn test_generated_function() {{
        assert!(generated_function().is_ok());
    }}
}}
"#,
            prompt, prompt
        );

        Ok(code_template)
    }

    /// Fallback code analysis when AIChat is not available
    async fn fallback_code_analysis(&self, code: &str) -> Result<String> {
        warn!("Using fallback code analysis");
        
        let mut analysis = Vec::new();
        
        // Basic static analysis
        if code.contains("unsafe") {
            analysis.push("⚠️  Contains unsafe code - review carefully for memory safety");
        }
        
        if code.contains("unwrap()") {
            analysis.push("⚠️  Uses unwrap() - consider proper error handling");
        }
        
        if code.contains("panic!") {
            analysis.push("⚠️  Contains panic! - consider returning errors instead");
        }
        
        if !code.contains("#[cfg(test)]") && !code.contains("#[test]") {
            analysis.push("📝 Consider adding unit tests");
        }
        
        if !code.contains("//!") && !code.contains("///") {
            analysis.push("📝 Consider adding documentation comments");
        }
        
        let line_count = code.lines().count();
        if line_count > 100 {
            analysis.push("📏 Function/file is quite long - consider breaking it down");
        }

        if analysis.is_empty() {
            analysis.push("✅ No obvious issues found in basic analysis");
        }

        Ok(format!(
            "# Basic Code Analysis\n\n{}\n\n_Note: This is a basic analysis. For comprehensive analysis, install AIChat._",
            analysis.join("\n")
        ))
    }

    /// Fallback documentation generation when AIChat is not available
    async fn fallback_documentation(&self, code: &str, doc_type: &str) -> Result<String> {
        warn!("Using fallback documentation generation");
        
        match doc_type {
            "readme" => Ok(format!(
                "# Rust Project\n\n## Description\n\nThis project contains Rust code.\n\n## Usage\n\n```rust\n{}\n```\n\n## Installation\n\n```bash\ncargo add your-crate-name\n```",
                code.lines().take(10).collect::<Vec<_>>().join("\n")
            )),
            "api" => Ok(format!(
                "# API Documentation\n\n## Code\n\n```rust\n{}\n```\n\n_Note: For detailed API documentation, install AIChat._",
                code
            )),
            _ => Ok(format!(
                "# Documentation\n\n```rust\n{}\n```\n\n_Note: For detailed documentation, install AIChat._",
                code
            )),
        }
    }
}