devin-cli 0.0.4__tar.gz → 0.0.6__tar.gz
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.
- {devin_cli-0.0.4 → devin_cli-0.0.6}/PKG-INFO +1 -2
- {devin_cli-0.0.4 → devin_cli-0.0.6}/README.md +0 -1
- {devin_cli-0.0.4 → devin_cli-0.0.6}/pyproject.toml +1 -1
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/cli.py +3 -3
- {devin_cli-0.0.4 → devin_cli-0.0.6}/.github/workflows/pypi-publish.yml +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/.gitignore +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/CHANGELOG.md +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/LICENSE +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/assets/logo.png +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/setup.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/__init__.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/__init__.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/attachments.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/client.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/knowledge.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/playbooks.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/secrets.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/api/sessions.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/src/devin_cli/config.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/__init__.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_api/test_attachments.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_api/test_knowledge.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_api/test_playbooks.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_api/test_secrets.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_api/test_sessions.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_cli.py +0 -0
- {devin_cli-0.0.4 → devin_cli-0.0.6}/tests/test_config.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devin-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Unofficial CLI for Devin AI - The first AI Software Engineer
|
|
5
5
|
Project-URL: Homepage, https://github.com/revanthpobala/devin-cli
|
|
6
6
|
Project-URL: Repository, https://github.com/revanthpobala/devin-cli.git
|
|
@@ -41,7 +41,6 @@ Description-Content-Type: text/markdown
|
|
|
41
41
|
# Devin CLI (Unofficial) — The Professional Terminal Interface for Devin AI
|
|
42
42
|
|
|
43
43
|
<p align="center">
|
|
44
|
-
<a href="https://pypi.org/project/devin-cli/"><img src="https://img.shields.io/pypi/v/devin-cli.svg?style=for-the-badge&color=0294DE" alt="PyPI version"></a>
|
|
45
44
|
<a href="https://github.com/revanthpobala/devin-cli/actions/workflows/pypi-publish.yml"><img src="https://github.com/revanthpobala/devin-cli/actions/workflows/pypi-publish.yml/badge.svg" alt="Build Status"></a>
|
|
46
45
|
<a href="LICENSE"><img src="https://img.shields.io/github/license/revanthpobala/devin-cli?style=for-the-badge&color=0294DE" alt="License"></a>
|
|
47
46
|
<a href="https://github.com/revanthpobala/devin-cli/stargazers"><img src="https://img.shields.io/github/stars/revanthpobala/devin-cli?style=for-the-badge&color=FAD000" alt="GitHub stars"></a>
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
# Devin CLI (Unofficial) — The Professional Terminal Interface for Devin AI
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<a href="https://pypi.org/project/devin-cli/"><img src="https://img.shields.io/pypi/v/devin-cli.svg?style=for-the-badge&color=0294DE" alt="PyPI version"></a>
|
|
9
8
|
<a href="https://github.com/revanthpobala/devin-cli/actions/workflows/pypi-publish.yml"><img src="https://github.com/revanthpobala/devin-cli/actions/workflows/pypi-publish.yml/badge.svg" alt="Build Status"></a>
|
|
10
9
|
<a href="LICENSE"><img src="https://img.shields.io/github/license/revanthpobala/devin-cli?style=for-the-badge&color=0294DE" alt="License"></a>
|
|
11
10
|
<a href="https://github.com/revanthpobala/devin-cli/stargazers"><img src="https://img.shields.io/github/stars/revanthpobala/devin-cli?style=for-the-badge&color=FAD000" alt="GitHub stars"></a>
|
|
@@ -19,7 +19,7 @@ import sys
|
|
|
19
19
|
app = typer.Typer(help="Unofficial CLI for Devin AI", no_args_is_help=True)
|
|
20
20
|
console = Console()
|
|
21
21
|
|
|
22
|
-
ASCII_LOGO = """
|
|
22
|
+
ASCII_LOGO = r"""
|
|
23
23
|
[bold cyan]
|
|
24
24
|
____ _ _________ ____
|
|
25
25
|
/ __ \___ _ __(_)___ / ____/ / / _/
|
|
@@ -29,8 +29,8 @@ ASCII_LOGO = """
|
|
|
29
29
|
[/bold cyan]
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
-
# Show logo on main help
|
|
33
|
-
if len(sys.argv)
|
|
32
|
+
# Show logo on main help or empty args
|
|
33
|
+
if len(sys.argv) == 1 or (len(sys.argv) == 2 and sys.argv[1] in ["--help", "-h"]):
|
|
34
34
|
console.print(ASCII_LOGO)
|
|
35
35
|
|
|
36
36
|
@app.callback()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|