3 immediate tactics you can start today — based on where you are right now. No account required. No email required to start.
3,000+
Engineers surveyed
71%
Feel like middlemen
4 Tiers
Severity framework
If you came from HN today and something in the thread resonated — this page gives you 3 things to start with right now, based on where you are. No fluff. No "take more breaks." Specific, evidence-based tactics.
Step 1: Find your tier
Which sounds most like you?
🌿 Tier 1 — Holding Up
You use AI freely
It's useful. You still feel like an engineer. You're here out of curiosity, not necessity.
→ Tactic: No-AI debugging (keep skills sharp)
🌤 Tier 2 — Some Fatigue
Something feels off
The productivity gains are real but something is shallower. You can't quite explain why you made a decision.
→ Tactic: The Explanation Requirement
🌧 Tier 3 — Real Fatigue
Skills feel eroded
You notice gaps. Debugging feels harder. You lean on AI for things you used to know cold. The guilt is familiar.
→ Tactic: Weekly skill rebuilding sessions
🌑 Tier 4 — Need a Real Break
You're considering leaving
The work doesn't feel like yours anymore. You're wondering if you should even be doing this. It's affecting sleep and identity.
→ Tactic: Structured reset — see full guide
Step 2: Start with one of these today
The 3 highest-impact tactics for AI-fatigued engineers
1
The Explanation Requirement
2 min · No tool needed · Start now
Before accepting any AI suggestion — a code block, an architectural recommendation, a refactor — write one sentence explaining why it's correct. If you can't, don't accept it.
Why this works: AI suggestions accepted without understanding bypass the learning loop entirely. The explanation requirement forces processing, not pasting. This is the minimum viable intervention — it costs 2 minutes and stops the erosion at its source.
2
20-Minute Struggle Rule
20 min · Before any AI tool · Start now
Before opening Copilot, Claude, or ChatGPT for any coding task — spend 20 minutes attempting the problem yourself. Read the error. Trace the execution. Form a hypothesis. Then open AI.
Why this works: Cognitive science research (Kalyuga's Expertise Reversal Effect) shows that the more expert you are, the more you depend on active struggle to maintain your mental models. AI skips that struggle — which feels productive but erodes the pattern recognition that makes you effective when AI isn't available.
3
One Component, From Scratch
2 hrs/week · No AI allowed · This week
Pick one small component you built with heavy AI assistance in the last month. Rebuild one part of it — no AI, no autocomplete. Write down what you notice: the gaps, the habits, the instincts that are quieter now.
Why this works: Skills衰退 from disuse rebuild faster than they initially formed (Arthur & Bennet, 1995). The quarterly rebuild gives you an honest assessment of where you are — and the act of rebuilding is itself the first step toward recovery. The gap is data.
Step 3: Go deeper
Take the AI Fatigue Quiz
5 questions. 4 severity tiers. See where you land — and what actually helps at your level.
Source: AI Fatigue Quiz, self-reported data from 3,000+ engineers, March–April 2026. Not a controlled study — patterns reported by working engineers.
Appendix
The 4 Tiers, Explained
🌿 TIER 1 — HOLDING UP
You still feel like an engineer. AI is a useful tool, not a crutch. You come here out of curiosity, not necessity. You're managing fine — the goal is to stay there.
→ Best tactics: Explanation Requirement, 20-Minute Struggle Rule
🌤 TIER 2 — SOME FATIGUE
The productivity gains are real but something is shallower. You can't quite explain why you made a decision. The Sunday scaries started. You're still performing, but the satisfaction is gone.
You notice specific gaps — debugging is harder, a language feature you used to know cold feels unfamiliar, you can't read code the way you used to. The guilt about using AI is constant. You've started lying to yourself about what you actually built.
→ Best tactics: Full 20-Minute Struggle Rule, Weekly Rebuild Sessions, No-AI Block, 30-Day Detox
🌑 TIER 4 — NEED A REAL BREAK
The work doesn't feel like yours. You're wondering if you should even be in this profession. It's affecting sleep, relationships, identity. You've considered walking away entirely. The Sunday night dread has become a constant background hum.
→ Best tactics: Structured reset (see recovery guide), consider talking to a manager or therapist, 30-day AI detox plan
The 4-tier framework comes from surveying 3,000+ engineers. It's not a clinical diagnosis — it's a mirror. Most engineers land in Tier 2 or 3 and don't have the vocabulary for it yet. That's what The Clearing is for.
FAQ
Common questions
No. The quiz gives you a severity tier and a personalized next-steps plan, but the tactics on this page work at any tier. If you want to know where you stand, take the 5-question quiz — it takes 90 seconds. If you want to start with the tactics directly, jump in above.
This page is a starting point, not a treatment plan. If you're in Tier 4, please read the 30-Day AI Detox Plan and the Recovery Guide. If work is affecting your mental health, sleep, or relationships, consider talking to a manager or a mental health professional. US crisis line: 988.
That's exactly who these tactics are for. Tactic 1 (Explanation Requirement) takes 2 minutes. Tactic 2 (20-Minute Struggle) takes 20 minutes once. Tactic 3 (One Component From Scratch) takes 2 hours this week. The full recovery plan is there when you're ready — or use these 3 as a permanent operating rhythm.
Some will, some won't — and you know your manager better than I do. If you're in Tier 3 or 4, it's worth having a conversation framed around performance and sustainability rather than fatigue. The Workplace Guide has scripts for talking to managers about AI limits. If your company has an EAP, this is exactly what it's for.
Yes. The Team Manager Guide is specifically for managers — how to spot AI fatigue in your team, set team-level AI norms, and have conversations that don't compromise authority on either side.
Most engineers report noticing the Explanation Requirement effect within 1–2 weeks — specifically, they start remembering why decisions were made rather than just knowing that AI suggested them. The 20-Minute Struggle Rule takes 3–4 weeks to show measurable results in skill confidence.
// Show mailto fallback if Formspree not configured
(function() {
var form = document.getElementById('newsletter-form');
var mailtoEl = document.getElementById('mailto-fallback');
if (!form || !mailtoEl) return;
var action = form.getAttribute('action') || '';
if (action.indexOf('xpwqqvln') === -1) return;
var mailtoAnchor = document.getElementById('mailto-link');
if (mailtoAnchor) {
var emailInput = form.querySelector('[name="email"], [type="email"]');
var email = emailInput ? (emailInput.value || '') : '';
var subject = encodeURIComponent('Subscribe to The Dispatch 🌿');
var body = encodeURIComponent(
'Hi, please subscribe me to The Dispatch.\n\nEmail: ' + email + '\n\n— from clearing-ai.com'
);
mailtoAnchor.href = 'mailto:hello@clearing-ai.com?subject=' + subject + '&body=' + body;
}
mailtoEl.style.display = 'block';
})();
// Intercept form submit when Formspree not configured — use mailto fallback
(function() {
var form = document.getElementById('newsletter-form');
if (!form) return;
var action = form.getAttribute('action') || '';
if (action.indexOf('xpwqqvln') === -1) return;
form.addEventListener('submit', function(e) {
e.preventDefault();
var emailInput = form.querySelector('[name="email"], [type="email"]');
var email = emailInput ? (emailInput.value || '') : '';
var subject = encodeURIComponent('Subscribe to The Dispatch 🌿');
var body = encodeURIComponent(
'Hi, please subscribe me to The Dispatch.\n\nEmail: ' + email + '\n\n— from clearing-ai.com'
);
var mailtoLink = 'mailto:hello@clearing-ai.com?subject=' + subject + '&body=' + body;
window.open(mailtoLink, '_blank');
var mailtoEl = document.getElementById('mailto-fallback');
if (mailtoEl) mailtoEl.style.display = 'none';
var successEl = document.getElementById('form-success') || document.querySelector('.form-success, .success-msg');
if (successEl) {
successEl.style.display = 'block';
successEl.scrollIntoView({ behavior: 'smooth', block: 'center' });
}
});
})();