schedule-entry

schedule-entry is a command for coding agents from WYRE-AI/msp-claude-plugins. It costs 10 tokens per session (2,632 once invoked), scanned A, original, Apache-2.0.

A scheduling tool for ConnectWise PSA, a service-management system used by support companies. It creates appointments and can link them to support tickets.

In plain words
What is it for?
Use it to book support work, assign an appointment to a member, set its type or status, and associate it with a ticket.
Why use it?
It removes the manual work of checking dates, finding the right staff member, and entering an appointment in ConnectWise. It can also check for schedule conflicts when enabled.

Command

Part of the connectwise-psa plugin — 6 commands, 3 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/wyre-ai/msp-claude-plugins/schedule-entry
Clone the repo
git clone --depth 1 https://github.com/WYRE-AI/msp-claude-plugins

Or install connectwise-psa, the plugin that ships this one along with the rest of its 6 commands, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for schedule-entry

README.md
[![agentmods](https://agentmods.dev/badge/commands/wyre-ai/msp-claude-plugins/schedule-entry.svg)](https://agentmods.dev/commands/wyre-ai/msp-claude-plugins/schedule-entry)
Your own site
<a href="https://agentmods.dev/commands/wyre-ai/msp-claude-plugins/schedule-entry"><img src="https://agentmods.dev/badge/commands/wyre-ai/msp-claude-plugins/schedule-entry.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,632 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00010 $0.02632
Opus 5 $0.00005 $0.01316
Sonnet 5 $0.00002 $0.00526
Haiku 4.5 $0.00001 $0.00263

Measured yesterday against content hash ff7e60625f0c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

schedule-entry scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST \
msp-claude-plugins/connectwise/manage/commands/schedule-entry.md · 415 lines

How it starts

The opening of the file, as written. The whole thing — 415 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create ConnectWise PSA Schedule Entry

Create a schedule entry/appointment in ConnectWise, optionally linked to a ticket.

Prerequisites

  • Valid ConnectWise PSA API credentials configured
  • User must have schedule creation permissions
  • Member must have schedule access

Steps

  1. Validate date/time inputs

    • Parse start_date and end_date
    • Validate end_date is after start_date
    • Check for schedule conflicts (if enabled)
  2. Resolve member (if provided)

    GET /system/members?conditions=identifier='{member}'
    
    • Default to current authenticated user if not specified
  3. Validate ticket (if ticket_id provided)

    GET /service/tickets/{ticket_id}
    
    • Confirm ticket exists and is accessible
  4. Resolve schedule type (if provided)

    GET /schedule/types?conditions=name='{type}'
    
  5. Resolve schedule status (if provided)

    GET /schedule/statuses?conditions=name='{status}'
    
  6. Create schedule entry

    POST /schedule/entries
    Content-Type: application/json
    
    {
      "name": "<name>",
      "dateStart": "<start_date>",
      "dateEnd": "<end_date>",
      "member": {"identifier": "<member>"},
      "objectId": <ticket_id>,
      "type": {"id": <type_id>},
      "where": {"id": <location_id>},
      "status": {"id": <status_id>},
      "reminder": {
        "minutes": <reminder_minutes>
      }
    }
    
  7. Return confirmation with calendar details

Parameters

Parameter Type Required Default Description
name string Yes - Entry name/subject
start_date datetime Yes - Start date and time
end_date datetime Yes - End date and time
member string No Current user Member identifier
ticket_id integer No - Associated ticket ID
type string No - Schedule type
location string No - Location/address
reminder_minutes integer No - Minutes before reminder
status string No - Schedule status

Read the full file on GitHub · 415 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 415 lines · 10 tokens per session scan A ff7e60625f0c

Subscribe to this mod's changes

schedule-entry is a command published in the GitHub repository WYRE-AI/msp-claude-plugins (44 stars, last pushed 2d ago), licensed Apache-2.0. It adds 10 tokens to every session and 2,632 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.