UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

22 lines (21 loc) 492 B
/** * Footer component adapted from gemini-cli for automagik context */ import React from 'react'; interface FooterProps { model?: string; targetDir?: string; debugMode: boolean; debugMessage: string; sessionId: string; apiUrl: string; branchName?: string; nightly?: boolean; selectedTarget?: { type: 'agent' | 'team' | 'workflow'; id: string; name: string; }; } export declare const Footer: React.FC<FooterProps>; export {};