Query deadlines by keyword or idea (portable)

Published copy (for agents)

This file is deployed with the AI Conference Deadlines site. Agents may fetch the source markdown from GitHub (same text as in this repository):

Human-readable page (built by Jekyll): /ai-deadlines/static/skill/SKILL.html on the site.

Dataset backing this deployment (when applicable): conference YAML under _data/conferences/ and _data/types.yml in the source repository.

Audience

This file is agent-agnostic: any assistant (Cursor, OpenClaw, CLI agents, IDE plugins, etc.) can follow it if the instructions are loaded into context or referenced as a skill URL. No editor-specific APIs are required.

Goal

Produce accurate, sourced answers to: “What conferences / deadlines match this keyword or idea?”

Use either or both:

  1. Structured data — YAML files listing conferences (see Data layout).
  2. Web search — official call-for-papers (CFP) pages when data is missing, predicted, or stale.

Never fabricate deadlines.

Data layout (when a repo or dataset exists)

Typical ai-deadlines–style trees:

If the user’s workspace has no such paths, skip file search and rely on Web-only mode.

Convention: sub may be a string or a list. Match if any tag fits the user’s topic.

Subject tags (sub)

Map user language to tags using the project’s types file when present; otherwise use this table:

User might say Typical sub
machine learning, deep learning ML
computer vision, images, video CV
NLP, LLMs, ACL-style NLP
robotics, embodied RO
speech, audio SP
data mining, recsys DM
planning AP
knowledge representation KR
HCI HCI
AI + education EDU
graphics CG

For narrow topics, also search title, full_name, and note text (e.g. “dialogue”, “3D”, “medical”).

Workflow

  1. Normalize the query
    Extract 1–3 keywords; assign one or more sub values. If ambiguous, ask one short question or cover the most likely tags.

  2. Search structured data (if available)
    Grep or search all conference YAML for matching sub: and optional text fields. Respect the workspace root the user provides.

  3. Collect fields
    Per match: title, year, id, deadline, abstract_deadline, timezone, place, date, link, note.

  4. Sort by urgency
    Prefer deadlines after “today” (use user-provided or system date). Sort by main submission deadline unless only abstract/ARR dates exist—then state that clearly.

  5. Flag uncertainty
    If note (or absence of official link) suggests Predicted, Estimated, TBA, or when available, label the row unconfirmed and recommend the official CFP URL or a search: "[conference acronym] [year] call for papers".

  6. Web verification
    For unconfirmed rows or user requests for “latest” dates, open official domains (conference or society site) and reconcile with YAML.

Web-only mode

If there is no local YAML:

  1. Infer venues from keywords (e.g. vision → CVPR/ICCV/ECCV; ML → NeurIPS/ICML/ICLR; NLP → ACL/EMNLP/NAACL).
  2. Use web search for current year and next year CFP pages.
  3. Present deadlines with source URL; prefer pages hosted by the conference or ACM/IEEE/CVF as appropriate.

Output format

Use a compact table or bullets:

Examples

Loading this skill in other agents

Display notes

Strip HTML from note when speaking plain text to the user. Sorting in a static site UI may differ from agent-side date sorting; always compute order from parsed deadline strings and timezone when possible.