tlnt
Version:
TLNT - HMS-Powered Multi-Agent Platform with Government Agency Analysis, Deep Research, and Enterprise-Ready Deployment. Self-optimizing multi-domain AI agent with continuous learning and enterprise-grade performance monitoring.
81 lines • 1.62 kB
TypeScript
import { Command } from 'commander';
/**
* HMS Dev CLI Commands
* Provides command-line interface for HMS Dev system management
*/
export declare class HMSCommands {
private launcher?;
private dealRegistry?;
private dealEvaluator?;
/**
* Register all HMS Dev commands
*/
registerCommands(program: Command): void;
/**
* Start HMS Dev system
*/
private startSystem;
/**
* Stop HMS Dev system
*/
private stopSystem;
/**
* Show system status
*/
private showStatus;
/**
* Create a new deal
*/
private createDeal;
/**
* List deals
*/
private listDeals;
/**
* Show deal details
*/
private showDeal;
/**
* Evaluate deal action
*/
private evaluateDeal;
/**
* Start watch mode TUI
*/
private startWatchMode;
/**
* List active agents
*/
private listAgents;
/**
* Control agent
*/
private controlAgent;
/**
* Show metrics
*/
private showMetrics;
/**
* Show alerts
*/
private showAlerts;
/**
* Show configuration
*/
private showConfig;
/**
* Validate configuration
*/
private validateConfig;
private printSystemInfo;
private formatUptime;
private getComponentIcon;
private getDealStatusIcon;
private getPriorityColor;
private getRecommendationColor;
private getAgentStateColor;
private formatTimeSince;
private parseStakeholders;
private interactiveCreateDeal;
}
//# sourceMappingURL=hmsCommands.d.ts.map