Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
from app.agents.base import (
AgentMetrics,
AgentResult,
AgentStatus,
AgentTrigger,
BaseAgent,
)
from app.agents.registry import AgentRegistry, registry, get_agent, get_all_agents
from app.agents.triggers import TriggerManager, PreCommitHook, run_agent_manually
__all__ = [
"AgentMetrics",
"AgentResult",
"AgentStatus",
"AgentTrigger",
"BaseAgent",
"AgentRegistry",
"registry",
"get_agent",
"get_all_agents",
"TriggerManager",
"PreCommitHook",
"run_agent_manually",
]
from app.agents.doc_agent import DocAgent
from app.agents.backlog_agent import BacklogAgent
from app.agents.spec_agent import SpecAgent
from app.agents.audit_agent import AuditAgent
from app.agents.observer_agent import ObserverAgent
from app.agents.evolution_agent import EvolutionAgent
from app.agents.security_agent import SecurityAgent
from app.agents.qa_tester_agent import QATesterAgent
from app.agents.fix_agent import FixAgent
from app.agents.ui_test_agent import UITestAgent
from app.agents.rollout_agent import RolloutAgent
from app.agents.conductor_agent import ConductorAgent
__all__.extend([
"DocAgent",
"BacklogAgent",
"SpecAgent",
"AuditAgent",
"ObserverAgent",
"EvolutionAgent",
"SecurityAgent",
"QATesterAgent",
"FixAgent",
"UITestAgent",
"RolloutAgent",
"ConductorAgent",
])