\n\n\n\n My Thoughts on AI: Beyond the Hype and Into Agency - AgntZen \n

My Thoughts on AI: Beyond the Hype and Into Agency

📖 10 min read1,824 wordsUpdated May 14, 2026

It’s May 2026, and I’m staring at a blank screen, trying to formulate a thought about AI. Not because I don’t have any, but because the sheer volume of discourse around it feels like trying to drink from a firehose. Everyone, it seems, has an opinion, a prediction, a fear, or a fervent hope. But for us at Agntzen, the question isn’t just what AI does, or what it will do. It’s what AI is, in an agentic sense. And more specifically, what happens when we, the human agents, start to externalize our very capacity for judgment onto these systems?

My angle today isn’t about sentient AI, or the singularity, or even job displacement (though those are all valid, important conversations). Instead, I want to talk about something more subtle, more insidious, and frankly, already happening: the quiet erosion of human judgment through our increasing reliance on AI-driven recommendations, predictions, and automated decisions. I’m calling it the “Algorithmic Drift,” and I think it’s one of the most pressing agentic challenges we face right now.

The Slow Slide: How We Cede Judgment

Think about your day. How many decisions are subtly influenced, or outright made for you, by an algorithm? Your commute, chosen by a mapping app optimizing for traffic. Your next purchase, suggested by a retail giant’s recommendation engine. Your dating prospects, filtered by an app’s compatibility score. Your news feed, curated by an AI predicting engagement. Even your medical treatment, increasingly guided by diagnostic AI. Each individual instance feels like a convenience, a helpful aid. And often, it is.

But what happens when these individual conveniences accumulate? What happens when our muscles for independent evaluation, for critical thinking, for assessing nuance and context, begin to atrophy from disuse? It’s not that we’re consciously choosing to become less discerning. It’s that the path of least resistance, the path paved by algorithms, is so often presented as the optimal, the most efficient, the ‘best’ choice. And frankly, we’re busy. We’re overwhelmed. Taking the algorithmic shortcut feels like a rational response to an overstimulated world.

I experienced a mild version of this recently when planning a trip to a city I’d never visited. In the past, I’d spend hours poring over guidebooks, reading travel blogs, even calling friends who’d been there. This time? I fed my preferences into a travel AI, which spat out a detailed itinerary, restaurant suggestions, and even museum tickets. It was flawless. The trip was great. But afterward, I felt… a little detached. Like I’d consumed an experience rather than crafted one. I hadn’t really discovered anything. The AI had done all the discovering for me. My agentic role had been reduced to an input provider and an executor.

The Problem of Proxy Judgment

The core issue here is that these systems operate on proxy judgment. They aren’t making decisions in the human sense; they are executing highly complex statistical models based on historical data. They’re excellent at pattern recognition. They’re terrible at understanding human values, emergent properties, or the subtle context that often makes a ‘suboptimal’ human decision the right one for a specific individual at a specific moment.

When an AI recommends a stock, it’s not judging the market in the way a seasoned investor does, with gut feeling and nuanced understanding of geopolitical shifts. It’s crunching numbers. When a diagnostic AI suggests a treatment, it’s not empathizing with the patient’s fears or lifestyle choices; it’s identifying the statistically most probable effective outcome based on millions of similar cases. These are powerful tools, no doubt. But the moment we stop understanding them as tools for information processing and start treating them as oracles of truth, we’ve crossed a dangerous threshold.

Our judgment, our ability to weigh conflicting information, to prioritize non-quantifiable values, to make decisions that aren’t just ‘optimal’ but ‘humanly good’ – this is fundamental to our agency. When we outsource it, even partially, we diminish ourselves.

Where Algorithmic Drift Shows Up

Let’s get specific. This isn’t just about what movie to watch tonight. This is about real-world implications.

1. Financial Decisions: The ‘Smart’ Portfolio

Robo-advisors are fantastic for many people, especially those new to investing. They democratize access to diversified portfolios. But what happens when the market goes sideways, or when your personal life takes an unexpected turn? Your robo-advisor might stick to its programmed rebalancing strategy, optimized for long-term growth. But what if your immediate need is liquidity, or a highly conservative approach due to job insecurity? A human advisor, flawed as they may be, can listen, empath understand, and override the ‘optimal’ algorithmic choice. When we blindly trust the robo-advisor, we give up the right to make a financially sub-optimal, but personally necessary, choice.

Consider a simple Python script for portfolio rebalancing. A robo-advisor might run something like this:


def rebalance_portfolio(current_holdings, target_allocations, cash_available):
 transactions = {}
 total_value = sum(current_holdings.values())

 for asset, current_amount in current_holdings.items():
 current_percentage = current_amount / total_value
 target_percentage = target_allocations.get(asset, 0)

 if current_percentage > target_percentage:
 # Sell excess
 amount_to_sell = current_amount - (target_percentage * total_value)
 transactions[asset] = -amount_to_sell # Negative for selling
 elif current_percentage < target_percentage:
 # Buy to meet target (simplified, assumes cash allows)
 amount_to_buy = (target_percentage * total_value) - current_amount
 transactions[asset] = amount_to_buy # Positive for buying
 
 # This simplified example doesn't account for cash constraints perfectly
 # or transaction costs, but illustrates the rule-based nature.
 return transactions

# Example usage:
current_portfolio = {"stocks_A": 15000, "bonds_B": 5000, "real_estate_C": 10000}
target_alloc = {"stocks_A": 0.60, "bonds_B": 0.20, "real_estate_C": 0.20}
cash = 2000 # Cash available for buying

# The algorithm will suggest trades based on percentages,
# not on your sudden need for a new roof or a child's college tuition.
print(rebalance_portfolio(current_portfolio, target_alloc, cash))

This code is efficient and logical. But it has no understanding of human context. A human agent, seeing your life circumstances, might tell you to hold off on rebalancing, or even sell some assets, despite what the "optimal" allocation suggests.

2. Content Consumption: The Echo Chamber Effect

This one is well-trodden ground, but it bears repeating in the context of judgment. When algorithms curate our news and entertainment, they optimize for engagement. This often means showing us more of what we already like, or what reinforces our existing beliefs. The result? We lose exposure to dissenting viewpoints, to challenging ideas, to information that might force us to re-evaluate our own positions. Our judgment becomes less robust, less capable of handling complexity, because we’re only ever presented with one side of the story.

Imagine a very basic content recommendation system. It's not trying to broaden your horizons; it's trying to keep you on the platform:


def recommend_content(user_history, available_content, engagement_model):
 recommended = []
 for content_item in available_content:
 # Simplified: calculate a score based on past interactions
 # and how well it matches existing preferences.
 score = engagement_model.predict(user_history, content_item) 
 if score > threshold:
 recommended.append(content_item)
 
 # Sort by highest predicted engagement
 recommended.sort(key=lambda x: engagement_model.predict(user_history, x), reverse=True)
 return recommended[:5] # Top 5 recommendations

# This system will naturally push content similar to what you've engaged with.
# It doesn't have a parameter for "introduce user to radically new perspective."

This isn't inherently malicious, but its optimization function leads to predictable, and often narrowing, outcomes for human judgment.

3. Professional Expertise: The Automated Assistant

In fields like law, medicine, and engineering, AI assistants are becoming incredibly powerful. They can sift through vast databases of precedents, research papers, and diagnostic images far faster and often more accurately than a human. This is undeniably valuable. But there's a danger that junior professionals, especially, might start to rely on these systems as a crutch, rather than a tool to augment their own developing judgment.

A young doctor might be tempted to simply accept the AI’s diagnostic probability rather than truly grappling with the subtle symptoms and patient history. A new lawyer might copy the AI-generated brief without fully understanding the underlying legal philosophy or the nuances of the case. The capacity for independent critical thinking, for synthesizing information from disparate sources and applying it to a unique situation, is a skill honed through practice, through making mistakes, through the struggle of judgment. If we offload that struggle entirely, we risk creating a generation of professionals who are excellent executors of algorithmic outputs, but poor independent thinkers.

Reclaiming Our Judgment: Actionable Takeaways

The Algorithmic Drift isn't an inevitable fate. We are agents, and we can choose to resist. Here's how:

  1. Question the Recommendation: Don't just accept the first suggestion from Google Maps, Amazon, or your news feed. Ask yourself: "Why is this being shown to me? What alternative options exist? Is this truly the best for *my* unique situation, or just the statistically most probable 'best' for a generalized user?"
  2. Seek Diverse Inputs Actively: Make a conscious effort to consume content from outside your algorithmic bubble. Read newspapers with different editorial slants. Follow people on social media who challenge your viewpoints (respectfully, of course). Engage with ideas that make you uncomfortable. This rebuilds your capacity to evaluate conflicting information.
  3. Understand the Algorithms (at a high level): You don't need to be a data scientist, but having a basic understanding of how recommendation systems, search engines, and predictive models work can help you recognize their limitations. Know that they optimize for specific metrics (engagement, click-throughs, efficiency) which may not align with your broader human values.
  4. Embrace the Friction: Sometimes, the less efficient path is the more rewarding one. Take the scenic route. Browse a physical bookstore. Cook a complicated meal from scratch. Engage in activities that require your full attention and your own decision-making, even if an app could simplify it. This builds your 'judgment muscle.'
  5. Cultivate Human Feedback Loops: Before making a significant decision influenced by AI, talk to a human expert, a friend, or a mentor. Get a second opinion that comes with empathy, life experience, and a nuanced understanding of your personal context.
  6. Deliberately Practice Disagreement: In conversations, actively try to understand and articulate opposing viewpoints, even if you don't agree with them. This isn't about being contrarian; it's about strengthening your ability to weigh different perspectives and form your own reasoned conclusions.

Our agency is defined by our capacity for judgment. It's what allows us to navigate ambiguity, to make ethical choices, to innovate, and to chart our own course in a complex world. AI is an incredibly powerful tool, and we shouldn't shy away from using it. But we must use it consciously, critically, and with an unwavering commitment to preserving and cultivating our own human capacity for judgment. Otherwise, we risk becoming mere passengers in a world driven by algorithms, rather than the agents who shape it.

🕒 Published:

✍️
Written by Jake Chen

AI technology writer and researcher.

Learn more →
Browse Topics: Best Practices | Case Studies | General | minimalism | philosophy
Scroll to Top