wootype 0.2.1

Blazing-fast Go type system service —— Vibe Coding toolchain
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
//! Wootype Daemon - Type System as a Service
//!
//! CLI entry point for the wootype type checking service.
#![allow(unused_imports, unused_variables)]
//!
//! # Usage
//!
//! ```bash
//! # Start the daemon
//! wootype daemon
//!
//! # Import a package
//! wootype import github.com/example/mypackage
//!
//! # Query types
//! wootype query --session <id> --type int
//!
//! # Validate expression
//! wootype validate --session <id> --expr "x + 1"
//! ```

use clap::{Parser, Subcommand};
use std::path::PathBuf;
use std::sync::Arc;
use tracing::{error, info};

use wootype::agent::{AgentCoordinator, AgentSession, AgentType, SessionConfig};
use wootype::api::{ApiConfig, ApiServer};
use wootype::bridge::{BridgeConfig, IpcBridge};
use wootype::core::{TypeId, TypeUniverse};

/// Wootype CLI
#[derive(Parser)]
#[command(name = "wootype")]
#[command(about = "Type System as a Service for Go")]
#[command(version)]
struct Cli {
    /// Log level
    #[arg(short, long, default_value = "info")]
    log_level: String,

    /// Configuration file
    #[arg(short, long)]
    config: Option<PathBuf>,

    /// Subcommand
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand)]
enum Commands {
    /// Start the type daemon
    Daemon {
        /// IPC socket path
        #[arg(short, long, default_value = "/tmp/wootype.sock")]
        socket: PathBuf,

        /// gRPC bind address
        #[arg(short, long, default_value = "127.0.0.1:50051")]
        grpc_addr: String,

        /// Preload stdlib packages
        #[arg(long)]
        preload_stdlib: bool,
    },

    /// Import a Go package
    Import {
        /// Package path
        package: String,

        /// Recursive import
        #[arg(short, long)]
        recursive: bool,
    },

    /// Query types
    Query {
        /// Session ID
        #[arg(short, long)]
        session: Option<String>,

        /// Type name
        #[arg(short, long)]
        type_name: Option<String>,

        /// Package path
        #[arg(short, long)]
        package: Option<String>,

        /// Pattern search
        #[arg(short, long)]
        pattern: Option<String>,
    },

    /// Validate expression
    Validate {
        /// Session ID
        #[arg(short, long)]
        session: String,

        /// Expression to validate
        #[arg(short, long)]
        expr: String,

        /// Expected type
        #[arg(short, long)]
        expected_type: Option<String>,
    },

    /// Connect as an AI Agent
    Connect {
        /// Agent name
        #[arg(short, long)]
        name: String,

        /// Agent type
        #[arg(short, long, default_value = "generic")]
        agent_type: String,

        /// Isolation level
        #[arg(short, long, default_value = "full")]
        isolation: String,
    },

    /// Show status
    Status,

    /// Run benchmarks
    Bench {
        /// Benchmark type
        #[arg(short, long, default_value = "all")]
        kind: String,
    },
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let cli = Cli::parse();

    // Initialize tracing
    tracing_subscriber::fmt()
        .with_env_filter(&cli.log_level)
        .init();

    info!("Wootype v{}", env!("CARGO_PKG_VERSION"));

    match cli.command {
        Commands::Daemon {
            socket,
            grpc_addr,
            preload_stdlib,
        } => {
            run_daemon(socket, grpc_addr, preload_stdlib).await?;
        }
        Commands::Import { package, recursive } => {
            run_import(package, recursive).await?;
        }
        Commands::Query {
            session,
            type_name,
            package,
            pattern,
        } => {
            run_query(session, type_name, package, pattern).await?;
        }
        Commands::Validate {
            session,
            expr,
            expected_type,
        } => {
            run_validate(session, expr, expected_type).await?;
        }
        Commands::Connect {
            name,
            agent_type,
            isolation,
        } => {
            run_connect(name, agent_type, isolation).await?;
        }
        Commands::Status => {
            run_status().await?;
        }
        Commands::Bench { kind } => {
            run_bench(kind).await?;
        }
    }

    Ok(())
}

/// Run the daemon
async fn run_daemon(
    socket: PathBuf,
    grpc_addr: String,
    preload_stdlib: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    info!("Starting wootype daemon");
    info!("IPC socket: {:?}", socket);
    info!("gRPC address: {}", grpc_addr);

    // Create universe
    let universe = Arc::new(TypeUniverse::new());
    info!(
        "Type universe initialized with {} types",
        universe.type_count()
    );

    // Preload stdlib if requested
    if preload_stdlib {
        info!("Preloading stdlib packages...");
        let importer = wootype::parser::PackageImporter::new(universe.clone());
        let results = importer.preload_stdlib().await;
        let total_imported: usize = results.iter().map(|r| r.types_imported).sum();
        info!("Preloaded {} types from stdlib", total_imported);
    }

    // Create coordinator
    let _coordinator = Arc::new(AgentCoordinator::new(universe.clone()));
    info!("Agent coordinator initialized");

    // Start IPC bridge
    #[cfg(unix)]
    let bridge_config = BridgeConfig {
        socket_path: socket,
        max_connections: 100,
        message_timeout_ms: 5000,
    };
    #[cfg(windows)]
    let bridge_config = BridgeConfig {
        tcp_port: 9527,
        max_connections: 100,
        message_timeout_ms: 5000,
    };
    let mut bridge = IpcBridge::new(universe.clone(), bridge_config);

    // Start gRPC server
    let api_config = ApiConfig {
        bind_address: grpc_addr.parse()?,
        max_concurrent_streams: 100,
        enable_reflection: true,
    };
    let api_server = ApiServer::new(api_config, universe.clone());

    // Run both services concurrently
    tokio::select! {
        result = bridge.start() => {
            if let Err(e) = result {
                error!("IPC bridge error: {}", e);
            }
        }
        result = api_server.start() => {
            if let Err(e) = result {
                error!("API server error: {}", e);
            }
        }
    }

    Ok(())
}

/// Import a package
async fn run_import(package: String, _recursive: bool) -> Result<(), Box<dyn std::error::Error>> {
    info!("Importing package: {}", package);

    let universe = Arc::new(TypeUniverse::new());
    let importer = wootype::parser::PackageImporter::new(universe);

    match importer.import(&package).await {
        Ok(result) => {
            info!("Imported {} types from {}", result.types_imported, package);
            for error in &result.errors {
                error!("Import error: {:?}", error);
            }
        }
        Err(e) => {
            error!("Failed to import {}: {:?}", package, e);
        }
    }

    Ok(())
}

/// Query types
async fn run_query(
    _session: Option<String>,
    type_name: Option<String>,
    package: Option<String>,
    pattern: Option<String>,
) -> Result<(), Box<dyn std::error::Error>> {
    let universe = Arc::new(TypeUniverse::new());
    let _engine = wootype::query::QueryEngine::new(universe);

    info!("Querying types...");

    if let Some(name) = type_name {
        info!("Looking up type: {}", name);
        // Would query by name
    }

    if let Some(pkg) = package {
        info!("In package: {}", pkg);
    }

    if let Some(pat) = pattern {
        info!("Pattern: {}", pat);
        // Would do pattern search
    }

    Ok(())
}

/// Validate expression
async fn run_validate(
    _session: String,
    expr: String,
    expected_type: Option<String>,
) -> Result<(), Box<dyn std::error::Error>> {
    info!("Validating expression: {}", expr);

    if let Some(expected) = expected_type {
        info!("Expected type: {}", expected);
    }

    // Would validate expression

    Ok(())
}

/// Connect as AI Agent
async fn run_connect(
    name: String,
    agent_type: String,
    isolation: String,
) -> Result<(), Box<dyn std::error::Error>> {
    info!("Connecting agent: {} (type: {})", name, agent_type);

    let universe = Arc::new(TypeUniverse::new());
    let coordinator = Arc::new(AgentCoordinator::new(universe));

    let agent_type = match agent_type.as_str() {
        "cursor" => AgentType::Cursor,
        "claude_code" => AgentType::ClaudeCode,
        "gemini_cli" => AgentType::GeminiCLI,
        "github_copilot" => AgentType::GitHubCopilot,
        _ => AgentType::Generic,
    };

    let isolation_level = match isolation.as_str() {
        "full" => wootype::agent::IsolationLevel::Full,
        "shared" => wootype::agent::IsolationLevel::SharedRead,
        "snapshot" => wootype::agent::IsolationLevel::Snapshot,
        _ => wootype::agent::IsolationLevel::Full,
    };

    let conn_request = wootype::agent::coordinator::ConnectionRequest {
        agent_id: wootype::agent::AgentId::new(1),
        name,
        agent_type,
        preferred_isolation: Some(isolation_level),
    };

    match coordinator.connect(conn_request).await {
        wootype::agent::coordinator::ConnectionResult::Connected { session_id } => {
            info!("Connected! Session ID: {}", session_id.0);
        }
        wootype::agent::coordinator::ConnectionResult::Rejected { reason } => {
            error!("Connection rejected: {:?}", reason);
        }
    }

    Ok(())
}

/// Show status
async fn run_status() -> Result<(), Box<dyn std::error::Error>> {
    info!("Wootype Status");
    info!("Version: {}", env!("CARGO_PKG_VERSION"));

    // Would show actual status

    Ok(())
}

/// Run benchmarks
async fn run_bench(kind: String) -> Result<(), Box<dyn std::error::Error>> {
    info!("Running benchmarks: {}", kind);

    let universe = Arc::new(TypeUniverse::new());
    let engine = wootype::query::QueryEngine::new(universe);

    // Type query benchmark
    let start = std::time::Instant::now();
    for _ in 0..10000 {
        let _ = engine.get_type(TypeId(1));
    }
    let elapsed = start.elapsed();

    info!("Query benchmark: {:?} for 10000 queries", elapsed);
    info!("Average: {:?} per query", elapsed / 10000);

    Ok(())
}