mirror of
https://github.com/ruvnet/RuView
synced 2026-07-29 18:31:44 +00:00
4b1005524e
- Add 154 missing vendor files (gitignore was filtering them) - vendor/midstream: 564 files (was 561) - vendor/sublinear-time-solver: 1190 files (was 1039) - Add ESP32 edge processing (ADR-039): presence, vitals, fall detection - Add WASM programmable sensing (ADR-040/041) with wasm3 runtime - Add firmware CI workflow (.github/workflows/firmware-ci.yml) - Add wifi-densepose-wasm-edge crate for edge WASM modules - Update sensing server, provision.py, UI components Co-Authored-By: claude-flow <ruv@ruv.net>
46 lines
1.0 KiB
TypeScript
46 lines
1.0 KiB
TypeScript
/**
|
|
* MCP Tools for Temporal Lead Solver
|
|
* Provides temporal computational lead calculations through MCP
|
|
*/
|
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
export declare class TemporalTools {
|
|
private predictor;
|
|
constructor();
|
|
/**
|
|
* Get all temporal lead tools
|
|
*/
|
|
getTools(): Tool[];
|
|
/**
|
|
* Handle tool calls
|
|
*/
|
|
handleToolCall(name: string, args: any): Promise<any>;
|
|
/**
|
|
* Predict with temporal advantage
|
|
*/
|
|
private predictWithTemporalAdvantage;
|
|
/**
|
|
* Validate temporal advantage
|
|
*/
|
|
private validateTemporalAdvantage;
|
|
/**
|
|
* Calculate light travel comparison
|
|
*/
|
|
private calculateLightTravel;
|
|
/**
|
|
* Demonstrate temporal lead scenarios
|
|
*/
|
|
private demonstrateTemporalLead;
|
|
/**
|
|
* Convert matrix to dense format
|
|
*/
|
|
private convertToDenseMatrix;
|
|
/**
|
|
* Interpret validation results
|
|
*/
|
|
private interpretResults;
|
|
/**
|
|
* Get practical application description
|
|
*/
|
|
private getPracticalApplication;
|
|
}
|