Someone’s on site swinging a grinder and you realise their grinding ticket expired three months ago. The principal contractor calls it out during a site audit. Now you’ve got a non-conformance, a worker stood down, and a very uncomfortable conversation with your H&S rep. A solid construction training register NZ subcontractor system is what stops that scenario from happening — and this article shows you exactly what that looks like in practice.

⬢ Workflow Diagram
flowchart TD
    A["Worker Assigned to Site"] --> B{"Current Training Certs
Verified?"} B -->|No| C["Update Training Register
Add Missing Certs"] B -->|Yes| D["Worker Cleared
for Task"] C --> E{"Certs Expire
Soon?"} E -->|Yes| F["Schedule Refresher
Training"] E -->|No| D F --> G["Keep Register
Current"] D --> H["Ongoing Compliance
Maintained"] G --> H

What a SiteWise-Compliant Worker Training Register Actually Contains

At the 7am toolbox talk on Monday morning, your foreman is calling the roll and checking who’s on the tools today. If someone asks “is everyone’s first aid current?” and the answer is a shoulder shrug, you’ve already got a problem. SiteWise — the health and safety prequalification scheme used widely across New Zealand — expects subcontractors to have documented evidence of worker competency. Not just a list of names and “yeah they’ve done it.”

A SiteWise-compliant health and safety training register needs to hold the following for each worker:

  • Full legal name and employee/contractor ID
  • Certificate or ticket name (e.g. First Aid, NZQA Unit Standard, Site Safe passport)
  • Issuing body (e.g. St John, CHASNZ, NZTA)
  • Issue date and expiry date
  • Certificate number (for verification)
  • Evidence document (scanned cert, photo, or digital badge URL)

SiteWise assessors will specifically look for whether your register is current, whether evidence is attached, and whether you have a process for managing renewals. A spreadsheet with no expiry dates and no attached documents will get you marked down — or knock you below the score threshold for tendering with Tier 1 contractors.

getting your SiteWise score up

The minimum expectation is that your register reflects reality — the people on your books today, with certs that are actually valid today.


Which Certs Need Tracking: The Core List for NZ Construction Subcontractors

ai_training_register_nz.py

# AI Training Register Management System for NZ Construction Subcontractors
# Automated compliance tracking and documentation workflow

from construction_ai.compliance_engines import TrainingRegisterValidator
from construction_ai.scheduling import SOPADeadlineTracker
from construction_ai.document_handlers import CertificateParserOCR
from construction_ai.notifications import ComplianceAlertSystem
from construction_ai.reporting import SubcontractorReportWriter
from construction_ai.audit_logs import RegistryAuditTrail



# Initialising training register verification modules...

✓ TrainingRegisterValidator: 247 subcontractor records loaded
! SOPADeadlineTracker: 12 certifications expiring within 60 days
✓ CertificateParserOCR: Scanned 18 uploaded documents (success rate 94.2%)
! ComplianceAlertSystem: 3 workers missing mandatory health & safety endorsement
✓ SubcontractorReportWriter: Monthly compliance report generated and queued
✓ RegistryAuditTrail: All changes logged and timestamped for WorkSafe audits

Before morning smoko on your first day managing a new crew, you should know exactly which tickets each worker holds. Not all training is equal in terms of risk — but these are the ones that will get scrutinised on any New Zealand civil or building site:

Certification Typical Expiry Issuing Body Risk if Expired
First Aid (workplace) 2–3 years St John, Hato Hone, Red Cross Immediate site stand-down
Site Safe Foundation / Passport 3 years Site Safe NZ Denied site access
Class 2 or 4 Driver Licence 5 years (medical varies) NZTA Legal liability, insurance void
Elevated Work Platform (EWP) No formal expiry but refresher expected TSHA, EWPA Incident investigation exposure
Scaffolding Certificates (Basic, Intermediate, Advanced) No expiry — but employer must verify competency Scaffolding, Access and Rigging NZ Serious harm liability
Confined Space Entry Employer-defined interval (typically 2 years) Various RTOs Site prohibition
H&S Rep Training Refresher every 3 years CHASNZ Legal compliance gap
NZQA Operator Competency (e.g. US 3795 – Grinder) No expiry but must be verified Various providers Non-conformance, incident liability

Not everything has a hard expiry date stamped on a card — but that doesn’t mean you ignore it. Confined space, EWP, and manual handling training all require you to demonstrate that your people have had appropriate refreshers at reasonable intervals. Document the date of training regardless.

SWMS and competency verification


How to Set Up Your Cert Expiry Tracking Construction System Without Drowning in Spreadsheets

training_register_subcontractor_config.jsonJSON
```json
{
  "training_register_config": {
    "project_id": "PRJ-2024-NZ-1847",
    "site_name": "Westfield Shopping Centre Extension, Auckland",
    "register_type": "subcontractor_compliance",
    "last_updated": "2024-01-15T09: 30: 00Z",
    "subcontractor": {
      "name": "SafeHands Electrical Solutions",
      "license_number": "EL-8392-NZ",
      "trade": "Electrical Installation",
      "site_manager": "James Mitchell"
    },
    "training_records": [
      {
        "staff_id": "SH-EMP-0421",
        "employee_name": "Michael Chen",
        "certification": "NZQA Level 3 Electrical",
        "expiry_date": "2025-06-30",
        "swms_status": "Current",
        "induction_date": "2023-11-14"
      },
      {
        "staff_id": "SH-EMP-0389",
        "employee_name": "Rebecca Torres",
        "certification": "Working at Heights",
        "expiry_date": "2024-03-22",
        "swms_status": "Expired",
        "induction_date": "2023-10-02"
      }
    ],
    "next_audit_date": "2024-02-28",
    "compliance_score": 87,
    "notification_enabled": true,
    "alert_threshold_days": 30
  }
}
```

When you’re back at the site office at 4pm and you’ve got five other things to deal with, a complicated system won’t get used. Simple wins. Here’s how to build a training register that your team will actually maintain:

Step 1: Centralise all certs in one place — Whether that’s a shared Google Drive folder, Microsoft SharePoint, or a dedicated H&S platform, every cert needs a digital home that isn’t someone’s email inbox.

Step 2: Build your register with expiry-date logic — Use Google Sheets or Excel with conditional formatting. Set cells to turn amber 60 days before expiry and red on expiry. This turns a passive list into an active alert system.

Step 3: Assign cert ownership to supervisors, not just H&S admin — The foreman on site should be responsible for flagging upcoming renewals for their crew. Central H&S teams are too removed from daily labour movements.

Step 4: Set calendar reminders at 90 days and 30 days — Link these to the cert expiry date. Google Calendar lets you create recurring events tied to a date. Simple, free, and it works.

Step 5: Gate site access against the register — During your weekly pre-start check, cross-reference who’s rostered on against the register. Anyone with a cert expiring within 30 days gets flagged before they step on site.

Step 6: Record refresher training immediately — Don’t wait until end of week. The day someone does their first aid refresher, the register gets updated with the new certificate and expiry date.

For teams running more than 15 workers, a dedicated platform starts to make sense. Hammertech (from ~$200/month, scales with workforce size — best for subcontractors with 20+ workers and multiple active sites) and Donesafe (free trial available, from $10/user/month — best suited to mid-size contractors needing full H&S management) both offer training register modules with automatic expiry alerts and SiteWise evidence export functionality.


Using AI to Generate and Maintain Your Worker Training Records Construction NZ

During Friday’s end-of-week admin, when you’re trying to reconcile who was on site, what inductions were done, and which certs were sighted — AI tools can take a significant chunk of that work off your plate.

You can use ChatGPT (free tier available; GPT-4o from $30 NZD/month — best for subcontractors who want to generate documentation, templates, and structured registers without a dedicated H&S system) to draft your training register structure, generate cert checklists by trade, or create renewal reminder email templates in under two minutes.

Use this template:

You are an H&S administrator for a New Zealand civil construction subcontractor. Create a worker training register for a crew of earthworks operators. Include columns for: Full Name, Trade/Role, Certification Name, Issuing Body, Certificate Number, Issue Date, Expiry Date, Days Until Expiry, Evidence Attached (Y/N), Renewal Action Required. Add five example entries using realistic NZ construction certifications. Format as a table.

For more structured automation, Notion AI (free tier with basic AI; AI add-on from ~$12 USD/month — best for teams that want a living database with linked records rather than a flat spreadsheet) can link your training register to your worker profiles, site rosters, and project documentation in one workspace.

Here’s a reference structure for how your register file naming and data fields should look:

TRAINING REGISTER — FIELD STRUCTURE
Project: [PROJECT NAME / CONTRACT NUMBER]
Subcontractor: [COMPANY NAME]
Register Version: [VERSION e.g. Rev 03]
Last Updated: [DATE]

RECORD FIELDS:
  Worker_ID        : [EMPLOYEE OR SUBCONTRACTOR REF e.g. EMP-047]
  Full_Name        : [LEGAL NAME]
  Trade_Role       : [e.g. Excavator Operator, Concretor, EWP Operator]
  Cert_Name        : [e.g. Site Safe Passport, First Aid Level 2]
  Issuing_Body     : [e.g. Site Safe NZ, St John]
  Cert_Number      : [AS SHOWN ON CERTIFICATE]
  Issue_Date       : [DD/MM/YYYY]
  Expiry_Date      : [DD/MM/YYYY]
  Days_To_Expiry   : [CALCULATED FIELD]
  Evidence_File    : [FILE PATH OR DOCUMENT LINK]
  Status           : [CURRENT / EXPIRING SOON / EXPIRED]
  Action_Required  : [RENEWAL BOOKED / PENDING / NONE]

This structure also works as a direct input template if you’re uploading worker data into Hammertech, Donesafe, or any other H&S platform that accepts CSV imports.


SiteWise Training Evidence: What Auditors Look For and How to Be Ready

Halfway through a SiteWise renewal assessment, the auditor asks to see evidence that your workers are trained and that certs are current. This is not the moment to be opening a folder called “Misc Certs 2022.”

SiteWise assessors specifically want to see:

  1. A current register (updated within the last 3 months is a good benchmark)
  2. Evidence attached — scanned certs, photos of wallet cards, or digital badge links
  3. A clear process for how you manage renewals — written, not just verbal

Your H&S manual should include a one-page procedure titled something like “Training and Competency Management.” It doesn’t need to be complex — it needs to describe who is responsible, how often the register is reviewed, and what happens when a cert is about to expire.

The biggest audit failure point for NZ subcontractors isn’t the certs themselves — it’s the gap between what the register says and what’s actually happening on site. If your register shows a cert as current but the worker hasn’t renewed and is still on the tools, that’s a major non-conformance.


Frequently Asked Questions

What should a construction training register include for NZ subcontractors?

At minimum: worker name, role, certification name, issuing body, certificate number, issue date, expiry date, and a copy of the certificate as evidence. SiteWise and most principal contractors expect the register to be current, accessible, and linked to actual documentation — not just a list of names.

How often should I update my construction training register?

Ideally in real time — whenever a new cert is issued or a renewal is completed. At a minimum, review the full register monthly and flag any certs expiring within 60 days. For SiteWise compliance, you should be able to demonstrate the register was reviewed recently.

Does SiteWise check individual worker certs or just company systems?

SiteWise assesses your company’s management systems, including how you manage worker training and competency. They look for evidence of a documented process and a current register — not individual cert-by-cert verification. However, principal contractors running their own audits may ask to verify specific workers on site.

What happens if a worker’s cert expires on site?

They should be stood down from the activity that requires that certification until the renewal is completed. Depending on the cert (e.g. first aid, confined space), this may affect your ability to proceed with certain work. Notify your principal contractor if required under your contract’s H&S management plan.


Conclusion

Three things to action this week:

  1. Build or audit your register now — not before your next SiteWise renewal, now. Use the field structure above and make sure every worker has evidence attached.
  2. Set expiry alerts at 90 and 30 days — whether that’s conditional formatting in a spreadsheet or an automated alert from Hammertech or Donesafe, remove the manual memory work.
  3. Assign cert responsibility to supervisors — your H&S admin can’t see who’s turning up on site every morning. Your foreman can.

A well-maintained training register isn’t just a SiteWise box-ticking exercise — it’s the thing that keeps your workers safe, your contracts protected, and your company out of the non-conformance pile.

more on managing H&S documentation as a subcontractor

If you want practical guides like this one delivered to your inbox — covering everything from SWMS to subcontractor prequalification — subscribe to the ConstructionHQ newsletter. No fluff, just tools and templates you can use on Monday morning.