Skip to main content

Generating shell commands and code using natural language models (OpenAI ChatGPT).

Project description

Shell 🐢 Craft 🪡

PyPI version codecov

Generating shell commands and code using natural language models (OpenAI ChatGPT).

Shell Craft can:

  1. Generate shell commands from natural language requests.
  2. Write code in a dozen languages from natural language requests.
  3. Refactor existing code.
  4. Document existing code.
  5. Generate tests for existing code.
  6. Generate issue tickets and feature requests for GitHub, GitLab, and BitBucket.

Our goal is to 10x developer productivity by combining the power of natural language models with the power of the command line.

Installation

See the Wiki for installation instructions.

Command Line Interface

Shell Craft often follows the format of:

shell-craft --prompt <type> <request>

You can use the following command to get started:

shell-craft --help

See the Wiki for additional command line usage instructions.

See Prompt Types for a guide to the different --prompt options.

Python API

The following example shows how to use Shell Craft inside of your own Python code. The example loads your api key from an environment variable, uses the Bash prompt, and gets input from the user.

import os

from shell_craft.services import OpenAIService, OpenAISettings
from shell_craft.prompts import BASH_PROMPT

results = OpenAIService(
    OpenAISettings(
        api_key = os.environ.get("OPENAI_API_KEY"),
        model='gpt-3.5-turbo',
        count=1,
        temperature=0.0,
        messages=BASH_PROMPT.messages,
    )
).query(
    message = input("Enter your request: ")
)

print(results)

API Key

Shell Craft uses the OpenAI API to generate the shell commands, requiring an API key to give it access to an account with OpenAI.

Warning! API keys are sensitive information and should be kept confidential. Don't share your API key with anyone who shouldn't have access to it. Failure to do so may result in charges on your OpenAI account. Shell Craft never transmits this key to any service other than the official OpenAI API. Your API key is your responsibility.

To obtain an API key from the OpenAI platform, follow these steps:

  1. Go to https://platform.openai.com/account/api-keys in your web browser.
  2. Log in to your OpenAI account or create a new account if you don't have one.
  3. Click the "Create new secret key" button.
  4. Copy the key that is generated for you.

Once you have your API key, you must pass it to Shell Craft via one of the following methods.

Option 1 (Recommended) - Configuration file:

shell-craft looks for a configuration file in the following places, in order:

  • the current directory, named config.json
  • the file named by $SHELLCRAFT_CONFIG
  • $XDG_CONFIG_HOME/shell-craft/config.json
  • $HOME/.config/shell-craft/config.json

The contents are simple json:

{
    "openai_api_key": "<your secret key>"
}

Now, Shell Craft will know your API key in order to run future prompts without having to specify it or ensure it exists in the environmental variables.

Option 2 - Command Line Argument:

shell-craft "list all files in directory" --api-key API_KEY

Where API_KEY is your OpenAI API key.

Option 3 - Environment Variable:

export OPENAI_API_KEY=<your secret key>
shell-craft "list all files in directory"

Where <your secret key> is your OpenAI API key.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Acknowledgments contain a few of the people who have helped the project along the way.

  • OpenAI for their language models and API.
  • Joel Fourhman for the initial idea, the challenge, and the project name.
  • Chase Montgomery for testing, feedback, and estimated time savings vs manual implementation.
  • Bryan Gonzalez for powershell feedback and merge reviews.
  • Aaron Croissette for business use case feedback, documentation, and a lovely PyPi icon on the readme.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openai_shell_craft-1.1.0.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

openai_shell_craft-1.1.0-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

Details for the file openai_shell_craft-1.1.0.tar.gz.

File metadata

  • Download URL: openai_shell_craft-1.1.0.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for openai_shell_craft-1.1.0.tar.gz
Algorithm Hash digest
SHA256 6d4d05b362229c492dacee81cd70a61a529f81a4de0cbbe86de8947520b5e71c
MD5 fc93a0a497d66b3d4612ab9335a57a95
BLAKE2b-256 e9251dfc71bc33c66e30c559f7ae9450182804d902c98b275e5031b7363e7e39

See more details on using hashes here.

File details

Details for the file openai_shell_craft-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openai_shell_craft-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fb5900a1b4cd9eb11a7f5fe8640ab58627e0ad28ad9ec208a66ac9603d03f8d0
MD5 3de134cebda340c32060cf4b05e36d42
BLAKE2b-256 6a6ee6948805eccefa0b9ff4ff2c39c5348b86133282a3f1e036eafcf8905099

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page