3
—
In review
Synced today
What it does
An evaluation tool that benchmarks AI agents' ability to manage and resolve complex calendar scheduling conflicts from natural language inputs, simulating personal assistant scenarios.
Skill profile
Keep exploring
More options in Business Ops.
Claude Code · Codex · OpenClaw
Stata
Updated 5/11/2026
Agent compatibility
Compatibility has not been reviewed for this listing yet. Check the publisher documentation before installing.
Installation
npx skills add https://github.com/qhjqhj00/research-skills-pool --skill calendar-scheduling-evalReview source code and installation permissions before adding third-party tools to an agent.
calendar-scheduling-eval is organized in the Business Ops category. Compare its source, install method, and compatibility before adding it to your workflow.
Third-party agent tools may access source code, credentials, or browser sessions. Read the source documentation and use the minimum permissions needed.
npx skills add https://github.com/qhjqhj00/research-skills-pool --skill calendar-scheduling-evalSKILL.md
---
name: calendar-scheduling-eval
description: Tests an agent's capacity to handle complex constraint satisfaction by managing and resolving conflicting schedules derived purely from raw natural language descriptions. It simulates personal assistant scenarios where the model must maintain a high-density representation of events to detect conflicts accurately. Use when the user wants to benchmark on Calendar Scheduling, or asks about evaluating this task. Reports Exact Match (EM).
metadata:
skill_kind: dataset_eval
source_arxiv: 2604.14930
bibtex_key: lv2026ieascache
confidence: high
---
# calendar-scheduling-eval
> IE as Cache: Information Extraction Enhanced Agentic Reasoning — Hang Lv et al. (2026) (arXiv:2604.14930, 2026)
## What this evaluates
Tests an agent's capacity to handle complex constraint satisfaction by managing and resolving conflicting schedules derived purely from raw natural language descriptions. It simulates personal assistant scenarios where the model must maintain a high-density representation of events to detect conflicts accurately.
## Datasets
- **Calendar Scheduling** — total ?; splits: test (-1)
## Metrics
- `Exact Match (EM)` **(primary)** — range: [0, 1]
- 1 if the predicted schedule exactly satisfies all constraints and matches the ground-truth solution, 0 otherwise.
## Input / output format
**Input**: Raw natural language descriptions of scheduling constraints and events.
**Output**: A final schedule or decision satisfying the target constraints.
## Scoring recipe
```python
def score_em(pred, gold):
return 1.0 if pred.strip().lower() == gold.strip().lower() else 0.0
# Average over test set
em_scores = [score_em(p, g) for p, g in zip(predictions, gold_answers)]
final_metric = sum(em_scores) / len(em_scores)
```
## Common pitfalls
- Frequent context switching in agentic baselines (e.g., ReAct) can fragment constraint tracking and introduce noise.
- Smaller models struggle significantly with multiple simultaneous constraints, often requiring explicit cache mechanisms to maintain performance.
- Zero-shot extraction scenarios may be sensitive to prompt structure, causing minor baselines to occasionally outperform more complex methods.
## Evidence (verbatim from paper)
> For TACT and Calendar Scheduling, we report Exact Match (EM), which directly measures whether the produced answer satisfies the target decision/constraints.
## Citation
```bibtex
@misc{lv2026ieascache,
title={IE as Cache: Information Extraction Enhanced Agentic Reasoning},
author={Hang Lv et al. (2026)},
year={2026},
note={arXiv:2604.14930}
}
```
- arXiv: 2604.14930
skill
liferay
Manage user roles, assign permissions, and control access to site pages and object entries within a system.