devin-cli 0.0.3__tar.gz → 0.0.4__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.3 → devin_cli-0.0.4}/PKG-INFO +2 -2
- {devin_cli-0.0.3 → devin_cli-0.0.4}/README.md +1 -1
- {devin_cli-0.0.3 → devin_cli-0.0.4}/pyproject.toml +1 -1
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/cli.py +1 -1
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/config.py +4 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/.github/workflows/pypi-publish.yml +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/.gitignore +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/CHANGELOG.md +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/LICENSE +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/assets/logo.png +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/setup.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/__init__.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/__init__.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/attachments.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/client.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/knowledge.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/playbooks.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/secrets.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/src/devin_cli/api/sessions.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/__init__.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_api/test_attachments.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_api/test_knowledge.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_api/test_playbooks.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_api/test_secrets.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_api/test_sessions.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/tests/test_cli.py +0 -0
- {devin_cli-0.0.3 → devin_cli-0.0.4}/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.4
|
|
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,7 @@ 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?style=for-the-badge&color=0294DE" alt="PyPI version"></a>
|
|
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
45
|
<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
46
|
<a href="LICENSE"><img src="https://img.shields.io/github/license/revanthpobala/devin-cli?style=for-the-badge&color=0294DE" alt="License"></a>
|
|
47
47
|
<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,7 @@
|
|
|
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?style=for-the-badge&color=0294DE" alt="PyPI version"></a>
|
|
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
9
|
<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
10
|
<a href="LICENSE"><img src="https://img.shields.io/github/license/revanthpobala/devin-cli?style=for-the-badge&color=0294DE" alt="License"></a>
|
|
11
11
|
<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>
|
|
@@ -78,7 +78,7 @@ def configure(
|
|
|
78
78
|
|
|
79
79
|
config.api_token = token
|
|
80
80
|
config.base_url = base_url
|
|
81
|
-
console.print(f"[green]Token and Base URL saved to {config.
|
|
81
|
+
console.print(f"[green]Token and Base URL saved to {config.config_file}[/green]")
|
|
82
82
|
|
|
83
83
|
@app.command()
|
|
84
84
|
@handle_api_error
|
|
@@ -13,6 +13,10 @@ class Config:
|
|
|
13
13
|
self._ensure_config_exists()
|
|
14
14
|
self._load()
|
|
15
15
|
|
|
16
|
+
@property
|
|
17
|
+
def config_file(self) -> Path:
|
|
18
|
+
return self._config_file
|
|
19
|
+
|
|
16
20
|
def _ensure_config_exists(self):
|
|
17
21
|
if not self._config_dir.exists():
|
|
18
22
|
self._config_dir.mkdir(parents=True, mode=0o700)
|
|
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
|