FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Could AI in the Terminal Make Us Worse Engineers?
How-ToTools

Could AI in the Terminal Make Us Worse Engineers?

via Dev.toKostia1mo ago

Imagine this: an engineer with 10 years of experience builds a small script that translates natural language into shell commands. A month later, he can't write tar -xzf from memory. A command he's typed thousands of times. His brain, given the option, quietly stopped retaining what the tool could retrieve in under a second. Is this our future reality? I wanted to check whether AI in the terminal would negatively impact me, so I built a zsh plugin called zsh-ai-cmd to test it firsthand. A month of daily use gave me an answer — just not the simple one I was hoping for. The Convenience Trap The workflow is seductive. You type: # find all files larger than 100MB in home directory Press Enter. The plugin intercepts the line, gathers your environment context — OS, working directory, available tools, git status, recent commands — ships it to an AI model, and replaces your input with: find ~ -type f -size +100M -exec ls -lh {} \; Highlighted in green. Press Enter again to execute, Ctrl+C to ca

Continue reading on Dev.to

Opens in a new tab

Read Full Article
24 views

Related Articles

The Boring Skills That Make Developers Unstoppable in 2026
How-To

The Boring Skills That Make Developers Unstoppable in 2026

Medium Programming • 8h ago

I Installed This VS Code Extension… and My Code Got Instantly Better
How-To

I Installed This VS Code Extension… and My Code Got Instantly Better

Medium Programming • 9h ago

The Age of Personalized Software
How-To

The Age of Personalized Software

Medium Programming • 11h ago

Automating Checkout Add-On Recommendations in WordPress for WooCommerce
How-To

Automating Checkout Add-On Recommendations in WordPress for WooCommerce

Dev.to • 11h ago

How-To

Start Here: Learning to develop your own way with SCSIC

Medium Programming • 15h ago

Discover More Articles