gpterm 0.4.1 → 0.4.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/client.rb +2 -2
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e77a65025792f307da8e9cbc3d152c805ac99693ec166aefb34daf33e03342a1
4
- data.tar.gz: a60503f8eccdb64bce12bbc04190b9f56607d3ee55dcbfbfe9ac270162fdf97b
3
+ metadata.gz: 4c034c1090bea2a09ffb99c7e44c5246a600ead24bff1eebcbfd200ef0c35008
4
+ data.tar.gz: 300c572c96cb84a04cdff33a8f292a515de1deb0dfd28df0f3a4a0a2da3c63e2
5
5
  SHA512:
6
- metadata.gz: edccfb30f83becb981042ee7c533fc4ad3754fac9fc6a9dd70d2b51fa7055abe1c09ee52fb814612c16dc0926fa72be53cfba563a76c9b00cef3bd202ec986e1
7
- data.tar.gz: acde43696b1afc0f762d6b34a5a6a6fdde5e150a849f269e1b9fc8abf68c17dea4f6e6cbbb90146c10240cfa3d95765e31d18830c61c114e6b667624632c90c0
6
+ metadata.gz: ef3454943ee1cb69788e4365d23f7fae99acd8eaf2b5278041677cad1b6caa7465df9d099d8ac616c900fba58f4c23a8756a77e1f69a9c46a0b2ff67d3b344e6
7
+ data.tar.gz: 067fe2e8b6405f8634fcc1d1d63bab4c66752280d472f0b9e59bfdaf102f338835b53827ca1d9d9438daabbe0872c35966c72c57bee5aa658922842ba9ff8184
data/lib/client.rb CHANGED
@@ -21,7 +21,7 @@ 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`.
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`. 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.
25
25
 
26
26
  The user is trying to accomplish a task using the terminal, but they are not sure how to do it.
27
27
  PROMPT
@@ -35,6 +35,7 @@ class Client
35
35
 
36
36
  full_prompt = <<~PROMPT
37
37
  Your FIRST response should be a list of commands that will be automatically executed to gather more information about the user's system.
38
+ - The response MUST NOT contain any plain language instructions, and must not start with or end with backticks to indicate code.
38
39
  - The commands MUST NOT make any changes to the user's system.
39
40
  - The commands MUST NOT make any changes to any files on the user's system.
40
41
  - The commands MUST NOT write to any files using the > or >> operators.
@@ -42,7 +43,6 @@ class Client
42
43
  - The commands MUST NOT use echo or any other command to write into files using the > or >> operators.
43
44
  - The commands MUST NOT send any data to any external servers.
44
45
  - The commands MUST NOT contain any placeholders in angle brackets like <this>.
45
- - The commands MUST NOT contain any plain language instructions, or backticks indicating where the commands begin or end.
46
46
  - The commands MAY gather information about the user's system, such as the version of a software package, or the contents of a file.
47
47
  - The commands CAN pipe their output into other commands.
48
48
  - The commands SHOULD tend to gather more verbose information INSTEAD OF more concise information.
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.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Hough