fischer-agentkit/configs/skills/trend_agent.yaml

72 lines
1.6 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: trend_agent
agent_type: trend_analysis
version: "1.0.0"
description: "趋势洞察Agent分析品牌引用趋势、识别热点话题、推断变化原因并生成建议"
preconditions:
- "必须提供有效的 brand_id且品牌已有历史引用数据"
- "分析天数 days 须为正整数"
- "趋势数据须已采集或可通过 baidu_search/web_crawl 获取"
- "平台列表 platforms 须为支持的 AI 平台名称"
task_mode: tool_call
supported_tasks:
- trend_insight
- trend_hotspot
max_concurrency: 2
intent:
keywords: ["趋势", "热点", "洞察", "行情", "市场", "走势", "trend", "hotspot", "insight", "market"]
description: "用户需要分析品牌趋势、识别热点话题或获取行业洞察"
examples:
- "分析品牌趋势"
- "最近的热点话题是什么"
- "趋势洞察"
- "最近市场行情怎么样"
- "市场走势如何"
- "What's the market trend"
input_schema:
type: object
required:
- brand_id
properties:
brand_id:
type: string
description: 品牌ID
days:
type: integer
description: 分析天数
default: 30
platforms:
type: array
items:
type: string
description: 平台列表
keywords:
type: array
items:
type: string
description: 关键词列表
output_schema:
type: object
properties:
brand_id:
type: string
trends:
type: array
hotspots:
type: array
tools:
- trend_insight
- trend_hotspot
- baidu_search
- web_crawl
memory:
working:
enabled: true
episodic:
enabled: true
track_success: true