TimeZest PSA Integration — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited TimeZest PSA Integration (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
TimeZest exists to couple customer scheduling to the MSP's PSA. The booking page is incidental — the value is that a confirmed slot lands on the ConnectWise / Autotask / Halo ticket, on the technician's PSA calendar, and in the billing record. Two parts of the scheduling request payload carry that coupling: associatedEntities and triggerMode.
associatedEntities — the PSA linkEvery timezest_scheduling_create_request call should carry an associatedEntities array. Each entry links the booking to one PSA record:
{
"associatedEntities": [
{
"type": "connectwise",
"id": "88421",
"number": "88421"
}
]
}| Field | Required | Meaning |
|---|---|---|
type | Yes | PSA system — one of connectwise, autotask, halo |
id | Yes | The PSA entity ID |
number | No | Human-readable ticket reference |
A scheduling request created with no associatedEntities is an orphan — nobody can find the booking from the PSA side later. Always attach the association.
triggerMode — pod vs generate_url| Mode | What it does | Use when |
|---|---|---|
pod | Fires the configured PSA workflow on booking — updates the ticket, logs activity, delivers the link via the PSA's notification path | Normal ticket-driven bookings |
generate_url | Returns a bookingUrl for the dispatcher to paste manually; no PSA workflow fires | Ad-hoc links, custom emails, testing |
pod is the right default for any booking tied to a ticket. generate_url against a ticket is usually a mistake worth confirming.
connectwise,autotask, or halo) — critical when the MSP runs more than one PSA in parallel.
associatedEntities entry with type, id, andnumber when known.
triggerMode: "pod" unless the dispatcher specifically wants amanual link.
timezest_scheduling_create_request.timezest_scheduling_list.associatedEntities and bucket:numbertype looks wrong forthe MSP's PSA mix
timezest_scheduling_get for any orphan or suspect request.timezest_scheduling_get the request — confirm it is booked.triggerMode: a generate_url request never fires the PSAworkflow, so the ticket was never meant to update automatically.
associatedEntities: a missing or wrong-type associationmeans the workflow had nothing to update.
PSA note so the booking is not lost.
side. The type enum must match the ticket's actual system.
autotask resolves to nothing. Verify the pairing.
update. Flag and confirm intent.
associatedEntitiesentry.
triggerMode to pod for ticket-driven bookings.number when known — it makes the request findableby humans.
podworkflow confirms the PSA was updated.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.