56167c47a2
- Added search functionality for observations and sessions using full-text search. - Implemented formatting functions for search results with citations. - Created multiple tools for searching by various criteria including concept, file, type, and advanced search. - Integrated structured filters and pagination options for search queries. - Established error handling for search operations and server initialization.
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Worker Entry Point
|
|
* Standalone background process for SDK agent
|
|
*/
|
|
|
|
import { main } from '../../sdk/worker.js';
|
|
|
|
// Entry point - just call the worker main function
|
|
main().catch((error) => {
|
|
console.error('[SDK Worker] Fatal error:', error);
|
|
process.exit(1);
|
|
});
|