Skip to main content

Calendar Manager Pack

TrustedSandbox optionalv1.0.0MITVerified80

by AgentNode · published 5 months ago · toolpack

Manage calendar events, scheduling, and availability across providers.

Create, update, and delete calendar events with support for Google Calendar, Outlook, and iCal. Check availability and schedule meetings.

langchaincrewaigeneric

Quick Start

bash
agentnode install calendar-manager-pack

Runs in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.

Usage

From package
python
from calendar_manager_pack.tool import run

result = run(
    capability="calendar_manage",
    params={
        "action": "create_event",
        "provider": "google",
        "event": {
            "title": "Q1 Planning Review",
            "start": "2026-04-01T10:00:00-04:00",
            "end": "2026-04-01T11:30:00-04:00",
            "attendees": ["alice@company.com", "bob@company.com"],
            "location": "Conference Room B",
            "description": "Review Q1 metrics and set Q2 OKRs.",
            "reminders": [{"method": "popup", "minutes": 15}]
        }
    }
)

print(f"Event created: {result['event_id']}")
print(f"Calendar link: {result['html_link']}")

Environment Variables

GOOGLE_CALENDAR_CREDENTIALS

Google OAuth2 credentials JSON for Google Calendar access. Required when using the google provider.

OUTLOOK_CLIENT_ID

Microsoft application client ID for Outlook Calendar access. Required when using the outlook provider.

Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works

Verification

high confidence80/100✔ Verified
smokeReturned valid result
+25/25
testsTests failed
0/15
importAll tools imported successfully
+15/15
installInstalled in 1.4s
+15/15
contractAll contract checks passed
+10/10
determinismConsistent output across runs (normalized)
+5/5
reliability3/3 runs passed
+10/10

Package installs and imports correctly. runtime checks passed.

install1.4s
import59ms
smoke111ms
tests1.1s

This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.

Verified in cases_real mode

Python 3.12.3ffmpegpopplertesseractuv

Last verified 28d ago· Runner v2.0.0

Use this when you need to...

  • Create calendar events with attendees and reminders
  • Check availability across multiple calendars
  • List upcoming events for the next week
  • Update or cancel existing meetings
  • Find open time slots for scheduling

README

Version History

Capabilities

calendar_managementcalendar_managetool

Input Schema

{
  "type": "object",
  "examples": [
    {
      "end": "2024-01-01T11:00:00",
      "start": "2024-01-01T10:00:00",
      "title": "Test",
      "operation": "create_event"
    }
  ],
  "required": [
    "operation"
  ],
  "properties": {
    "end": {
      "type": "string",
      "default": "2024-01-01T11:00:00"
    },
    "start": {
      "type": "string",
      "default": "2024-01-01T10:00:00"
    },
    "title": {
      "type": "string",
      "default": "Test Event"
    },
    "operation": {
      "enum": [
        "create_event",
        "parse_ical",
        "list_events",
        "create_ical"
      ],
      "type": "string"
    },
    "calendar_file": {
      "type": "string",
      "default": ""
    }
  }
}

Permissions

Sandbox optionalFrom a trusted publisher — runs on the host by default. You can require isolation with sandbox.host_trust_policy.

Declared by the publisher. Checked before execution by the policy gate.

Networkunrestricted
Filesystemnone
Code Executionnone
Data Accessconnected_accounts
User Approvalonce

Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more

Privacy

All tool execution happens locally on your machine. AgentNode never receives:

  • • Tool inputs or outputs
  • • Execution logs
  • • Data your agent processes

Only install events and search queries are sent to the registry.

bash
agentnode install calendar-manager-pack

Environment Variables

GOOGLE_CALENDAR_CREDENTIALS
OUTLOOK_CLIENT_ID

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointcalendar_manager_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode