一键导入
update-deadlines
Search for and update conference deadline data in deadlines.json for tracked conferences
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search for and update conference deadline data in deadlines.json for tracked conferences
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | update-deadlines |
| description | Search for and update conference deadline data in deadlines.json for tracked conferences |
Search the web for current conference CFP/deadline information and update data/deadlines.json.
User input: $ARGUMENTS
Arguments are optional and flexible. Examples:
/update-deadlines — no arguments, will prompt for everything/update-deadlines CHI 2026 — single conference + year/update-deadlines CHI, ICWSM 2026 — multiple conferences + year/update-deadlines 2027 — all conferences for a specific year/update-deadlines CHI — single conference, will prompt for yearRead .claude/references/conferences.txt. Each line has the format abbreviation | full_name | base_url with an optional 4th | note field. Parse all fields for each conference. The base URL is the conference's official website root — use it in Step 4 for direct fetching. If a note is present, use it to construct the year-specific URL (e.g. a year-prefixed event-page slug pattern) before falling back to web search.
First, parse $ARGUMENTS to extract any conferences and/or year the user already specified:
2026) is the target yearconferences.txt, then proceedThen, prompt only for what's missing. Use AskUserQuestion to ask about:
Read data/deadlines.json and identify which entries already exist for the selected conference+year combinations. Note their current deadlines, dates, and other fields so you can detect changes later.
For each conference+year combination:
Try the official site first. If the conference has a base_url in conferences.txt, construct the year-specific URL (e.g., append /{year}/ or replace the year in the domain) and try WebFetch on it before falling back to WebSearch. Many conference sites follow predictable URL patterns like https://icwsm.org/2026/ or https://ic2s2-2026.org/.
Fall back to web search. If the direct URL doesn't work, use WebSearch with both the abbreviation and full name plus the year, e.g.:
"ICWSM 2026 International AAAI Conference on Web and Social Media call for papers deadline"
WebFetch to visit promising results (official conference sites, WikiCFP, etc.) and extract specific detailssubmission_stage field (see below) or separate entries depending on the pattern:
submission_stage: "Abstract" and submission_stage: "Full paper" on two otherwise-identical entries. The site will group these into a single card automatically.name_full parenthetical suffixes (e.g., "Research Track: Abstracts Due"). Do not use submission_stage for these.T23:59:59Z as the time. For example, "January 15, 2026 AoE" becomes "2026-01-15T23:59:59Z". Do NOT convert AoE to UTC by adding 12 hours — this shifts the date forward by one day and causes the wrong date to display on the website. The goal is for the displayed date to match what the CFP announces. If a specific non-AoE time is given (e.g., "12:00 noon ET"), convert that to UTC normally.Read .claude/references/entry-examples.json for formatting guidance on round-based, multi-track, and abstract+paper patterns. Use these examples to ensure new entries follow established conventions.
Before proposing new entries, check for near-duplicates: entries with the same conference abbreviation, year, and submission type. If a match exists, propose an update rather than a new entry.
For each conference, categorize findings:
Show a clear summary organized by conference:
For each conference, show:
Wait for explicit user approval before making any changes. The user may request modifications to proposed entries.
After user approval:
After updating deadlines.json, verify correctness:
name_display, name_full, venue_type, submission_type, event_dates, deadline, city, country, archival, link, notes). If the entry uses the submission_stage pattern, also verify that field is present on both the abstract and full paper entries.Every entry in data/deadlines.json must follow this structure:
{
"name_display": "CHI 2026",
"name_full": "The ACM Conference on Human Factors in Computing Systems (Research Track: Papers Due)",
"venue_type": "Conference",
"submission_type": "Full papers",
"event_dates": "April 13-17, 2026",
"deadline": "2025-09-30T23:59:59Z",
"city": "Dubai",
"country": "United Arab Emirates",
"archival": "Archival",
"link": "https://example.com/cfp",
"notes": "Relevant details about the submission process, page limits, review process, etc."
}
For conferences with a single-track abstract→paper pipeline, add submission_stage to both entries:
{
"name_display": "COLM 2026",
"name_full": "Conference on Language Modeling",
"venue_type": "Conference",
"submission_type": "Research Papers",
"submission_stage": "Abstract",
"event_dates": "October 6-9, 2026",
"deadline": "2026-03-26T23:59:00Z",
"city": "San Francisco, CA",
"country": "USA",
"archival": "Archival",
"link": "https://colmweb.org/cfp",
"notes": "Abstract submission deadline. ..."
},
{
"name_display": "COLM 2026",
"name_full": "Conference on Language Modeling",
"venue_type": "Conference",
"submission_type": "Research Papers",
"submission_stage": "Full paper",
"event_dates": "October 6-9, 2026",
"deadline": "2026-03-31T23:59:00Z",
"city": "San Francisco, CA",
"country": "USA",
"archival": "Archival",
"link": "https://colmweb.org/cfp",
"notes": "Full paper deadline. ..."
}
name_display: Abbreviation + year (e.g., "CHI 2026"). For conferences with multiple tracks/rounds, keep the display name the same across entries.name_full: Full conference name + year, with track/round/type info in parentheses (e.g., "The Web Conference 2026 (Research Track: Papers Due)")venue_type: One of "Conference", "Workshop", "Journal", "Training"submission_type: e.g., "Full papers", "Short papers", "Research Papers", "Abstracts", "Extended abstracts", "Applications", "Workshops", "Tutorials", "Demonstrations", "Posters", "Panels", "Competitions", "Miscellaneous", "Presentations", "Commentaries"submission_stage (optional): Only used for single-track abstract→paper pipelines. Set to "Abstract" on the abstract deadline entry and "Full paper" on the full paper entry. Both entries must have the same name_display and the same submission_type. Grouping is keyed on name_display + submission_type — entries with the same name_display but different submission_type (e.g., "Full papers" vs "Short papers") will render as separate cards, each showing their own abstract→paper stages. Do not use this field for multi-track conferences — use name_full parentheticals instead. See entry-examples.json for the full pattern.event_dates: Human-readable date range (e.g., "April 13-17, 2026")deadline: ISO 8601 UTC timestamp using the announced deadline date with T23:59:59Z (e.g., a September 30 deadline becomes "2025-09-30T23:59:59Z"). Do not shift AoE dates forward. Use "Rolling" or "N/A" if no fixed deadline.city and country: Event location. Use "Virtual" / "N/A" for online events.archival: "Archival" or "Non-archival"link: URL to the official CFP or conference pagenotes: Brief description of submission requirements, review process, page limits, notification dates, or other relevant detailsdeadlines.jsonname_display and name_full, differing only in submission_stage, deadline, and notes. Do not use name_full parentheticals for these — the submission_stage field is the signal the site uses to group them into one carddeadline timestamps use T23:59:59Z unless a specific time is known