probe-code 0.6.0

AI-friendly, fully local, semantic code search tool for large codebases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node

/**
 * @buger/probe-chat CLI
 * Command-line interface for Probe code search chat
 *
 * This is a thin wrapper around the main functionality in index.js
 */

import { main } from '../index.js';

// Execute the main function
main();