Orphic

A natural language interface for *nix systems.


Overview

Orphic uses GPT to translate natural language tasks into shell commands, and then executes them on your system. Use at your own risk.

Installation

Usage

Orphic is designed to be used like you would use any other CLI tool. $ orphic sort ~/Downloads into folders based on media type

$ orphic how strong is my network connection

$ orphic what version kernel am i running

$ orphic <do task that would otherwise require complex commands that you don't know off the top of your head>

-i or --interpret will describe the output of the task in natural language (note that this is generally very slow). $ orphic -i how much disk space is available You have 16GB available out of a total of 113GB on your main hard drive, which is mounted on the root directory. Other partitions and file systems are also listed with their respective usage percentages and mount points.

-d or --debug will display the raw GPT text along with the regular output. $ orphic count the lines of rust code in this directory excluding /target/. {"command": "find . -name target -prune -o -name '*.rs' -type f -print0 | xargs -0 wc -l"} 61 ./src/prompts.rs 219 ./src/main.rs 280 total

-r or --repl will start Orphic in a REPL environment. $ orphic -r orphic> when did i last login wtmp begins Sat Mar 18 14:55 orphic> quit $

Usage tips and observations

Sometimes Orphic works. Sometimes it doesn't. GPT is inconsistent, and the prompts that I'm using leave a lot to be desired. Results seem to be better if you format your task as a command instead of a question ("list the currently open ports" instead of "what ports are currently open"). An error that often arises is that GPT will try to use commands or packages for a different OS/distribution, or will try to use tools that you don't currently have installed. A quick fix is to specify your OS if you think the task will require OS-specific tools, but I'm working on making Orphic more aware of which commands are at its disposal and which are not.

Contributing

Pull requests welcome. If you use Orphic and get a good/interesting output, please send it to me. Likewise, if you get a really bad output, please also send it to me or open an issue. This system is very experimental and I'm still trying to figure out what works and what doesn't when it comes to prompts and configurations.

License

MIT

Copyright (c) Will Savage, 2023