Skip to content

Is a minimal, powerful AI assistant in your console

License

Notifications You must be signed in to change notification settings

dfinke/PShell-AI

Repository files navigation

alt text

PShell-AI

pshell-ai-demo

"Ten minutes of Googling is now ten seconds in the terminal."

~ John D.

About

For developers, referencing things online is inevitable – but one can only look up "how to do [X] in docker or git" so many times before losing your mind.

Install

Install-Module PShell-AI

Usage

Configuration

Set your OpenAI API key.

Note: Make sure you add credits to your account. Otherwise you only get back blank responses.

$env:OpenAIKey='[your-key]'

Features

  • Generate shell commands from a description.
  • Reference code snippets for any programming language.
  • Fast, minimal UI.
  • Auto-extract code from response and copy to clipboard.
  • Follow up to refine command or explanation.
  • Concise, helpful responses.

Enhanced Display

If you install PwshSpectreConsole you will get a better display of the responses.

Install-Module PwshSpectreConsole

alt text

Examples

Shell Commands

q make a new git branch
git branch new-branch
q find files that contain "administrative" in the name
Get-ChildItem -Path "C:\Path\To\Search" -Filter "*administrative*" -Recurse

Code Snippets

q initialize a static map in golang
    staticMap := map[string]int{
        "apple":  1,
        "banana": 2,
        "cherry": 3,
    }
q greet fn in PowerShell
function Greet {
    param (
        [string]$Name = "Guest"
    )
    Write-Host "Hello, $Name! Welcome to PowerShell!"
}
q create a generator function in python for dates
from datetime import datetime, timedelta

def date_generator(start_date, end_date):
    current_date = start_date
    while current_date <= end_date:
        yield current_date
        current_date += timedelta(days=1)

About

Is a minimal, powerful AI assistant in your console

Resources

License

Stars

Watchers

Forks

Packages

No packages published