The foundational release that established INDUS as a native Windows developer terminal with hardcoded command routing, basic modules, and essential development workflows.
Simple switch-based command routing before the registry system
Foundation of the INDUS terminal experience
Built specifically for Windows with native console APIs, Windows Installer (Inno Setup), and PATH integration.
Essential developer commands across 8 modules: system info, project management, environment variables, Git, networking.
→ ind help
Available commands:
help, version, sysinfo, project, env...
Built for developers with Git integration, project scaffolding, environment management, and workflow automation.
Comprehensive system metrics: CPU, memory, disk, OS details, network info — all accessible via simple commands.
→ ind sysinfo
OS: Windows 11 Pro
CPU: Intel i7-12700K (12 cores)
RAM: 32GB DDR4
All commands implemented via switch/case statements. Simple, direct, but limited extensibility (solved in v1.4.0).
// v1.3.0 approach
switch (command) {
case "help": /* ... */
case "version": /* ... */
}
Go-based compilation with Windows-focused build scripts (build.bat), installer generation, and basic CI/CD.
Core functionality organized into 8 logical modules
| Module | Description | Examples |
|---|---|---|
| Core | Basic terminal operations | help, version, list |
| System | System metrics & info | sysinfo, cpu, memory |
| Project | Project scaffolding | project create, project init |
| Environment | Environment variables | env list, env get, env set |
| Filesystem | File operations | tree, size, search |
| Network | Network utilities | ping, ports, ipinfo |
| Developer | Git & dev tools | git status, git commit |
| Package | Package management | pkg list, pkg install |
Evolution path to modern INDUS
Replaced hardcoded switch/case with JSON-backed command registry. 58 commands across 10 modules. Performance optimizations and extensibility foundation.
Installer improvements, CI enforcement, startup banner refresh. Zero breaking changes. Recommended production upgrade.
103 commands, 11 modules, 30+ toolchain detection. Unknown commands pass through to system shell. Ultimate developer productivity terminal.
# Download v1.3.0 (legacy baseline)
https://github.com/hari7261/INDUS/releases/tag/v1.3.0
# Note: v1.3.0 is maintained for historical reference
# Recommended: Upgrade to v1.5.0 for latest features
→ ind version
INDUS v1.3.0 (Pre-Registry Build)