Conversation
New moltis-caldav crate exposing calendar management to the LLM agent via the AgentTool interface. Supports Fastmail, iCloud, and generic CalDAV servers with multi-account configuration. Operations: list_calendars, list_events, create_event, update_event, delete_event. Connections are lazily initialised on first use. ETags enforce concurrency control on updates and deletes. Feature-flagged as "caldav", enabled by default in both gateway and CLI.
Contributor
Merging this PR will improve performance by ×2.7
Performance Changes
Comparing Footnotes
|
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
Apply nightly rustfmt to files changed during merge.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
moltis-caldavcrate providing calendar CRUD operations (list calendars, list/create/update/delete events) via the CalDAV protocol usinglibdavandicalendar[caldav.accounts.<name>]caldav, enabled by default in both gateway and CLI cratesFiles changed
crates/caldav/(client, discovery, ical, tool, types)schema.rs,validate.rs,lib.rs— CalDavConfig + schema map + semantic warningsgateway/Cargo.toml,cli/Cargo.toml,server.rs— feature flag + tool registrationCargo.toml+Cargo.lock— new deps (libdav, icalendar, hyper stack)CHANGELOG.md— Added entryValidation
Completed
taplo fmt— TOML files formattedcargo +nightly fmt --all— Rust code formattedcargo +nightly clippy --workspace --all-targets— 0 warningscargo check --workspace— clean compilationcargo test -p moltis-caldav— 26 tests pass (types, ical, discovery, tool)cargo test -p moltis-config— 70 tests pass (schema drift guard covers new fields)Remaining
./scripts/local-validate.sh— running post-PR creationCALDAV_TEST_URLenv var, not yet written)Manual QA
None — no UI changes; tool is only accessible to the LLM agent via the tool registry.