Install
openclaw skills install ccfddl-conference-watchFetch and filter academic conference deadlines from CCFDDL (https://ccfddl.com). Use this skill whenever the user mentions CCF conferences, paper submission...
openclaw skills install ccfddl-conference-watchQuery real conference deadline data from CCFDDL and present it clearly.
Try sources in this order — stop as soon as one succeeds:
Primary: RSS feed via web_fetch
Fetch https://ccfddl.com/conference/deadlines_zh.xml using the web_fetch tool.
This returns XML with all conferences (including historical ones — you must filter).
Fallback: web_search + web_fetch
If the RSS feed fails, search for site:ccfddl.com {会议名或方向} deadline and
fetch relevant result pages.
Last resort Tell the user: "CCFDDL 数据暂时无法获取,建议直接访问 https://ccfddl.com 查看。" Never fabricate conference data.
The feed contains hundreds of <item> entries spanning many years. Each item looks like:
<item>
<title>AAAI 2022 截稿日期</title>
<link>https://aaai.org/Conferences/AAAI-22/</link>
<description>AAAI Conference on Artificial Intelligence 会议时间: February 22 - March 1, 2022 会议地点: Vancouver, British Columbia, Canada 截止时间 (UTC-12): 2021-08-30 23:59:59 分类: 人工智能 (AI) CCF A, CORE A*, THCPL A 会议官网: https://aaai.org/Conferences/AAAI-22/ DBLP索引: https://dblp.org/db/conf/aaai</description>
<pubDate>Mon, 30 Aug 2021 23:59:59 -1200</pubDate>
<guid isPermaLink="false">AAAI-2022-abstract-2021-08-30 23:59:59@ccfddl.com</guid>
<category>AI</category>
</item>
<item>| 目标字段 | 提取方式 |
|---|---|
| 简称 + 年份 | <title> — 如 "AAAI 2022 截稿日期",提取 "AAAI 2022" |
| 截稿类型 | <title> 末尾:含 "摘要截稿" → 摘要DDL;含 "截稿日期" → 全文DDL。也可从 <guid> 判断:含 abstract → 摘要,含 deadline → 全文 |
| 全称 | <description> 开头到 "会议时间:" 之前的文本 |
| 会议时间 | <description> 中 "会议时间:" 与 "会议地点:" 之间的文本 |
| 会议地点 | <description> 中 "会议地点:" 与 "截止时间" 之间的文本 |
| 截止时间 | <description> 中 "截止时间 (UTC-12):" 后的日期时间字符串 |
| 分类 | <category> 标签值,如 "AI";中文名在 "分类:" 后(如 "人工智能 (AI)") |
| CCF 等级 | <description> 中 "CCF" 后紧跟的字母:A / B / C / N |
| 官网 | <link> 标签,或 "会议官网:" 后的 URL |
所有字段用中文标签分隔,没有换行符。按关键词顺序切分:
会议时间: → 会议地点: → 截止时间 → 分类: → CCF → 会议官网: → DBLP索引:
Feed 包含大量历史条目(从 2020 年起)。必须严格过滤:
按截稿日期从近到远排序,用表格展示:
| 简称 | 全称 | CCF | 截稿日期 (UTC-12) | 会议地点 | 官网 |
|------|------|-----|-------------------|---------|------|
| AAAI 2026 | AAAI Conference on AI | A | 摘要: 08-15 / 全文: 08-22 | Seattle, USA | [链接] |
User: "最近有什么 AI 方向的 CCF-A 会议可以投?"
web_fetch 获取 https://ccfddl.com/conference/deadlines_zh.xml<item>,过滤:<category> = AI,CCF = A,截止时间 > 今天User: "CVPR 什么时候截稿?"
<item> 中搜索 title 含 "CVPR" 的条目(不限分类和等级)