Deadline management: what should software decide?

Jan Elvers, founder of Elevate Consulting
Jan Elvers spent seven years as a DevOps engineer building and running software that has to hold up in production. In 2026 he founded Elevate Consulting, where he builds automation, internal tools and integrations for small law firms and businesses. He leads every project himself, from the first call to operations.
Published · 8 min read
Deadline software should do the arithmetic and the chasing: count days from a confirmed trigger date under the applicable rule, put the date in every relevant calendar, remind early, escalate when nobody reacts and log each step. It should not decide which rule applies, what the trigger date was when service is unclear, or whether a deadline can be closed. Those stay with a lawyer, because a wrong input produces a confidently wrong date.
Part of the guide Law firm automation: what pays off and where to start
Key takeaways
- FRCP 6(a) excludes the trigger day, counts weekends and holidays, and rolls a deadline that lands on a weekend or legal holiday to the next working day.
- Under CPR 2.8, periods of five days or less skip weekends and bank holidays, so the same count gives different dates in US and English courts.
- An ALPS article reports that the ABA's 2020 to 2023 claims profile puts administrative errors, including calendaring failures, at nearly 25% of malpractice claims.
- When the service date or method is unclear, good software flags the deadline for a person instead of calculating it.
What should deadline software decide on its own?
Software should decide only what follows mechanically from confirmed inputs: the computed date, who gets reminded, when to escalate and what gets logged. Everything that needs an interpretation of facts or rules belongs to a person.
The split is easiest to see as a table. On the left are tasks where a computer is more reliable than a busy person. On the right are tasks where a computer only looks reliable.
| Software does | A person does |
|---|---|
| Counts days from a confirmed trigger under a selected rule set | Confirms the trigger event and date |
| Applies weekends, holidays and court closures from a maintained calendar | Chooses which rule, local rule or order governs |
| Writes the date to the matter and to every responsible person's calendar | Decides whether a deadline is met, extended or no longer relevant |
| Sends reminders with lead time and escalates when nobody confirms | Handles extensions, stipulations and unusual cases |
| Logs who entered, changed and acknowledged each deadline | Signs off before a deadline is closed or deleted |
| Flags deadlines whose service date or method is unclear | Resolves the flagged case and records the decision |
What is the difference between calendaring and rules-based docketing?
Calendaring stores a date a person has already worked out; rules-based docketing computes a chain of dates from a trigger event using a maintained set of court rules. The first automates memory, the second automates arithmetic.
Rules-based docketing removes counting errors, but it moves the risk to the inputs: the jurisdiction, the trigger, the service type. Some practice management systems expose it. The Clio Manage API reference, for example, lists court rules endpoints for jurisdictions, triggers, service types and matter dockets, including an operation to preview calendar dates for a docket. The reference does not describe how the dates are computed or which plan is required, so check that with the vendor.
Whatever computes the date, a person still confirms the trigger. A docket built on the wrong service type is exact and wrong.
How does FRCP 6 count a deadline, and where can software go wrong?
Rule 6(a)(1) of the Federal Rules of Civil Procedure excludes the day of the triggering event, counts every day including weekends and legal holidays, and includes the last day unless it is a Saturday, Sunday or legal holiday. In that case the period runs to the next day that is none of those.
Example, for illustration only: a 14-day period is triggered on Thursday 12 November 2026. Counting from the next day, day 14 is Thursday 26 November, which is Thanksgiving, a legal holiday under Rule 6(a)(6). The deadline therefore moves to Friday 27 November. If the state where the district court sits has declared that Friday a holiday, Rule 6(a)(6) can move it again, to Monday 30 November.
Three inputs change the result and are easy to get wrong in software. Rule 6(d) adds 3 days after the period would otherwise expire when service is made by certain methods such as mail, so the service method matters. Rule 6(a)(3) extends the deadline when the clerk's office is inaccessible on the last day. Local rules and court orders can set their own periods. None of this is legal advice; verify every computed date against the rules that govern the case.
How does the CPR count time in England and Wales?
Under CPR 2.8, a period expressed in days is counted in clear days, which excludes the day the period begins and, where the end is defined by an event, the day of that event. Where the period is 5 days or less, Saturdays, Sundays, bank holidays, Christmas Day and Good Friday do not count.
Two further rules matter for software. CPR 2.8(5) makes an act at the court office in time if done on the next open day when the office is closed on the last day. CPR 2.9 asks that the last date for compliance be expressed, wherever practicable, as a calendar date with a time of day.
Deemed service is where most automated calculations fail. Under CPR 6.14 a claim form served in the UK is deemed served on the second business day after the relevant step. Under the table in CPR 6.26, an email sent on a business day before 4.30pm is deemed served that day, and otherwise on the next business day. If the system does not know the exact send time or method, it should flag the deadline, not guess.
How much malpractice risk comes from missed deadlines?
Deadline failures are a recurring share of malpractice claims. The ABA's Profile of Legal Malpractice Claims 2020 to 2023, published in September 2024, analyzes US and Canadian claims reported by participating insurers; the figures are in the paid report. Writing for the insurer ALPS in July 2026, risk manager Mark Bassingthwaighte reports that it puts administrative errors, such as failing to calendar properly and failing to react to the calendar, at nearly 25% of all claims.
The older ABA profile for 1996 to 1999, as cited by the Texas Lawyers' Insurance Exchange, listed failure to calendar a known deadline as the primary cause of 7.03% of claims and failure to react to a calendared date as 1.27%. The same article recommends separate calendar entries by attorney and assistant as a check, and reminders at several intervals before limitation dates.
Both figures describe administrative failures: a deadline that was not entered, or was entered and not acted on. Entry checks, reminders and escalation are the parts of the problem software handles well.
What does safe deadline automation look like in practice?
Safe deadline automation proposes, reminds and escalates, and never closes a deadline without a named person confirming it. In Elevate Consulting's builds, deadlines with an unclear service date are flagged instead of calculated.
Recognize
The system spots likely deadline triggers in incoming mail and court notices and proposes an entry with the source attached.
Confirm
A lawyer or trained assistant confirms trigger, rule and date before the deadline becomes binding in the calendar.
Remind
Reminders go out with lead time to the responsible lawyer and a second person.
Escalate
If nobody acknowledges, the reminder escalates to a supervising lawyer.
Log
Every change, acknowledgement and closure is recorded with name and time.
When is deadline automation the wrong answer?
Deadline automation is the wrong answer when the firm has no agreed manual process yet, because software then encodes the confusion. Decide first who enters, who checks and who closes a deadline.
It is also not yet worth it for a practice with very few court deadlines, where a disciplined shared calendar and a second person checking may be enough. Keep your existing calendar running in parallel during the first weeks of any new system, and compare both before you switch.
Cite this page
Elevate Consulting (Jan Elvers). "Deadline management: what should software decide?". https://elevate-consulting.net/en/guides/deadline-management-what-software-should-decide. Updated September 24, 2026.
Frequently asked questions
Can software read a court order and set the deadline automatically?
It can read the order and propose the deadline with the relevant passage attached. The entry should become binding only after a person confirms it, because orders often contain conditions and cross references that change the date.
Do we still need a second person checking deadlines if we use rules-based docketing?
We recommend it. Docketing removes counting errors but not input errors, and the published malpractice figures point to administrative failures such as not reacting to a calendared date. A second set of eyes on the trigger and a named reminder recipient address both.
Can the parties change a deadline, and how should software treat that?
In England and Wales, CPR 2.11 allows time limits to be varied by written agreement of the parties unless the rules, a practice direction or a court order say otherwise. In federal courts, Rule 6(b) lets the court extend time for good cause. Either way a person records the change and its basis, and the system recalculates reminders.
What happens if the court's holiday calendar in the software is out of date?
The computed dates will be wrong on the affected days. Treat the holiday and closure calendar as maintained data with an owner, and review it at least once a year and whenever a court announces a closure.
Does AI make deadline calculation reliable enough to skip review?
No. AI helps find triggers in unstructured documents, but the calculation should run on explicit rules, and a person confirms the input. Nothing AI-generated should set a binding deadline unreviewed.
Sources
- Federal Rules of Civil Procedure, Rule 6, Legal Information Institute (Cornell), accessed September 24, 2026
- Civil Procedure Rules, Part 2 (rules 2.8, 2.9, 2.11), Ministry of Justice, accessed September 24, 2026
- Civil Procedure Rules, Part 6 (rules 6.2, 6.14, 6.26), Ministry of Justice, accessed September 24, 2026
- ABA Standing Committee on Lawyers' Professional Liability, Profile of Legal Malpractice Claims 2020 to 2023 (product page), accessed September 24, 2026
- ALPS, Safeguarding your practice: what current malpractice trends are telling us (July 2026), accessed September 24, 2026
- Texas Lawyers' Insurance Exchange, Scheduling Errors and Legal Malpractice (2015), accessed September 24, 2026
- Clio Manage API reference (Court Rules endpoints), accessed September 24, 2026
This guide explains technology and workflows. It is not legal advice and does not replace a professional-responsibility review of your situation.
Deutsche Version: Fristenkontrolle: Was darf Software entscheiden?