⌨️
🦾
Zsh Codex
AI in the command line.
You just need to write a comment or variable name and the AI will write the corresponding code.
What is it?
This is a ZSH plugin that enables you to use OpenAI's powerful Codex AI in the command line. OpenAI Codex is the AI that also powers GitHub Copilot. To use this plugin you need to get access to OpenAI's Codex API.
How do I install it?
- Download the ZSH plugin.
$ git clone https://github.com/tom-doerr/zsh_codex.git ~/.oh-my-zsh/plugins/
- Add the following to your
.zshrc
file.
plugins=(zsh_codex)
bindkey '^X' create_completion
- Create a file called
openaiapirc
in~/.config
with your ORGANIZATION_ID and SECRET_KEY.
[openai]
organization_id = ...
secret_key = ...
- Run
zsh
, start typing and complete it using^X
!