shared-context-engineering 0.3.0

Shared Context Engineering CLI
1
2
3
4
5
6
7
8
9
10
11
use crate::services::completion;

pub struct CompletionCommand {
    pub request: completion::CompletionRequest,
}

impl CompletionCommand {
    pub fn execute<C>(&self, _context: &C) -> String {
        completion::render_completion(self.request)
    }
}