第一次提交

This commit is contained in:
2026-03-12 13:27:03 +08:00
commit 27fba7a7cc
26 changed files with 6323 additions and 0 deletions

16
agents/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
"""Agent 模块初始化文件"""
from .pm_agent import ProductManagerAgent, create_pm_agent
from .qa_agent import QAAgent, create_qa_agent
from .dev_agent import DevAgent, create_dev_agent
from .orchestrator import OrchestratorAgent, create_orchestrator_agent
__all__ = [
"ProductManagerAgent",
"create_pm_agent",
"QAAgent",
"create_qa_agent",
"DevAgent",
"create_dev_agent",
"OrchestratorAgent",
"create_orchestrator_agent"
]