Blog · Process

The first 30 days of an automation project — what we actually do, week by week

Most automation projects either drag for 90 days or get rushed into a 5-day Frankenstein. Here's what a deliberate 30-day shape actually looks like — the deliverables, the milestones, and the moments where projects go wrong if you skip a step.

Blog · ProcessPublished May 18, 2026· 12 min read

A well-scoped SMB automation project should fit inside 30 calendar days for a single workflow ($3K–$7K), 35–45 days for 2–3 connected workflows ($7K–$16K), and 50–80 days for an operational system ($14K–$30K). The shape is always the same: ~25% discovery, ~50% build, ~15% testing + UAT, ~10% cutover + 30-day support. Agencies that promise <2 weeks for anything beyond a single linear workflow are skipping discovery, tests, or both — and you'll pay the difference in week 4 when edge cases surface. Below is the week-by-week breakdown for the canonical single-workflow project, with notes on how it stretches for larger scopes.

Why 30 days — not 90, not 7

Thirty days is the Goldilocks zone for SMB automation projects. Shorter projects skip steps that matter. Longer projects accumulate scope creep and the original problem shifts before you ship.

The math: a single workflow project usually involves ~80 hours of focused work spread across discovery, design, build, testing, and cutover. Compressing that into 5 days means working 16-hour days OR skipping the deliverables that don't have a visible output (discovery, tests, documentation). Stretching it to 90 days means the workflow you were automating no longer exists in the same form when you finish.

Thirty days also matches how people pay attention. Four weeks is short enough that the same client champion is engaged from kickoff to launch. Beyond that, you start losing stakeholders to other priorities, and the project drifts. We've watched 90-day projects die in week 7 not because the build failed, but because nobody on the client side remembered what they wanted by then.

Week 1 — Discovery (and why we won't skip it)

The first week is where most "automation failures" actually happen — months before anyone notices, because nobody recognizes the failure mode. The agency skipped discovery, started building from a one-paragraph brief, and now they're 80% done with a system that handles 60% of the real workflow.

Week 1 deliverables

  • Workflow map (visual) — every step, every branch, every approval, every handoff. The map is the artifact that gets signed off before any code starts.
  • Edge case catalog — list of "most of the time X, but sometimes Y" situations. This is where 50% of the eventual build cost lives. We push hard here because every undocumented edge case in week 1 becomes a panic ticket in week 5.
  • Data audit — what does the input look like? Is it clean? How many records, what formats, what sources? If the answer is "messy", we surface the data cleanup work as a separate line item BEFORE the build estimate is final.
  • Integration spec — which tools need to talk, what's the API quality, what permissions are needed, who owns the credentials.
  • Success criteria — what does "this works" look like at day 30? Specific metric: hours saved per week, error rate reduction, response time, etc.

Client time investment in week 1

About 6 hours total, mostly in 2-3 calls. We do most of the work async between calls so the client team isn't living in our meetings. The 6 hours are:

  • Kickoff call: 60 min (define success criteria, identify stakeholders).
  • Workflow walk-through call: 90 min (live demo of how the workflow runs today).
  • Edge case session: 90 min (where the messy reality lives).
  • Wrap-up review: 30 min (sign-off on workflow map + scope).
  • Async review of artifacts: ~90 min of reading + comments.

Anti-pattern: if an agency says "we don't need discovery, just give us the requirements", they're either assuming the workflow is much simpler than reality or they're optimizing for billable hours later (because every missed edge case becomes a change order). Discovery is 20-25% of project cost and it's the part that compounds the most.

Week 2 — Foundation + first cut

With week 1 signed off, week 2 is when the build starts. The goal isn't a finished workflow — it's a runnable skeleton that the happy path passes through end to end.

Week 2 deliverables

  • Schema / data model design — the shape of the data the workflow reads and writes. Done first so integrations build against a stable contract.
  • Integration scaffolding — auth flows working, sample API calls succeeding, credentials securely stored. No business logic yet, but the pipes connect.
  • Happy-path implementation — the workflow runs end-to-end for the most common case. Edge cases throw clear errors instead of doing the wrong thing silently — "to be handled in week 3".
  • Internal staging environment live — the client team can see it run on test data, but nothing in production is touched.

Client time in week 2

About 3 hours. A mid-week 30-min check-in + an end-of-week 60-min demo of the happy path + ~90 min of async review and feedback.

What we look for at the week 2 demo: does the happy path match the workflow map from week 1? If yes, week 3 is "fill in the edges". If no, we caught a misunderstanding early — much cheaper to fix in week 2 than week 4.

Week 3 — Edge cases, tests, and the documentation nobody else writes

Week 3 is where the actual quality of the build is determined. Anyone can ship a happy path. The agencies you remember after the project ends are the ones that handled week 3 with the same rigor as week 2.

Week 3 deliverables

  • Edge case handling complete — every "but sometimes…" from week 1 has a defined behavior. Some get automated handling, some get routed to a human with context, some get logged for later review. None get silently dropped.
  • Automated tests written — for every edge case, plus regression tests for the happy path. This is the invisible deliverable that pays back for years: when someone changes the workflow in 8 months, the tests catch what broke.
  • Documentation written — what the workflow does, how to debug it, how to extend it. Two flavors: a "what it does for the business" doc for the client team, and a "how to maintain it" doc for whoever owns it technically.
  • Error handling + observability — when something fails (it will), the right person gets a clear notification with enough context to act. Not "Error: undefined" buried in a log nobody reads.

Client time in week 3

About 3 hours, similar to week 2. We may need a 30-min ad-hoc call to confirm a specific edge case decision ("if the lead doesn't have a phone number, do we route differently or just skip the call step?"). The end-of-week demo shows the full workflow handling realistic scenarios.

Week 4 — UAT, cutover, and the 30-day support clock starts

Week 4 is when the workflow goes live, but "going live" is not a single moment — it's a deliberate sequence that catches the last 5% of edge cases the previous weeks couldn't surface.

Week 4 deliverables

  • User acceptance testing (UAT) — the client team uses the workflow with real (or production-like) data, in their own environment, for 2-3 days. They report what feels wrong, slow, or confusing. We patch.
  • Parallel running (when applicable) — the new system runs alongside whatever it's replacing for a few days. Daily reconciliation catches discrepancies. For a spreadsheet replacement, this is non-negotiable.
  • Cutover — the moment of switching production traffic over. Always done on a low-volume day (mid-week morning is common). Always with a rollback plan that takes 5 minutes.
  • Team training — at least one live walkthrough with the people who will use it daily. Recorded so new hires can watch later. We also leave behind a short "if X breaks, do Y" runbook.
  • 30-day support starts — for the next 30 days, any bug found in normal operation is fixed at no extra charge. Feature requests are separate scope.

Client time in week 4

About 6 hours plus team training time. UAT specifically requires real attention — this is where you catch things week 3 couldn't anticipate ("we didn't realize Maria does this part on Friday afternoons").

How the 30-day shape stretches for larger projects

The shape is constant; the scale changes. For projects beyond a single workflow, you stretch each phase proportionally — you don't add a different phase.

Project sizeDiscoveryBuildUAT + CutoverTotal calendar
Single workflow ($3K–$7K)Week 1Weeks 2–3Week 4~30 days
2–3 connected workflows ($7K–$16K)~10 days~20 days~10 days~35–45 days
Operational system ($14K–$30K)~14 days~30 days~14 days~50–60 days
Custom platform ($25K–$60K)~21 days~50 days~21 days~80–100 days

What changes proportionally as the project scales: discovery gets longer because more workflows mean more edge cases. Build gets longer because there's more surface area. UAT gets longer because there are more interfaces to validate. What doesn't change: the ratio. You'll always spend ~20-25% of project time in discovery and ~15% in UAT/cutover — anyone who slashes those is hiding the cost in a later month.

Four red flags when an agency promises a shorter timeline

  1. "We can do it in a week" for anything beyond a single linear workflow. They're either using a template that won't fit your edge cases, or they're going to skip testing and documentation and call it done.
  2. "We don't need discovery" for a custom build. Discovery is how they understand your edge cases. Skipping it guarantees rework in week 4-5, which shows up as a change order or as a half-broken system you live with.
  3. No mention of tests in the deliverables. If automated tests aren't an explicit deliverable, you'll inherit a workflow that breaks silently every time you (or they) change something later. The "saving money on tests" is a 6-month loan with 200% interest.
  4. No 30-day support included in the price. The first month is precisely when real-world data surfaces the last 5% of edge cases. An agency that charges extra for this period is either inexperienced or planning to leave you stuck.

None of these are about the agency being malicious. They're about misaligned incentives — agencies that compete on price get there by cutting the invisible work. The invisible work is what makes the system survive past month 3.

Three illustrative scenarios — how the 30-day shape looks in practice

✏️ Note: illustrative compositions, not specific clients.

Scenario A — single workflow, lead intake to CRM

  • Scope: web form → HubSpot CRM → Slack notification.
  • Week 1: workflow map of 4 forms × 3 lead types, edge cases catalog, integration spec (HubSpot OAuth + Slack webhook).
  • Week 2: HubSpot deal schema designed, OAuth flow working, happy path implemented (form submission creates contact + deal + Slack message).
  • Week 3: duplicate detection, malformed-email handling, Slack channel routing by lead source, tests for all 12 edge cases identified.
  • Week 4: client UAT (submit 30 test forms across categories), 2-day parallel run alongside existing manual process, cutover Wednesday morning, training Friday.
  • 30-day support: 4 bugs surfaced and patched. Stable from day 45 onward.

Scenario B — 3 connected workflows, quote-to-cash

  • Scope: HubSpot deal → auto-generated proposal → e-sign → QuickBooks invoice → Slack handoff.
  • Total calendar: 42 days. Discovery 10 days (3 workflows × 3 hours of stakeholder interviews each). Build 22 days. UAT + cutover 10 days.
  • The discovery week is longer because the 3 workflows share data and breaking one affects the others. Worth doing right once instead of patching cross-effects in week 6.

Scenario C — operational system replacing a spreadsheet

  • Scope: replace a 14-tab Google Sheet that 8 people edit daily. Includes audit log, role-based access, dashboards, QuickBooks export.
  • Total calendar: 56 days. Discovery 14 days (the spreadsheet has accumulated 3 years of undocumented business logic that has to be excavated). Build 28 days. UAT 14 days (longer parallel run because financial reconciliation must match exactly).
  • 30-day support after cutover: 11 bugs and 6 small UX adjustments. Stable around day 70. This is exactly what the spreadsheet replacement journey looks like — if anyone promises 30 days for this scope, they're going to ship something the team won't use.

What makes a 30-day shape actually work

Three things, none of them technical:

  1. One client champion who is reachable inside 24 hours. The single biggest delay in any automation project is "we sent a question on Tuesday, got an answer Friday". 30 days assumes 24-hour turnaround on questions. If the champion is slow, the timeline slides.
  2. Documented scope at the end of week 1, locked. Changes after the sign-off get handled as change orders. Without that lock, projects scope-creep their way to 60 days while the original problem decays.
  3. Honest discovery in week 1. The client team has to surface the messy edges, the workarounds, the "Maria does this manually on Fridays" reality. We can't guess what we don't see. The single best predictor of a smooth project is how honest the discovery conversations are.

For the rest of the operational math (what each tier costs, what should be in the quote, how to write the brief that gets a precise number), see what an automation project actually costs in 2026.

Frequently asked questions

Can a real automation project ship in less than 30 days?+

For a single linear workflow with 1-2 integrations, no edge cases, and clean source data — yes, 10-15 days is realistic. For anything with multi-step branching, exceptions, approvals, or messy data, 30 days is the floor for a project that survives past month 3. Compressed timelines work when the scope genuinely fits; they don't work as a marketing claim against a project that needs full discovery.

What happens in the 30-day support period?+

Any bug found in normal operation during the first 30 calendar days after cutover gets fixed at no extra charge. Feature requests are separate scope. Typically a single-workflow project surfaces 3-6 bugs in the support period; an operational system surfaces 10-15. Most are minor — edge cases the discovery didn't reveal — and get patched in hours. The support period is also when we do tuning passes (e.g., adjust a rule based on real-world frequency you couldn't have predicted).

How much time does my team actually need to invest during the 30 days?+

About 18-22 hours total across the four weeks for a single workflow: ~6h in week 1, ~3h in weeks 2-3, ~6h in week 4 plus team training. The biggest predictor of timeline slip is response time — questions that wait 3 days for answers turn a 30-day project into a 45-day project. Designate one champion who can answer in 24 hours and you're set.

What if we discover the scope is wrong during week 2 or 3?+

We pause and have an honest conversation. Three options usually surface: (a) descope to fit the original timeline, (b) extend timeline and budget proportionally, (c) cancel with a partial refund based on work completed and lessons learned (still useful — discovery artifacts are yours). The worst option is to keep pushing through a wrong scope hoping it'll work. We've never seen that recover; we've seen it produce systems that get abandoned within 90 days.

Why do you insist on tests if the workflow 'works'?+

Because the workflow works on day 30. The question is whether it still works on day 240 after you've changed something — added a new lead source, modified the CRM field structure, updated the integration credentials. Without tests, every change is a 'cross your fingers' moment. With tests, the workflow tells you immediately when something breaks. Tests are 5-10% of build cost and prevent the silent failures that destroy trust in automation systems.

Can we do the discovery internally and just hire you to build?+

Sometimes yes, often no. If your team has produced workflow maps and edge case catalogs before, internal discovery works fine and we'll review your artifacts in a 4-hour session instead of a full week. If this is your first systematic automation project, doing discovery jointly is usually worth the cost — it surfaces edges that an internal team that's lived with the workflow forever doesn't notice anymore. Either way, we don't skip the artifacts; we just discuss who produces them.

Blog

Ready to plan your 30 days?

Send us the workflow — what triggers it, what it does, who owns it — and we'll come back with a 30-day plan that fits, with discovery, tests, documentation, and post-launch support all itemized. No surprises in week 4.

Tell us the problem →

Practical automation tips, no spam.

Once a month. Real examples from custom software & AI projects for U.S. small businesses.

By subscribing you agree to our Privacy Policy.

WhatsAppProblem
The first 30 days of an automation project — what we actually do, week by week | Kivolaro