"Can it be simpler?" - A recurring thought I've had while working on build automation. EasyShell (command: easy ) is a minimal shell scripting language designed from the ground up for simplicity and cross-platform build/process automation . If you’ve ever felt that PowerShell’s syntax is powerful but easy to forget, or that traditional shell scripts get messy across operating systems, EasyShell aims to strike a cleaner balance. It's implemented in C# and runs on .NET, giving you natural access to the entire .NET ecosystem while keeping the scripting experience lightweight and approachable. Design Principles One command per line (shell-like flow) Very small set of core concepts Strongly-typed global variables Seamless .NET interop via reflection Expressions in parentheses for inline evaluation Easy to read, write, and remember Version 0.1.0 is now available — functional for everyday automation tasks.…