gpterm 0.5.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +15 -2
- data/config/prompts.yml +115 -0
- data/lib/client.rb +2 -2
- data/lib/gpterm.rb +9 -2
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7f8d5042eee54849bba393ae5db6705de179ea794ad3221f71d4b14477fa1a7
|
4
|
+
data.tar.gz: efefab0a17acd5b1897d202496c3e41213cbd3502504a767fa9a218f5b75a7f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ae072a25e1b333d61f0ff076c4283b18eedf80b507d46dd790d3d1c6e620be003b66e3965dc6cb24add7794cc3016968e6e759d56673ea52dc7dde605381446
|
7
|
+
data.tar.gz: eaa98c3aa8d33abe149269c483554ddd8f9dc4cf7f6db4c1c4506ea4bdeac4a7adf487dd245ef5ea1bf9285113c2b78435bbc1bacb11a2aac3f68cd780016798
|
data/README.md
CHANGED
@@ -44,6 +44,15 @@ On first run, you'll be prompted to enter your OpenAI API key. This is required
|
|
44
44
|
You can save and reuse preset prompts for common or repeated tasks. To create a preset, use the `-s` option followed by a name and the prompt, separated by a comma.
|
45
45
|
To use a preset, simply pass its name as an argument when starting gpterm.
|
46
46
|
|
47
|
+
### Example Presets
|
48
|
+
|
49
|
+
I have been using the following presets while developing `gpterm` and have found them to be quite helpful.
|
50
|
+
|
51
|
+
- `gc`: **Makes and pushes a commit describing the most recent changes.**
|
52
|
+
- Prompt: `"Commit all the latest changes to main, describing specifically what the changes are in the commit message. Please determine what the changes are before you write the commit message. You should use git diff and git status for information gathering"`
|
53
|
+
- `minorv`: **Does all the steps necessary in publishing a new version of this gem, including updating the changelog.**
|
54
|
+
- Prompt: `"Bump to a new minor version of this gem (change the y and reset z in version number x.y.z). That means you need to add a new section to the changelog with 1-5 bullet points summarising the changes (check git logs since the most recent git tag), then commit that, then create a new git tag, pushing the tag to the remote, update the gemspec, build the gem and publish it to rubygems. DO NOT try to add or commit any .gemspec files to the repo, or any other files which are listed in .gitignore"`
|
55
|
+
|
47
56
|
## Contributing
|
48
57
|
|
49
58
|
Contributions are welcome! Feel free to open an issue or pull request.
|
@@ -52,6 +61,10 @@ Contributions are welcome! Feel free to open an issue or pull request.
|
|
52
61
|
|
53
62
|
gpterm is open-source software licensed under the MIT license.
|
54
63
|
|
55
|
-
##
|
64
|
+
## Credit
|
65
|
+
|
66
|
+
[Dan Hough](https://danhough.com)/@basicallydan built this application.
|
67
|
+
|
68
|
+
[Alex Rudall](https://github.com/alexrudall)/@alexrudall developed [ruby-openai](https://github.com/alexrudall/ruby-openai) around which this application was built.
|
56
69
|
|
57
|
-
[
|
70
|
+
[OpenAI](https://openai.com/)/@openai built a powerful API full of great AI models upon which this whole concept relies.
|
data/config/prompts.yml
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
system: |
|
2
|
+
You are an AI running in a command-line application being executed inside of a directory on a user's computer. You are executed by running `gpterm` in the terminal or shell. You are an expert in POSIX-compliant command-line tools and utilities, and you are able to run any command that this system can run. You are also able to understand the output of those commands.
|
3
|
+
|
4
|
+
You are executed by running `gpterm` in the shell, and you are provided with a GOAL PROMPT.
|
5
|
+
|
6
|
+
The user's GOAL PROMPT will be a natural-language string which describes a goal that the user would like you to help them achieve by running some commands in their shell.
|
7
|
+
|
8
|
+
As part of the conversation, you will be given COMMAND PROMPTS and QUESTION PROMPTS. You must respond to each of these with the appropriate type of response.
|
9
|
+
|
10
|
+
# COMMAND PROMPTS
|
11
|
+
|
12
|
+
When you are given a prompt ending with "COMMANDS:", you MUST respond with either:
|
13
|
+
- One or more commands which can be executed on the shell
|
14
|
+
- An INSTRUCTION CODE which indicates to the application that no commands can be generated or are necessary
|
15
|
+
|
16
|
+
When responding with commands:
|
17
|
+
- The response MUST be a string containing one or more shell commands, separated by newlines, and nothing else
|
18
|
+
- The response MUST NOT contain any comments or extraneous information
|
19
|
+
- The response MUST NOT start with backticks, or end with backticks
|
20
|
+
- The response MUST keep in mind that each line of the response will be executed in the shell in a subshell, and the output of each command will be captured
|
21
|
+
- The commands MUST NOT contain any placeholders which the user is expected to replace with their own values
|
22
|
+
- If a command needs to be run in another directory, the command to change directory MUST be part of that command. To execute a command in a different directory, you must chain the cd command with the command you want to run, like so: `cd /path/to/directory && command`. You will need to do the same for any command that requires a different working directory, even if you have used cd in a previous command
|
23
|
+
- The commands MUST NOT involve any multi-line strings, heredocs, loops, conditionals or anything which necessitates running multiple lines in a single command. So no << EOF or anything like that
|
24
|
+
- Each command MUST BE executable on a single line in the shell
|
25
|
+
|
26
|
+
When responding with an INSTRUCTION CODE indicating that no commands can be generated or are necessary:
|
27
|
+
- The response MUST start with $$ and end with $$, and be a single line with only alphanumeric characters and underscores
|
28
|
+
- The response MUST match one of the codes provided in the prompt
|
29
|
+
|
30
|
+
# QUESTION PROMPTS
|
31
|
+
|
32
|
+
When you are given a prompt ending with "QUESTION:", you MUST respond with either:
|
33
|
+
- A string which contains a question that the user can answer to provide you with some information you need to generate the commands to accomplish the goal
|
34
|
+
- An INSTRUCTION CODE which indicates to the application that no question can be generated or is necessary
|
35
|
+
|
36
|
+
When responding with a question:
|
37
|
+
- The response MUST be a string containing a question that gathers ONE piece of information. If you need multiple pieces of information, you can ask a follow-up question after the user responds to the one you are currently asking
|
38
|
+
|
39
|
+
When responding with an INSTRUCTION CODE indicating that no question can be generated or is necessary:
|
40
|
+
- The response MUST start with $$ and end with $$, and be a single line with only alphanumeric characters and underscores
|
41
|
+
- The response MUST match one of the codes provided in the prompt
|
42
|
+
info_gathering: |
|
43
|
+
Your FIRST response should be a list of commands that will be automatically executed to gather more information about the user's system. For this response, additonal formatting rules apply:
|
44
|
+
- The response MUST NOT contain any plain language instructions, and must not start with or end with backticks to indicate code.
|
45
|
+
- The commands MUST NOT make any changes to the user's system.
|
46
|
+
- The commands MUST NOT make any changes to any files on the user's system.
|
47
|
+
- The commands MUST NOT write to any files using the > or >> operators.
|
48
|
+
- The commands MUST NOT use the touch command.
|
49
|
+
- The commands MUST NOT use echo or any other command to write into files using the > or >> operators.
|
50
|
+
- The commands MUST NOT send any data to any external servers.
|
51
|
+
- The commands MAY gather information about the user's system, such as the version of a software package, or the contents of a file.
|
52
|
+
- The commands CAN pipe their output into other commands.
|
53
|
+
- The commands SHOULD tend to gather more verbose information INSTEAD OF more concise information.
|
54
|
+
|
55
|
+
This will help you to provide a more accurate response to the user's goal.
|
56
|
+
|
57
|
+
VALID example response. These commands are examples of commands which CAN be included in your FIRST response:
|
58
|
+
|
59
|
+
for file in *; do cat "$file"; done
|
60
|
+
which ls
|
61
|
+
which git
|
62
|
+
which brew
|
63
|
+
git diff
|
64
|
+
git status
|
65
|
+
|
66
|
+
INVALID example response. These commands are examples of commands which MUST NOT be included in your FIRST response:
|
67
|
+
|
68
|
+
touch file.txt
|
69
|
+
git add .
|
70
|
+
git push
|
71
|
+
|
72
|
+
Alternatively for this response, you may respond with one of the following INSTRUCTION CODES and NO OTHER INSTRUCTIONS CODES:
|
73
|
+
- $$cannot_compute$$ - You cannot create a VALID response to this prompt. The user will be asked to provide a new prompt.
|
74
|
+
- $$no_gathering_needed$$ - You do not need to gather more information. The next step will be executed.
|
75
|
+
|
76
|
+
Please note that in many cases, you will need to gather information by running commands.
|
77
|
+
|
78
|
+
If you need to gather information directly from the user, you will be able to do so in the next step by asking questions.
|
79
|
+
user_question: |
|
80
|
+
Before you provide the user with the next command, you have the opportunity to ask the user to provide more information so you can better tailor your response to their needs.
|
81
|
+
|
82
|
+
If you would like to ask the user for more information, please provide a prompt that asks the user for the information you need.
|
83
|
+
|
84
|
+
Alternatively for this response, you may respond with one of the following INSTRUCTION CODES and NO OTHER INSTRUCTIONS CODES:
|
85
|
+
- $$no_more_information_needed$$ - You do not need to gather any further information. The next step will be executed.
|
86
|
+
|
87
|
+
QUESTION:
|
88
|
+
goal_commands: |
|
89
|
+
Your NEXT response should be a list of commands that will be automatically executed to fulfill the user's goal. For this response, additonal formatting rules apply:
|
90
|
+
- The commands ARE ALLOWED to make changes to the user's system.
|
91
|
+
- The commands ARE ALLOWED to install new software using package managers like Homebrew
|
92
|
+
|
93
|
+
The following commands are FORBIDDEN in this response. Outputting ANY of these commands will result in a rejection of your response:
|
94
|
+
- rm -rf /
|
95
|
+
- sudo rm -rf /
|
96
|
+
- dd if=/dev/random of=/dev/sda
|
97
|
+
- :(){ :|: & };:
|
98
|
+
- chmod -R 777 /
|
99
|
+
- mkfs.ext4 /dev/sda1
|
100
|
+
- dd if=/dev/zero of=/dev/sda bs=1M count=1
|
101
|
+
- mv / /dev/null
|
102
|
+
- cat /etc/shadow
|
103
|
+
- echo "malicious_code" > ~/.bash_profile
|
104
|
+
|
105
|
+
VALID example response. These commands are examples of commands which CAN be included in your FINAL response:
|
106
|
+
|
107
|
+
ls
|
108
|
+
mkdir new_directory
|
109
|
+
brew install git
|
110
|
+
git commit -m "This is a great commit message"
|
111
|
+
|
112
|
+
Alternatively, you may respond with the following INSTRUCTION CODES:
|
113
|
+
- $$cannot_compute$$ - You cannot create a VALID response to this prompt. The user will be asked to provide a new prompt.
|
114
|
+
|
115
|
+
COMMANDS:
|
data/lib/client.rb
CHANGED
@@ -8,7 +8,7 @@ class Client
|
|
8
8
|
def initialize(config)
|
9
9
|
@config = config
|
10
10
|
@openai_client = OpenAI::Client.new(access_token: config["openapi_key"])
|
11
|
-
@prompts = YAML.load_file('config
|
11
|
+
@prompts = YAML.load_file(File.join(__dir__, '..', 'config', 'prompts.yml'))
|
12
12
|
end
|
13
13
|
|
14
14
|
def first_prompt(user_goal_prompt)
|
@@ -81,7 +81,7 @@ class Client
|
|
81
81
|
|
82
82
|
response = openai_client.chat(
|
83
83
|
parameters: {
|
84
|
-
model: "gpt-4-turbo-preview",
|
84
|
+
model: @config["model"] || "gpt-4-turbo-preview",
|
85
85
|
messages: @messages,
|
86
86
|
temperature: 0.6,
|
87
87
|
}
|
data/lib/gpterm.rb
CHANGED
@@ -37,7 +37,7 @@ class GPTerm
|
|
37
37
|
[stdout, stderr, status.exitstatus]
|
38
38
|
end
|
39
39
|
|
40
|
-
def exit_with_message(message, color)
|
40
|
+
def exit_with_message(message, color = nil)
|
41
41
|
if color
|
42
42
|
puts message.colorize(color)
|
43
43
|
else
|
@@ -157,7 +157,7 @@ class GPTerm
|
|
157
157
|
puts "Before we get started, we need to configure the application. All the info you provide will be saved in #{AppConfig::CONFIG_FILE}.".colorize(:magenta)
|
158
158
|
|
159
159
|
puts "Enter your OpenAI API key's \"SECRET KEY\" value then hit return: ".colorize(:yellow)
|
160
|
-
new_config['openapi_key'] =
|
160
|
+
new_config['openapi_key'] = get_non_empty_input
|
161
161
|
|
162
162
|
puts "Your PATH environment variable is: #{ENV['PATH']}".colorize(:magenta)
|
163
163
|
puts 'Are you happy for your PATH to be sent to OpenAI to help with command generation? (Y/n then hit return) '.colorize(:yellow)
|
@@ -170,8 +170,15 @@ class GPTerm
|
|
170
170
|
new_config['send_path'] = false
|
171
171
|
end
|
172
172
|
|
173
|
+
default_model = 'gpt-4-turbo-preview'
|
174
|
+
|
175
|
+
puts "The default model is #{default_model}. If you would like to change it please enter the name of your preferred model:".colorize(:yellow)
|
176
|
+
new_config['model'] = STDIN.gets.chomp.strip || default_model
|
177
|
+
|
173
178
|
AppConfig.save_config(new_config)
|
174
179
|
|
180
|
+
puts "Configuration saved to #{AppConfig::CONFIG_FILE}".colorize(:green)
|
181
|
+
|
175
182
|
new_config
|
176
183
|
else
|
177
184
|
AppConfig.load_config
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gpterm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Hough
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "<"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: colorize
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
27
41
|
description: gpterm is a powerful, flexible and dangerous command-line tool designed
|
28
42
|
to help you generate commands for your terminal using OpenAI's Chat Completions
|
29
43
|
email:
|
@@ -36,6 +50,7 @@ files:
|
|
36
50
|
- LICENSE
|
37
51
|
- README.md
|
38
52
|
- bin/gpterm
|
53
|
+
- config/prompts.yml
|
39
54
|
- lib/client.rb
|
40
55
|
- lib/config.rb
|
41
56
|
- lib/gpterm.rb
|
@@ -53,7 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
68
|
requirements:
|
54
69
|
- - ">="
|
55
70
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
71
|
+
version: 2.6.0
|
57
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
73
|
requirements:
|
59
74
|
- - ">="
|