Workflow: Quality Control Checklist

Estimated time: 15 minutes per check Difficulty: Beginner Category: πŸ”§ Production Professions: Contractors, Merchants

🌐 Languages: English Français

Use Case

You need standardized quality control checklists to ensure consistency. This workflow helps you:

⚠️ Quality: Systematic checks reduce defects by 40-60% and customer complaints by 50%.


Prerequisites


Step-by-Step Instructions

Step 1: Create industry checklist template

mkdir -p ~/Cowork-Workspace/quality/checklists
mkdir -p ~/Cowork-Workspace/quality/inspections

Build checklist:

Quality Control Checklist for: [Industry/Service]

INDUSTRY: [Ex: Electrical, Plumbing, HVAC, General Construction, Food Service]
STANDARD: [Ex: NEC, UPC, local building codes, health codes]
VERSION: 1.0 (updated: [date])

──────────────────────────────────────

CHECKLIST STRUCTURE:

Each item should have:
β–‘ Description (what to check)
β–‘ Standard/code reference
β–‘ Acceptance criteria
β–‘ Photo required? (Y/N)
β–‘ Critical? (Y/N) - Must pass for approval

──────────────────────────────────────

EXAMPLE: ELECTRICAL ROUGH-IN CHECKLIST

PROJECT: [Name]
DATE: [MM/DD/YYYY]
INSPECTOR: [Name]
LOCATION: [Address/area]

GENERAL REQUIREMENTS:

β–‘ Permits posted and accessible
   Standard: Local building code
   Criteria: Current permit visible on-site
   Photo: Y
   Critical: Y βœ“ Pass / Fail

β–‘ Work matches approved plans
   Standard: Submitted drawings
   Criteria: No deviations without change order
   Photo: N
   Critical: Y βœ“ Pass / Fail

ELECTRICAL BOXES:

β–‘ Box depth adequate for device + connections
   Standard: NEC 314.16
   Criteria: Minimum 1.5" depth for switches, 2.5" for receptacles
   Photo: N (unless fail)
   Critical: Y βœ“ Pass / Fail

β–‘ Boxes securely fastened
   Standard: NEC 314.23
   Criteria: No movement when pushed, flush with finished wall surface
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ Box fill calculations correct
   Standard: NEC 314.16
   Criteria: Count conductors + devices, not exceeding box capacity
   Photo: N
   Critical: Y βœ“ Pass / Fail

WIRING:

β–‘ Wire gauge matches circuit requirements
   Standard: NEC 310.15
   Criteria: 14 AWG = 15A max, 12 AWG = 20A max, 10 AWG = 30A max
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ Romex secured within 12" of boxes
   Standard: NEC 334.30
   Criteria: Stapled/clamped within 12", every 4.5 ft on runs
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ Holes drilled in studs minimum 1.25" from edge
   Standard: NEC 300.4(A)
   Criteria: Prevents nail/screw penetration, metal plates if <1.25"
   Photo: N (unless fail)
   Critical: Y βœ“ Pass / Fail

β–‘ No damaged wire insulation
   Standard: NEC 110.7
   Criteria: Visual inspection, no nicks or cuts in insulation
   Photo: Y (if fail)
   Critical: Y βœ“ Pass / Fail

GROUNDING:

β–‘ Ground wire continuous (no splices except in box)
   Standard: NEC 250.148
   Criteria: Ground pigtailed at each box, not daisy-chained
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ Metal boxes bonded to ground
   Standard: NEC 250.148
   Criteria: Ground screw in box or ground clip attached
   Photo: N
   Critical: Y βœ“ Pass / Fail

GFCI/AFCI PROTECTION:

β–‘ GFCI required locations identified
   Standard: NEC 210.8
   Criteria: Bathrooms, kitchens (countertop), laundry, outdoors, garages, crawl spaces
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ AFCI required circuits identified
   Standard: NEC 210.12
   Criteria: All bedroom circuits, living areas (check local amendments)
   Photo: N
   Critical: Y βœ“ Pass / Fail

PANEL:

β–‘ Panel size adequate for load
   Standard: NEC 220.40
   Criteria: Load calculation matches panel rating
   Photo: N
   Critical: Y βœ“ Pass / Fail

β–‘ Panel height correct (center of grip 3-6.5 ft)
   Standard: NEC 240.24(A)
   Criteria: Measured from finished floor
   Photo: N
   Critical: N βœ“ Pass / Fail

β–‘ Working clearance 30" wide Γ— 36" deep
   Standard: NEC 110.26
   Criteria: Clear space in front of panel, no storage
   Photo: Y
   Critical: Y βœ“ Pass / Fail

LABELING:

β–‘ Circuits labeled at panel
   Standard: NEC 408.4
   Criteria: Each breaker clearly labeled with room/area
   Photo: Y
   Critical: N (can correct) βœ“ Pass / Fail

──────────────────────────────────────

SCORING:

Total items: 18
Critical items: 14
Passed: [X]
Failed: [Y]

PASS/FAIL DETERMINATION:
- ALL critical items must pass
- Non-critical can be corrected later
- Overall: β–‘ PASS βœ“ / β–‘ FAIL

──────────────────────────────────────

DEFICIENCIES (if any):

Item: [Description]
Location: [Room/area]
Code reference: [NEC section]
Required correction: [Action needed]
Photo: [Filename]
Corrected: β–‘ Yes β–‘ No (re-inspect needed)

──────────────────────────────────────

PHOTOS:

[Timestamp] - Overall panel view
[Timestamp] - Working clearance
[Timestamp] - Deficiency 1 (if any)
[Timestamp] - Deficiency 1 corrected (if re-inspected)

──────────────────────────────────────

INSPECTOR SIGNATURE: _______________
DATE: _______________
NEXT INSPECTION: [Type, estimated date]

──────────────────────────────────────

Save: ~/Cowork-Workspace/quality/inspections/[project]-electrical-rough-[date].pdf

Step 2: Create additional industry checklists

Generate templates for your industry:

PLUMBING ROUGH-IN CHECKLIST:

β–‘ Pipe sizing correct for fixtures (IPC Table 604.5)
β–‘ Proper slope on drain lines (1/4" per foot minimum)
β–‘ Vent sizing and placement correct
β–‘ Cleanouts accessible every 100 ft on horizontal drains
β–‘ Water hammer arrestors at quick-closing valves
β–‘ Pipes secured at proper intervals
β–‘ No pipe penetrations weaken structure
β–‘ Pressure test passed (air or water, 15 psi, 15 min, <2 psi drop)

──────────────────────────────────────

HVAC INSTALLATION CHECKLIST:

β–‘ Equipment properly sized for space (Manual J calculation)
β–‘ Ductwork sealed at joints (mastic or UL-181 tape, NOT duct tape)
β–‘ Return air sized adequately (400 CFM per ton minimum)
β–‘ Refrigerant lines insulated (suction line minimum)
β–‘ Condensate drain trapped and sloped
β–‘ Equipment clearances met (manufacturer specs)
β–‘ Electrical disconnect within sight of equipment
β–‘ Filter access provided

──────────────────────────────────────

DRYWALL/FINISH CHECKLIST:

β–‘ Screw spacing correct (12" OC ceiling, 16" OC walls)
β–‘ Screw heads slightly below surface (not breaking paper)
β–‘ Joints taped and mudded smooth (3 coats minimum)
β–‘ Corner bead straight and secure
β–‘ No visible seams or fasteners after prime coat
β–‘ Surfaces sanded smooth (no ridges)
β–‘ No cracks or pops

──────────────────────────────────────

FOOD SERVICE/KITCHEN CHECKLIST:

β–‘ Food contact surfaces: stainless steel or approved material
β–‘ Hand sinks: Hot/cold water, soap, paper towels within 20 ft of food prep
β–‘ 3-compartment sink: Sized for largest pot, hot water 110Β°F minimum
β–‘ Refrigeration: Holding <41Β°F, thermometers visible
β–‘ Floors: Smooth, non-absorbent, coved at walls
β–‘ Ventilation: Hood sized for equipment, fire suppression system
β–‘ Pest control: All openings >1/4" sealed, no gaps under doors

──────────────────────────────────────

RETAIL STORE DISPLAY CHECKLIST:

β–‘ Signage clear and visible from 10 ft
β–‘ Pricing displayed for all items
β–‘ Products stocked to front (facing)
β–‘ No damaged/defective items on display
β–‘ Shelves clean and organized
β–‘ Safety: No overhanging items, stable stacks
β–‘ Lighting adequate (no burnt out bulbs)
β–‘ Floor clear of obstacles/trip hazards

Save templates: ~/Cowork-Workspace/quality/checklists/[industry]-template.pdf

Step 3: Conduct inspection

Execute checklist:

Inspection execution workflow:

PRE-INSPECTION:
1. Print checklist or load on tablet/phone
2. Gather tools:
   - Flashlight
   - Measuring tape
   - Level
   - Camera
   - Code book (if needed)
3. Review scope (what's being inspected today)

DURING INSPECTION:
1. Work methodically through checklist
2. Check each item, mark Pass/Fail
3. For failures:
   - Take photo
   - Note exact location
   - Describe what's wrong
   - Note code reference
4. Ask questions if unclear
5. Don't skip items

PHOTO DOCUMENTATION:
- Overall view (before inspection)
- Each deficiency (close-up + context)
- Critical passes (for verification)
- Overall view (after inspection)

Naming: [project]-[checklist-type]-[item#]-[date].jpg
Example: johnson-house-electrical-item12-2026-01-20.jpg

POST-INSPECTION:
1. Tally pass/fail count
2. Determine overall pass/fail
3. Write deficiency list with corrections needed
4. Sign and date checklist
5. Deliver to responsible party
6. Schedule re-inspection if needed

TIMELINE:
Small job (bathroom): 15-20 minutes
Medium job (whole house rough-in): 45-60 minutes
Large commercial: 2-3 hours

Save completed: ~/Cowork-Workspace/quality/inspections/[project]-[type]-[date].pdf

Step 4: Track corrective actions

Manage deficiencies:

Deficiency tracking for: [Project]

DEFICIENCY LOG:

Deficiency #1:
- Checklist: Electrical rough-in
- Date found: 01/20/2026
- Inspector: [Name]
- Item: Wire gauge incorrect
- Location: Kitchen circuit 14
- Description: 14 AWG wire on 20A circuit (should be 12 AWG)
- Code: NEC 310.15
- Photo: johnson-elec-item4-2026-01-20.jpg
- Severity: β–‘ Critical βœ“ / β–‘ Non-critical
- Assigned to: [Electrician name]
- Due date: 01/22/2026
- Status: ⏳ Pending
- Corrected: β–‘ Yes β–‘ No
- Re-inspected: β–‘ Yes β–‘ No
- Re-inspection date: ____
- Re-inspection result: β–‘ Pass β–‘ Fail

Deficiency #2:
- Checklist: Electrical rough-in
- Date found: 01/20/2026
- Inspector: [Name]
- Item: Panel clearance insufficient
- Location: Garage
- Description: Only 24" clearance (need 36")
- Code: NEC 110.26
- Photo: johnson-elec-item15-2026-01-20.jpg
- Severity: Critical βœ“
- Assigned to: [Electrician name]
- Due date: 01/22/2026
- Status: βœ… Completed 01/21/2026
- Corrected: βœ“ Yes
- Re-inspected: βœ“ Yes
- Re-inspection date: 01/21/2026
- Re-inspection result: βœ“ Pass

SUMMARY:
Total deficiencies: 2
Critical: 2
Corrected: 1
Pending: 1

Project status: ⚠️ RE-INSPECTION NEEDED (1 critical pending)

Save: ~/Cowork-Workspace/quality/[project]-deficiency-log.xlsx

Step 5: Quality metrics tracking

Monthly/quarterly analysis:

Quality metrics report for: [Business/Period]

PERIOD: January 2026
PROJECTS: 8 completed

INSPECTION STATISTICS:

Total inspections conducted: 24
By type:
- Electrical rough: 8
- Plumbing rough: 6
- Final walkthrough: 8
- HVAC: 2

First-time pass rate:
- Overall: 75% (18/24 passed first time)
- Electrical: 87% (7/8)
- Plumbing: 67% (4/6)
- Final: 75% (6/8)

Industry benchmark: 80% first-time pass
Assessment: Need improvement on plumbing ⚠️

DEFICIENCY ANALYSIS:

Total deficiencies: 32
By severity:
- Critical: 8 (25%)
- Non-critical: 24 (75%)

Most common deficiencies:
1. Improper pipe slope (plumbing) - 6 instances
2. Missing GFCI protection (electrical) - 4 instances
3. Inadequate clearances (various) - 3 instances

ROOT CAUSES:
1. Pipe slope: New plumber unfamiliar with code
   β†’ Action: Code review training scheduled 02/01
2. GFCI: Oversight/forgetfulness
   β†’ Action: Added to pre-drywall checklist reminder
3. Clearances: Design issues
   β†’ Action: Review plans for clearances before starting

CORRECTION TIMELINESS:

Average time to correct: 2.1 days
Target: <3 days βœ“

Corrections exceeding 3 days: 2 instances (both non-critical)

RE-INSPECTION PASS RATE:

First re-inspection: 95% pass (1 failure required 2nd re-inspect)

CUSTOMER COMPLAINTS:

Quality-related complaints: 1 (12.5% of projects)
Issue: Paint finish uneven (non-critical deficiency missed)
Resolution: Re-painted at no charge
Prevention: Added paint quality item to final checklist

TRENDS:

Comparing to last quarter:
- First-pass rate: 75% (up from 70%) βœ“ Improving
- Avg corrections time: 2.1 days (down from 2.8 days) βœ“ Improving
- Complaints: 1 (down from 3) βœ“ Improving

GOALS FOR NEXT PERIOD:

1. Achieve 85% first-pass rate (focus: plumbing)
2. Zero critical deficiencies on electrical
3. Maintain <3 day correction time
4. Zero quality complaints

Save: ~/Cowork-Workspace/quality/reports/quality-metrics-2026-01.pdf

Example Prompts

Pre-delivery vehicle inspection (detailing business)

Vehicle detailing quality checklist:

CLIENT: [Name]
VEHICLE: [Make/Model]
DATE: [MM/DD/YYYY]

EXTERIOR:
β–‘ Entire body washed and dried (no streaks)
β–‘ Wheels and wheel wells cleaned
β–‘ Tires dressed (shine, not greasy)
β–‘ Windows cleaned inside and out (no streaks)
β–‘ Chrome/trim polished
β–‘ Paint waxed/sealed (water beads)
β–‘ Door jambs cleaned
β–‘ Gas cap area cleaned

INTERIOR:
β–‘ Vacuumed (seats, floor, trunk)
β–‘ Dashboard wiped and dressed
β–‘ Center console cleaned
β–‘ Cup holders cleaned (no residue)
β–‘ Door panels wiped down
β–‘ Carpets shampooed (if applicable)
β–‘ Seats cleaned/conditioned
β–‘ Windows streak-free
β–‘ Air vents dusted
β–‘ No cleaning product residue visible
β–‘ Fresh scent (not overpowering)

FINAL:
β–‘ Test drive (windows, AC, verify no issues)
β–‘ Photo documentation (before/after)
β–‘ Customer walkthrough scheduled

Pass/Fail: ___
Inspector: ___
Customer signature: ___ (indicates acceptance)

Save: ~/Cowork-Workspace/quality/detailing-[vehicle]-[date].pdf

Restaurant prep checklist (health code)

Daily kitchen prep quality checklist:

DATE: [MM/DD/YYYY]
SHIFT: Breakfast/Lunch/Dinner
PREP COOK: [Name]

FOOD SAFETY:
β–‘ All refrigeration <41Β°F (check thermometers)
β–‘ Hot holding >135Β°F
β–‘ Hand sinks stocked (soap, towels)
β–‘ Sanitizer buckets fresh (test strips 200 ppm)
β–‘ Food properly labeled (name, date)
β–‘ No cross-contamination (raw/cooked separated)
β–‘ Thawing done safely (fridge or cold water, not counter)

PREP QUALITY:
β–‘ All vegetables washed
β–‘ Cuts uniform (consistent sizes)
β–‘ Portions accurate (use scale/measures)
β–‘ Presentation ready (garnishes prepped)
β–‘ Ingredients fresh (no expired items)

CLEANLINESS:
β–‘ Work surfaces sanitized
β–‘ Cutting boards clean (separate colors used)
β–‘ Utensils clean and stored properly
β–‘ Floors dry (no slip hazards)
β–‘ Trash emptied before service

Pass: β–‘ Ready for service
Fail: β–‘ Corrections needed: ______

Manager approval: ___

Save: ~/Cowork-Workspace/quality/kitchen-daily-[date].pdf

Troubleshooting

Checklist too long (takes too much time)

Cause: Too much detail or irrelevant items Solution: Streamline to essentials:

CHECKLIST OPTIMIZATION:

Review each item:
- Is this code-required or critical to function? β†’ Keep
- Is this nice-to-have or cosmetic? β†’ Remove or make non-critical
- Is this redundant with another item? β†’ Combine

EXAMPLE REDUCTION:

Before (18 items, 45 minutes):
β–‘ Screws 12" OC on ceiling
β–‘ Screws 16" OC on walls
β–‘ Screw heads below surface
β–‘ No broken paper
β–‘ Joints taped
β–‘ Joints mudded
β–‘ Corner bead installed
β–‘ Corner bead straight
[...]

After (8 items, 20 minutes):
β–‘ Fasteners: Proper spacing (12"/16" OC), heads set, no breaks βœ“
β–‘ Joints: Taped and mudded smooth (3 coats) βœ“
β–‘ Corners: Bead straight and secure βœ“
[...combine related items]

Result: Same quality, less time

Inspections skipped due to time pressure

Cause: Deadline pressure, checklist seen as optional Solution: Make non-negotiable:

QUALITY GATE ENFORCEMENT:

Build inspection into workflow as mandatory gate:

WORKFLOW:
1. Work performed
2. β–‘ GATE: Quality inspection (MUST PASS to proceed)
3. Next phase begins

No exceptions policy:
- Even if behind schedule
- Even if client pressuring
- Even if "looks fine"

Rationale:
- Fixing later = 10Γ— more expensive
- Customer complaints = lost time + reputation damage
- Code violations = legal liability

TIME ALLOCATION:
Include inspection time in project schedule:
- Plan: "Rough-in + inspection" = work time + 30 min check
- Not: "Rough-in" (inspection forgotten)

ACCOUNTABILITY:
Crew doesn't leave site until inspection done
Inspector signs off before next phase starts

Subjective items (inconsistent evaluation)

Cause: β€œLooks good” is subjective Solution: Objective criteria:

MAKE CRITERIA MEASURABLE:

Subjective (bad):
β–‘ Paint finish is smooth

Objective (good):
β–‘ Paint finish: No visible brush marks from 3 ft, passes hand test (feels smooth)

Subjective:
β–‘ Clean workspace

Objective:
β–‘ Workspace: No debris, tools put away, sweep floor (no visible dirt)

Subjective:
β–‘ Joints taped well

Objective:
β–‘ Joints: Tape embedded in mud, no bubbles, edges feathered 6" beyond tape

TESTING METHODS:
- Visual: "From X feet" (standardizes viewing distance)
- Touch: "Hand test" (run hand over surface)
- Measurement: "No gap >1/8 inch" (use gauge)
- Function: "Operates 3Γ— without sticking" (test operation)

Variations

Customer acceptance checklist

Client final walkthrough checklist:

Completed with customer present:
- Walk through each room
- Customer checks quality themselves
- Sign off on acceptance OR note issues

BENEFITS:
- Customer feels involved
- Catches cosmetic items you might miss
- Documented acceptance = prevents later disputes
- Builds trust

WALKTHROUGH FORM:
Room: Living room
β–‘ Acceptable βœ“ / β–‘ Needs attention: ______
Customer initials: ___

[Repeat for each room/area]

Overall acceptance:
β–‘ Accept as-is βœ“
β–‘ Punch list items (see attached)

Customer signature: ___ Date: ___

Tiered checklists (basic vs premium)

Offer service levels with different quality checks:

BASIC SERVICE:
- 10-point checklist (essentials only)
- Faster, lower cost

PREMIUM SERVICE:
- 25-point checklist (comprehensive)
- Higher quality, higher price

EXAMPLE - Car detailing:

BASIC ($50, 1 hour):
β–‘ Exterior wash
β–‘ Vacuum interior
β–‘ Windows cleaned

PREMIUM ($150, 3 hours):
β–‘ All basic items PLUS:
β–‘ Clay bar treatment
β–‘ Paint sealant
β–‘ Interior shampoo
β–‘ Leather conditioning
β–‘ Engine bay cleaned
β–‘ Headlight restoration
β–‘ 15-point final inspection

Customer chooses service level upfront
Checklist matches what they paid for

Best Practices

  1. Code-based β€” Reference specific code sections (NEC, IPC, IRC, health codes)
  2. Photo everything β€” Photos prove work quality and protect from false claims
  3. Non-negotiable gates β€” Quality checks are mandatory, not optional
  4. Objective criteria β€” Measurable standards, not β€œlooks good”
  5. Training tool β€” Use checklists to train new employees on standards
  6. Version control β€” Update checklists when codes change (date versions)
  7. Client involvement β€” Walk-through with customer builds trust and catches preferences
  8. Track metrics β€” Analyze deficiency patterns to prevent recurring issues

*Back to Workflows Cowork Documentation*