Settings

Configure your Agent Command Center.

Appearance
Configure the appearance of your Command Center

Theme

Switch between light and dark mode

Dark mode
General Settings
Configure general settings for your Command Center
Agent Connection
Configure how agents connect to the Command Center

Use this key to connect your agents to the Command Center

Integration Code Sample


// Agent integration example
import { AgentCommandCenter } from 'agent-command-center';

// Initialize connection to Command Center
const commandCenter = new AgentCommandCenter({
  key: 'sk_agent_command_12345678',
  agentName: 'My Custom Agent',
  agentType: 'Processing'
});

// Report status updates
commandCenter.updateStatus('processing');

// Log events
commandCenter.logEvent({
  type: 'info',
  message: 'Processing started'
});

// Report task completion
commandCenter.completeTask({
  success: true,
  processingTime: 1.2,
  metadata: { /* any custom data */ }
});