ConferenceWatch

by Zsun79Verified

An Agent Skill to watch the deadlines of latest AI conference.

93
Stars
0
Forks
8/24/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/Zsun79/ConferenceWatch

Getting Started

Guides for using skills like ConferenceWatch.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

ConferenceWatch

An Agent Skill that watches upcoming AI/ML conferences and reports, for each one: submission deadlines (every stage), dates, location, special sessions / call for papers, official web links, and a 5-year acceptance-rate trend. It is written to be reusable across common coding agents that can search the web — Claude Code, Codex, and similar.


What it produces

Every run yields two artifacts:

  1. conferences.<date>.json — the structured source of truth. One object per conference (keyed by acronym), each holding the upcoming edition (deadlines, location, special sessions, links) and a 5-year acceptance-rate trend. Schema: references/json-schema.md.
  2. conference-report.<date>.md — a human-readable report with a short summary, a nearest-deadlines table, a per-conference breakdown, and a clearly separated "approximate / inferred" section. Template: assets/report.template.md.

The agent also answers directly in chat with the most time-sensitive items.


How to use

This skill is plain Markdown + JSON, so it can be used by Codex, Claude Code, or any agent that can read SKILL.md, search/fetch the web, and write files.

Install for Codex

Clone directly into Codex's personal skills directory:

git clone https://github.com/Zsun79/ConferenceWatch.git ~/.codex/skills/conference-watch

If you already cloned the project somewhere else, run this from the root of this cloned skill repository to link the current checkout into Codex:

mkdir -p ~/.codex/skills
ln -s "$(pwd)" ~/.codex/skills/conference-watch

Then ask Codex naturally for AI/ML conference deadlines, venue comparisons, or submission planning. Codex will use SKILL.md as the workflow when the request matches the skill description.

Install for Claude Code

Clone directly into Claude's personal skills directory:

git clone https://github.com/Zsun79/ConferenceWatch.git ~/.claude/skills/conference-watch

If you already cloned the project somewhere else, run this from the root of this cloned skill repository to link the current checkout into Claude:

mkdir -p ~/.claude/skills
ln -s "$(pwd)" ~/.claude/skills/conference-watch

If this checkout is the project where you want Claude to load the skill, run this from the repository root to link the current directory into .claude/skills/conference-watch:

mkdir -p .claude/skills
ln -s "$(pwd)" .claude/skills/conference-watch

The skill activates from its description when your request matches.

Use with other agents

For agents without a dedicated skill folder, use this repository as a local instruction bundle:

Requirement: the host agent must have a web search / fetch capability (and, to save files, filesystem access). No API keys or build step required.

Example prompts

> What are the deadlines for the top NLP conferences in the next 6 months?
> Track NeurIPS, ICML, and ICLR 2026 for me.
> Compare the top-tier CV venues by acceptance rate and next deadline.
> List the top 5 AI conferences with deadlines before end of 2026.
> I work in computer vision -- track the A* venues and show acceptance-rate trends.
> Just give me the top conferences, I don't want to specify an area.

How it works (workflow)

The full logic lives in SKILL.md. In short:

flowchart TD
    A[Anchor on today's date] --> B[Analyze request and narrow scope]
    B --> C{Named venues or clear filters?}
    C -- No --> D[Ask 1-3 follow-up questions<br/>or use top-venue defaults]
    C -- Yes --> E[Build initial conference JSON]
    D --> E
    E --> F[Confirm candidate conference list]
    F --> G[Research upcoming edition first<br/>official CFP and important dates]
    G --> H[Collect every deadline stage,<br/>location, sessions, and links]
    H --> I[Gather last 5 editions<br/>acceptance-rate trend]
    I --> J{Upcoming dates confirmed?}
    J -- Yes --> K[Mark confirmed with sources]
    J -- No --> L[Infer approximate window<br/>from historical pattern]
    K --> M[Validate JSON]
    L --> M
    M --> N[Write JSON dataset]
    M --> O[Write Markdown report]
    N --> P[Answer in chat<br/>nearest deadlines first]
    O --> P
  1. Anchor on today's date — all "future vs past" decisions are relative to the current date, not the model's training cutoff.
  2. Analyze the request & narrow scope — the agent asks 1–3 follow-up questions to filter by area (NLP/CV/RL/…), reputation/tier (CORE A*/A/B), difficulty (acceptance rate), and horizon. If you decline, it defaults to the top AI venues (see references/conference-catalog.md).
  3. Build the initial JSON — the candidate conference list is written out first, then confirmed with you before the long search phase.
  4. Research the upcoming edition first — searches official CFP/"important dates" pages, records every deadline stage, location, special sessions, and links; marks them confirmed with sources.
  5. Historical anchor (last 5 editions) — builds the acceptance-rate trend and, when a future edition isn't announced yet, infers an approximate deadline window from the historical pattern — always flagged as approximate.
  6. Output — validates the JSON, writes the Markdown report with a short synthesized summary, and answers in chat.

Core rule: never fabricate dates. Anything not on an authoritative source is either null (with a note) or clearly marked approximate/inferred.


Repository layout

ConferenceWatch/
├── SKILL.md                          # main skill: workflow + rules (entry point)
├── README.md                         # this file
├── references/
│   ├── conference-catalog.md         # curated venues by area/tier + source sites
│   └── json-schema.md                # JSON schema + field rules
└── assets/
    ├── conference-data.template.json # starting JSON structure
    └── report.template.md            # Markdown report template

Notes & limitations

  • Deadlines and rankings change; the skill confirms on official sites and cites sources, but always re-check the CFP before submitting.
  • Acceptance-rate numbers can differ by source (main track vs. all tracks); the skill records the source alongside each figure.
  • Inferred future dates are estimates only — labeled approximate everywhere.
  • ⚠️ Generated reports are marked PRIVATE classification by default; handle the output accordingly.

Frequently Asked Questions

What is ConferenceWatch?

ConferenceWatch is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Zsun79. An Agent Skill to watch the deadlines of latest AI conference. It has 93 GitHub stars.

Is ConferenceWatch safe to use?

Yes. ConferenceWatch passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install ConferenceWatch?

Clone the repository with "git clone https://github.com/Zsun79/ConferenceWatch" and add it to your Claude Code skills directory (see the Installation section above). ConferenceWatch ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

Are there alternatives to ConferenceWatch?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh ConferenceWatch against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI Agents
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details