Add environment configuration and local development documentation
- Parameterize CORS_ORIGINS in docker-compose.swarm.yml - Add .env.example with configuration options - Create comprehensive LOCAL_DEVELOPMENT.md guide - Update README.md with environment variable documentation - Provide alternatives for local development without production domain 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
35
mcp-server/dist/hive-client.d.ts
vendored
35
mcp-server/dist/hive-client.d.ts
vendored
@@ -17,6 +17,17 @@ export interface Agent {
|
||||
status: 'available' | 'busy' | 'offline';
|
||||
current_tasks: number;
|
||||
max_concurrent: number;
|
||||
agent_type?: 'ollama' | 'cli';
|
||||
cli_config?: {
|
||||
host?: string;
|
||||
node_version?: string;
|
||||
model?: string;
|
||||
specialization?: string;
|
||||
max_concurrent?: number;
|
||||
command_timeout?: number;
|
||||
ssh_timeout?: number;
|
||||
agent_type?: string;
|
||||
};
|
||||
}
|
||||
export interface Task {
|
||||
id: string;
|
||||
@@ -58,6 +69,30 @@ export declare class HiveClient {
|
||||
registerAgent(agentData: Partial<Agent>): Promise<{
|
||||
agent_id: string;
|
||||
}>;
|
||||
getCliAgents(): Promise<Agent[]>;
|
||||
registerCliAgent(agentData: {
|
||||
id: string;
|
||||
host: string;
|
||||
node_version: string;
|
||||
model?: string;
|
||||
specialization?: string;
|
||||
max_concurrent?: number;
|
||||
agent_type?: string;
|
||||
command_timeout?: number;
|
||||
ssh_timeout?: number;
|
||||
}): Promise<{
|
||||
agent_id: string;
|
||||
endpoint: string;
|
||||
health_check?: any;
|
||||
}>;
|
||||
registerPredefinedCliAgents(): Promise<{
|
||||
results: any[];
|
||||
}>;
|
||||
healthCheckCliAgent(agentId: string): Promise<any>;
|
||||
getCliAgentStatistics(): Promise<any>;
|
||||
unregisterCliAgent(agentId: string): Promise<{
|
||||
success: boolean;
|
||||
}>;
|
||||
createTask(taskData: {
|
||||
type: string;
|
||||
priority: number;
|
||||
|
||||
Reference in New Issue
Block a user