Companies want workers using AI. What happens if they get their wish?
Getting workers to use AI is a big problem. But with trillions of dollars at stake, it's worth looking ahead to what the next big challenge could be.
Maskot/Getty Images
2026-04-01T13:37:22.545Z
-
This post originally appeared in the Business Insider Today newsletter.
-
You can sign up for Business Insider's daily newsletter here.
Ask not what your company can do for you — ask what your vibe-coded AI agent can do for your company.
-JFK (probably)
The best way to show your value at work these days? Let AI do the talking.
Meta, Google, and JPMorgan have thrown down the gauntlet over AI usage. Their approaches might differ — sometimes it's a carrot, sometimes it's a stick — but the message is the same: use AI, or else.
The push makes sense given the money companies are investing in AI. As those bills pile up, you can bet they want their employees to use the tech.
That doesn't make the pitch any easier. People still worry that the tools they're using could ultimately replace them.
The problems don't end when everyone starts using AI.
Say a company reaches full AI adoption. (And let's be honest, it's heading that way.)
Then what?
Three new problems come to mind:
What's the reward? Like the millennial lifestyle subsidy, AI-usage perks are probably too expensive to last forever. When they dry up, how do you keep people bought into the tech? That's especially tricky for the workers who've cracked the code on using AI to be more productive. If companies aren't willing to pay them more, but still expect that higher level of output, there's a potential disconnect.
Quality vs quantity. Gamifying cuts both ways. Push workers to use AI, and some will start opting for output over substance. Suddenly, you're overrun with AI slop or a bunch of AI agents you don't fully control. Meanwhile, that constant level of automation means workers risk losing their core skills.
Keeping costs in check. This AI stuff isn't free. The compute needed to power these tools is quickly becoming one of CFOs' top concerns. That's leading some companies to rein in workers' usage to keep costs from climbing too high. It's a tricky dynamic: use AI to be productive, just don't go too crazy.
Maybe you think I'm putting the horse before the cart. Getting everyone to consistently use AI is a big enough problem. But with trillions of dollars at stake, it's worth looking ahead to what the next big challenge could be.
Because getting people to use AI is one battle. Figuring out what comes next is the real war.
Sign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.
More in Products

Anthropic Just Paid $400M for a Team of 10. Here's Why That Makes Sense.
Eight months. That's how long Coefficient Bio existed before Anthropic bought it for $400 million in stock. No public product. No disclosed revenue. No conventional traction metrics. Just a small team of fewer than 10 people, most of them former Genentech computational biology researchers, and one very large claim: they were building artificial superintelligence for science. Anthropic paid up anyway. And if you look at what they've been building in healthcare and life sciences over the past year, this acquisition is less of a surprise and more of a logical endpoint. Who Is Coefficient Bio? Coefficient Bio was founded roughly eight months ago by Samuel Stanton and Nathan C. Frey. Both came from Prescient Design, Genentech's computational drug discovery unit. Frey led a group there working o

What Is Base64 Encoding and Why Do Developers Use It Everywhere
You have probably seen strings like this in code, APIs, or data URLs: SGVsbG8gV29ybGQ= That is "Hello World" encoded in Base64. If you have worked with images in CSS, email attachments, API tokens, or JSON payloads, you have already used Base64 — maybe without realising it. Here is what Base64 actually is, why it exists, and when you should (and should not) use it. What Is Base64? Base64 is a way to represent binary data using only text characters. It converts any data — text, images, PDFs, anything — into a string made up of 64 characters: A-Z, a-z, 0-9, +, and /. The = sign is used for padding at the end. Every 3 bytes of input become 4 characters of output. That is why Base64 encoded data is always about 33% larger than the original. Why Does Base64 Exist? Many systems were designed to

What is a Function? Simple Explanation with Examples
what is function ? 1.function is a block of code that perform specific task. *block of code is a group of instruction to perform specific task. 2.Instead of writing the same code again and again, you can write it once inside a function and reuse it whenever needed. EXAMPLES; function square(number) { return number * number; } *In this case function is keyword, square is the function name what we named, inside the parentheses have parameters if we want to use so many parameters inside the parentheses then we must separate each of them with commas. *if we want to execute this function, then we should call this name of function, this function name is square so we call this like square() or if we want to put arguments then we should call this like square(23) in this case what was happened is y


Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!