Skip to main content

Generate shell commands using OpenAI models.

Project description

Shell Craft

PyPI version

Project for generating shell commands using OpenAI models.

How to install

  1. pip install openai-shell-craft

Command Line Interface

All command line usage follows the following format:

$ shell-craft <human request>

By default, Shell Craft will atempt to determine the prompt type based on the current shell (Powershell or Bash).

Shell Craft supports many prompt types, such as:
* Bash
* Powershell
* Feature Request

For additional help you can run:

```bash
$ shell-craft --help

Bash Example

$ shell-craft --prompt bash "find all swp files and delete them if theyre not in use"
find . -name '*.swp' -type f ! -exec fuser -s {} \; -delete

Powershell Example

$ shell-craft --prompt powershell "remove all files older than 30 days"
Get-ChildItem -Path "C:\your\path" -Recurse | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-30)} | Remove-Item -Force

Feature Request Example

$ shell_craft --prompt feature_request "add an icon that shows the total test coverage"
---

name: Add Total Test Coverage Icon
about: Add an icon that shows the total test coverage
labels: Enhancement

---

**Is your feature request related to a problem? Please describe.**
There is currently no easy way to visualize the total test coverage for a project.

**Describe the solution you'd like**
I would like to have an icon on the project dashboard that, when clicked, displays the total test coverage for the project. This will allow developers to easily monitor and improve the overall test coverage for the project.

**Describe alternatives you've considered**
As an alternative, I have considered adding the total test coverage to the project README file. However, this solution would not be as easily accessible as an icon on the project dashboard.

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 import Service
from shell_craft.prompts import BASH_PROMPT

Server(
    api_key = os.environ.get("OPENAI_API_KEY"),
    prompt = BASH_PROMPT,
).query(
    message = input("Enter your request: ")
)

API Key

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

Go to https://platform.openai.com/account/api-keys in your web browser.

Log in to your OpenAI account or create a new account if you don't have one.

Click the "Create new secret key" button.

Copy the key that is generated for you.

Decide how you want to use the key:

Note that API keys are sensitive information and should be kept confidential. Make sure you don't share your API key with anyone who shouldn't have access to it. Shell Craft uses the OpenAI API to generate the shell commands. You will need to create an account with OpenAI and get an API key. Once you have your API key, you can pass it to Shell Craft via command line argument, environment variable, or config file.

Option 1: Command Line Argument:

shell_craft prompt_type "human_request" --api-key API_KEY

Where prompt_type is the type of prompt you want to use, such as bash, powershell, or feature_request. human_request is the human readable request you want to convert to a shell command. API_KEY is your OpenAI API key.

Option 2: Environment Variable:

export OPENAI_API_KEY=<your secret key>
shell_craft bash "list all files in directory"

Option 3 (Recommended): Configuration file - config.json:

{
    "openai_api_key": "<your secret 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 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-0.2.0.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

openai_shell_craft-0.2.0-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for openai_shell_craft-0.2.0.tar.gz
Algorithm Hash digest
SHA256 79e96d78dbde01f17ef814e800a6e5d2794bd132d04bba432d6beca59498cd81
MD5 7800ff210013a841a56af5ea28992106
BLAKE2b-256 3d1012538b7665695031079a4fbd2fb6078aa83b9394096e49d610206a1c2528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for openai_shell_craft-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9a4ec29aeca728510dfbd9444718c179bcc318c2c7bc6f159d5ca1db72de5454
MD5 7925b730ba7d19d5a53b925e0ea7b637
BLAKE2b-256 e50a58a72dbdd501f23f7a5f820eefcaa2627e21dc05c317e51e6f3e43b48dc3

See more details on using hashes here.

Supported by

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