gpterm 0.3.0 → 0.4.1
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/lib/client.rb +2 -0
- data/lib/gpterm.rb +31 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e77a65025792f307da8e9cbc3d152c805ac99693ec166aefb34daf33e03342a1
|
4
|
+
data.tar.gz: a60503f8eccdb64bce12bbc04190b9f56607d3ee55dcbfbfe9ac270162fdf97b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edccfb30f83becb981042ee7c533fc4ad3754fac9fc6a9dd70d2b51fa7055abe1c09ee52fb814612c16dc0926fa72be53cfba563a76c9b00cef3bd202ec986e1
|
7
|
+
data.tar.gz: acde43696b1afc0f762d6b34a5a6a6fdde5e150a849f269e1b9fc8abf68c17dea4f6e6cbbb90146c10240cfa3d95765e31d18830c61c114e6b667624632c90c0
|
data/lib/client.rb
CHANGED
@@ -21,6 +21,8 @@ class Client
|
|
21
21
|
|
22
22
|
You have the ability to run any command that this system can run, and you can read the output of those commands.
|
23
23
|
|
24
|
+
However, any command which would ordinarily change the directory, such as cd, will not change the location of the directory in which you are running. 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`.
|
25
|
+
|
24
26
|
The user is trying to accomplish a task using the terminal, but they are not sure how to do it.
|
25
27
|
PROMPT
|
26
28
|
|
data/lib/gpterm.rb
CHANGED
@@ -1,9 +1,17 @@
|
|
1
1
|
require 'optparse'
|
2
2
|
require 'colorize'
|
3
|
+
require 'open3'
|
3
4
|
|
4
5
|
require_relative 'config'
|
5
6
|
require_relative 'client'
|
6
7
|
|
8
|
+
# The colours work like this:
|
9
|
+
# - Output from STDOUT or STDERR is default
|
10
|
+
# - For the final command, if STDERR is there and the exit code is non-zero, it's red
|
11
|
+
# - Statements from this app are magenta
|
12
|
+
# - Questions from this app are yellow
|
13
|
+
# - Messages from the OpenAI API are blue
|
14
|
+
|
7
15
|
class GPTerm
|
8
16
|
def initialize
|
9
17
|
@config = load_config
|
@@ -25,6 +33,11 @@ class GPTerm
|
|
25
33
|
|
26
34
|
private
|
27
35
|
|
36
|
+
def execute_command(command)
|
37
|
+
stdout, stderr, status = Open3.capture3(command)
|
38
|
+
[stdout, stderr, status.exitstatus]
|
39
|
+
end
|
40
|
+
|
28
41
|
def start_prompt(prompt)
|
29
42
|
message = @client.first_prompt(prompt)
|
30
43
|
|
@@ -49,8 +62,10 @@ class GPTerm
|
|
49
62
|
puts 'Running command...'
|
50
63
|
output = `#{message}`
|
51
64
|
|
52
|
-
|
53
|
-
|
65
|
+
if @config[:verbose]
|
66
|
+
puts 'Output:'
|
67
|
+
puts output
|
68
|
+
end
|
54
69
|
end
|
55
70
|
|
56
71
|
output = offer_more_information(output)
|
@@ -84,10 +99,21 @@ class GPTerm
|
|
84
99
|
exit
|
85
100
|
end
|
86
101
|
|
87
|
-
|
102
|
+
commands = message.split("\n")
|
88
103
|
|
89
|
-
|
90
|
-
|
104
|
+
commands.each do |command|
|
105
|
+
stdout, stderr, exit_status = execute_command(command)
|
106
|
+
if exit_status != 0
|
107
|
+
puts "#{command} failed with the following output:".colorize(:red)
|
108
|
+
puts "#{stderr.gsub(/^/, " ")}".colorize(:red) if stderr.length > 0
|
109
|
+
puts " Exit status: #{exit_status}".colorize(:red)
|
110
|
+
exit
|
111
|
+
end
|
112
|
+
puts stdout if stdout.length > 0
|
113
|
+
# I'm doing this here because git for some reason always returns the output of a push to stderr,
|
114
|
+
# even if it's successful. I don't want to show the output of a successful push as an error.
|
115
|
+
puts stderr if stderr.length > 0
|
116
|
+
end
|
91
117
|
end
|
92
118
|
|
93
119
|
def load_config
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gpterm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Hough
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-openai
|