claurst is an open-source terminal-based AI coding assistant developed by Kuberwastaken and community contributors. Built with a focus on fast native performance and lightweight resource consumption, the tool is packaged for cross-platform terminal workflows across Linux, macOS, and Windows environments. In day-to-day development, claurst operates directly inside shell environments as a command-line interface and terminal user interface. Users interact with language models to inspect repositories, generate code, refactor existing files, and execute workspace tasks. The tool integrates into standard terminal environments including native shells, Git Bash, MSYS, and development containers via preconfigured `.devcontainer` and `.claurst` workspace configurations. What differentiates claurst is its multi-channel distribution model and portable architecture. It provides automated platform-native shell installers (`install.sh` and `install.ps1`), checksum-verified standalone binary artifacts, and an NPM distribution wrapper for teams maintaining Node.js tooling chains. claurst is distributed as open-source software under continuous community development on GitHub, providing free access to the CLI binaries with model usage depending on configured API provider credentials.
Tags: ai agent, cli, code assistant, coding agent, developer tools, OpenSource
install.sh and install.ps1) with built-in SHA256 checksum verification. - Git Bash and Windows Support — Native Windows support with aligned install paths across Command Prompt, PowerShell, and Git Bash/MSYS environments. - NPM Package Distribution — Available as an executable CLI package via npm for JavaScript and TypeScript development setups. - GitHub Token Authentication — Supports GITHUB_TOKEN and GH_TOKEN environment variables for handling release API rate limits and private assets. - Dev Container Integration — Includes .devcontainer configuration for isolated development and repeatable team environments. - Project Configuration Directory — Uses a dedicated .claurst project-level directory to store workspace-specific settings and dependencies..devcontainer integration and project configs.claurst is suited for developers and DevOps engineers who prioritize terminal-native coding workflows, fast standalone binaries, and lightweight system footprints. It is particularly useful for engineers working across mixed operating systems and containerized dev environments. It is less suited for developers who require deep graphical IDE integrations or visual visualizers.
bash curl -fsSL https://raw.githubusercontent.com/Kuberwastaken/claurst/main/scripts/install.sh | bash On Windows via PowerShell: powershell irm https://raw.githubusercontent.com/Kuberwastaken/claurst/main/scripts/install.ps1 | iex Alternatively, install via npm: bash npm install -g claurstbash export ANTHROPIC_API_KEY="your-api-key-here" claurst --helpbash cd my-project claurst Within the prompt, ask the agent to inspect and modify code: text > Analyze the repository structure and add unit tests for the authentication handler in src/auth.rsPart of CLI Coding Agents
Categories: AI Coding Agents, Code Assistants, Developer Tools