Legacy Baseline — February 26, 2026

v1.3.0

The foundational release that established INDUS as a native Windows developer terminal with hardcoded command routing, basic modules, and essential development workflows.

45+
Base Commands
8
Core Modules
Pre-Registry
Hardcoded Routes

v1.3.0 Pre-Registry Architecture

Simple switch-based command routing before the registry system

graph TB User[User Input] -->|ind command| Parser[Command Parser] Parser -->|switch/case| Help[Help Command] Parser -->|switch/case| Version[Version Command] Parser -->|switch/case| List[List Command] Parser -->|switch/case| Sysinfo[Sysinfo Command] Parser -->|switch/case| Project[Project Commands] Parser -->|switch/case| Env[Environment Commands] Parser -->|switch/case| Git[Git Commands] Parser -->|switch/case| Network[Network Commands] Help --> Output[Terminal Output] Version --> Output List --> Output Sysinfo --> Output Project --> Output Env --> Output Git --> Output Network --> Output Parser -.->|Unknown command| Error[Error Handler] Error -.-> Output Future[v1.4.0 Registry
Coming Soon] -.->|Will replace| Parser style User fill:#FF9933,stroke:#FF9933,color:#0a0a0a style Parser fill:#1a1a1a,stroke:#FF9933 style Future fill:#1a1a1a,stroke:#4CAF50,stroke-dasharray: 5 5 style Error fill:#1a1a1a,stroke:#F44336 style Output fill:#FF9933,stroke:#FF9933,color:#0a0a0a

v1.3.0 Core Features

Foundation of the INDUS terminal experience

Native Windows Integration

Built specifically for Windows with native console APIs, Windows Installer (Inno Setup), and PATH integration.

  • ✓ Windows Console API
  • ✓ Native PATH setup
  • ✓ Start Menu integration

45+ Core Commands

Essential developer commands across 8 modules: system info, project management, environment variables, Git, networking.

 ind help
Available commands:
help, version, sysinfo, project, env...

Developer-Centric Design

Built for developers with Git integration, project scaffolding, environment management, and workflow automation.

  • ✓ Git status/commit/push
  • ✓ Project templates
  • ✓ Environment variables

System Information

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

Hardcoded Command Routes

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": /* ... */
}

Foundational Build System

Go-based compilation with Windows-focused build scripts (build.bat), installer generation, and basic CI/CD.

  • ✓ Go 1.21+ compilation
  • ✓ Inno Setup installer
  • ✓ Windows-first tooling

Command Modules (Pre-Registry)

Core functionality organized into 8 logical modules

Module Overview
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

What Came After v1.3.0

Evolution path to modern INDUS

🚀 v1.4.0 — Registry System

Replaced hardcoded switch/case with JSON-backed command registry. 58 commands across 10 modules. Performance optimizations and extensibility foundation.

🛡️ v1.4.1 — Production Hardening

Installer improvements, CI enforcement, startup banner refresh. Zero breaking changes. Recommended production upgrade.

⚡ v1.5.0 — System Passthrough (Current)

103 commands, 11 modules, 30+ toolchain detection. Unknown commands pass through to system shell. Ultimate developer productivity terminal.

Installation (Legacy)
# 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)