aicli 0.2.6 → 0.2.8
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 +4 -23
- data/lib/aicli/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a63ca399cecdf79d247289bf218eb22fc947f9410c617de4d521cecab6a56094
|
|
4
|
+
data.tar.gz: fbedd7d7fda81a16ee62da7d8854fe482f53493cf0e658a278e33b43eedc7b27
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d1c316e7df67f511941fe7d6b8ba25750bafea1308c1c503c3a4a77c64d0fa69e03520fb9498f38a9fb1de9e5384088284b470754509ee2a096916cb0d70ecd
|
|
7
|
+
data.tar.gz: 036d4c36bd4c49918d9841dea794c31c79f691713e9db566a6e2bac47adc087f45beae7a4f3fae2f9faa461fea23761d6cc465b2c9eb588e76f6d119e3c707cf
|
data/README.md
CHANGED
|
@@ -1,23 +1,8 @@
|
|
|
1
|
-
<h2 align="center">
|
|
2
|
-
<picture>
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://cdn.builder.io/api/v1/image/assets%2FYJIGb4i01jvw0SRdL5Bt%2Fb5b9997cec2c4fffb3e5c5e9bb4fed7d">
|
|
4
|
-
<img width="300" alt="aicli logo" src="https://cdn.builder.io/api/v1/image/assets%2FYJIGb4i01jvw0SRdL5Bt%2Fb7f9d2d9911a4199a9d26f8ba210b3f8">
|
|
5
|
-
</picture>
|
|
6
|
-
</h2>
|
|
7
|
-
|
|
8
|
-
<h4 align="center">
|
|
9
|
-
A CLI that converts natural language to shell commands.
|
|
10
|
-
</h4>
|
|
11
|
-
|
|
12
|
-
<p align="center">
|
|
13
|
-
Inspired by the <a href="https://githubnext.com/projects/copilot-cli">GitHub Copilot X CLI</a>, but open source for everyone.
|
|
14
|
-
</p>
|
|
15
|
-
|
|
16
|
-
<br>
|
|
17
|
-
|
|
18
1
|
# aicli
|
|
19
2
|
|
|
20
|
-
|
|
3
|
+
Natural language to live shell commands — OpenAI & Anthropic.
|
|
4
|
+
|
|
5
|
+
Chat with the model and run suggested commands in your shell in one seamless flow.
|
|
21
6
|
|
|
22
7
|
## Setup
|
|
23
8
|
|
|
@@ -203,8 +188,4 @@ I am not a bash wizard, and am dying for access to the copilot CLI, and got impa
|
|
|
203
188
|
|
|
204
189
|
## Credit
|
|
205
190
|
|
|
206
|
-
|
|
207
|
-
- Inspired by [BuilderIO/ai-shell](https://github.com/BuilderIO/ai-shell)
|
|
208
|
-
- Thanks to GitHub Copilot for their amazing tools and the idea for this
|
|
209
|
-
- Thanks to Hassan and his work on [aicommits](https://github.com/Nutlope/aicommits), which inspired the workflow and some parts of the code and flows
|
|
210
|
-
- Original Node.js implementation by [Builder.io](https://www.builder.io)
|
|
191
|
+
Started from [BuilderIO/ai-shell](https://github.com/BuilderIO/ai-shell) (MIT; copyright Builder.io 2023).
|
data/lib/aicli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aicli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antonio Molinari
|
|
@@ -93,8 +93,9 @@ dependencies:
|
|
|
93
93
|
- - "~>"
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
95
|
version: '0.9'
|
|
96
|
-
description: aicli turns natural language
|
|
97
|
-
the
|
|
96
|
+
description: aicli turns natural language into runnable shell commands using OpenAI
|
|
97
|
+
or Anthropic. Chat with the model and execute suggested commands live in your shell
|
|
98
|
+
in one seamless flow.
|
|
98
99
|
email:
|
|
99
100
|
- antoniomolinari@me.com
|
|
100
101
|
executables:
|
|
@@ -166,5 +167,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
166
167
|
requirements: []
|
|
167
168
|
rubygems_version: 4.0.17
|
|
168
169
|
specification_version: 4
|
|
169
|
-
summary:
|
|
170
|
+
summary: Natural language to live shell commands, with OpenAI and Anthropic.
|
|
170
171
|
test_files: []
|