UNPKG

@bobmatnyc/claude-pm-portfolio-manager

Version:

Claude PM Portfolio Management Dashboard - React-based monitoring and reporting for Claude PM managed projects

10 lines (9 loc) 290 B
import { default as React } from 'react'; import { Agent } from '../../types/agent'; interface AgentInfoProps { projectPath?: string; showAllAgents?: boolean; onAgentSelect?: (agent: Agent) => void; } declare const AgentInfo: React.FC<AgentInfoProps>; export default AgentInfo;