AI Shell - AI Developer Tools Tool

Overview

AI Shell is an interactive, open-source CLI that brings conversational AI assistants (called agents) directly into the terminal, either as a standalone executable or tightly integrated with PowerShell 7 for a side-by-side experience. The project ships a modular agent framework (examples: openai-gpt and azure agents) and agent-specific commands to query models, render Markdown, generate code, and insert that code back into an active PowerShell session; it was published as a public preview with downloadable executables for Windows, macOS, and Linux. ([github.com](https://github.com/PowerShell/AIShell?utm_source=openai)) AI Shell focuses on developer productivity in the shell by offering built-in chat commands (for example /code, /agent, /like, /retry), hotkeys to copy/post generated code into PowerShell, and an extensible agent API so teams can add connectors (e.g., Ollama, Azure OpenAI, local/model-context protocol servers). The project required PowerShell 7.4+ for integration and .NET SDK 8 to build from source; it was actively developed through multiple preview releases but the repository was archived by the maintainers on Jan 30, 2026. ([github.com](https://github.com/PowerShell/AIShell?utm_source=openai))

GitHub Statistics

  • Stars: 516
  • Forks: 72
  • Contributors: 17
  • License: MIT
  • Primary Language: C#
  • Last Updated: 2026-01-30T21:36:23Z

Repository activity shows a Microsoft-hosted open-source project with notable community interest but limited long-term maintenance: the GitHub repo reports roughly 516 stars and 72 forks and was archived (read-only) on Jan 30, 2026. Recent commit history and release tags indicate multiple preview releases (v1.0.0-preview.x) and feature-focused previews (MCP client support, tooling improvements) prior to archiving. The codebase is MIT-licensed; building locally requires PowerShell 7.4+ and .NET SDK 8, and release artifacts are provided for win/osx/linux. Community engagement included ~40–45 open issues and discussion threads during preview, with contributions from a small group of maintainers and contributors. ([github.com](https://github.com/PowerShell/AIShell/commits/main))

Installation

Install via brew:

Invoke-Expression "& { $(Invoke-RestMethod 'https://aka.ms/install-aishell.ps1') }"  # official PowerShell install script (Windows/PowerShell).
winget install Microsoft.AIShell  # Windows winget package (community/third-party installer examples).
Install-PSResource -Name AIShell -Scope CurrentUser -Prerelease  # PowerShell module install for side-by-side integration.
git clone https://github.com/PowerShell/AIShell && Import-Module ./build.psm1 && Start-Build  # build from source (requires PowerShell 7.4+, .NET SDK 8).

Key Features

  • Multi-agent framework: plug in openai-gpt, azure, ollama, interpreter agents (and custom agents).
  • Two modes: standalone executable (aish) or side-by-side PowerShell 7 integration.
  • Chat-style commands (/code, /agent, /like, /retry) for managing responses and feedback.
  • Insert generated code into PowerShell with /code post and hotkey shortcuts.
  • Markdown rendering and syntax-highlighted code blocks inside the terminal UI.

Community

AI Shell attracted attention during its public-preview cycle (multiple preview releases, blog posts, and press coverage), but the upstream repository was archived on Jan 30, 2026 and marked read-only. The project accumulated several hundred stars and dozens of forks, and community feedback was collected via GitHub Issues and the PowerShell blog announcement threads. Because the repo is archived, active development and support channels are limited; users should consult the repo README, release notes, and PowerShell team blog posts for archived documentation and migration guidance. ([github.com](https://github.com/PowerShell/AIShell/commits/main))

Last Refreshed: 2026-02-24

Key Information

  • Category: Developer Tools
  • Type: AI Developer Tools Tool