f568728de1
- Adds a new autonomous agent template that monitors competitor websites, news, and GitHub - Implements a 7-node graph workflow to collect, aggregate, and analyze competitive data - Generates a weekly structured HTML digest with key highlights and 30-day trends - Utilizes existing web_scrape, web_search, and github MCP tools - Addresses issue #4153 Closes #4153
25 lines
631 B
Python
25 lines
631 B
Python
"""
|
|
Competitive Intelligence Agent — Automated competitor monitoring and reporting.
|
|
|
|
Monitors competitor websites, news sources, and GitHub repositories to deliver
|
|
structured weekly digests with key insights and 30-day trend analysis for
|
|
product and marketing teams.
|
|
"""
|
|
|
|
from .agent import CompetitiveIntelAgent, default_agent, goal, nodes, edges
|
|
from .config import RuntimeConfig, AgentMetadata, default_config, metadata
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
__all__ = [
|
|
"CompetitiveIntelAgent",
|
|
"default_agent",
|
|
"goal",
|
|
"nodes",
|
|
"edges",
|
|
"RuntimeConfig",
|
|
"AgentMetadata",
|
|
"default_config",
|
|
"metadata",
|
|
]
|