deuscode 0.1.0__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.
deuscode-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
2
|
+
|
|
3
|
+
Full license text: https://www.gnu.org/licenses/agpl-3.0.txt
|
|
4
|
+
|
|
5
|
+
This program is free software: you can redistribute it and/or modify
|
|
6
|
+
it under the terms of the GNU Affero General Public License as published
|
|
7
|
+
by the Free Software Foundation, either version 3 of the License, or
|
|
8
|
+
(at your option) any later version.
|
deuscode-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deuscode
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AI-powered multi-agent CLI coding assistant for local LLMs
|
|
5
|
+
License: AGPL-3.0-or-later
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Requires-Dist: rich
|
|
9
|
+
Requires-Dist: typer
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# deuscode
|
|
13
|
+
|
|
14
|
+
[](https://www.gnu.org/licenses/agpl-3.0)
|
|
15
|
+
|
|
16
|
+
**deuscode** is an AI-powered multi-agent CLI coding assistant designed to run entirely on local LLMs — no cloud required, no data leaving your machine. It aims to bring agentic, context-aware code generation and editing to developers who value privacy and control. Think of it as a self-hosted, terminal-native coding co-pilot built for the open-source era.
|
|
17
|
+
|
|
18
|
+
> **Coming soon.** Active development is underway. Watch this space.
|
|
19
|
+
|
|
20
|
+
This project is licensed under the [GNU Affero General Public License v3.0 or later](LICENSE).
|
deuscode-0.1.0/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# deuscode
|
|
2
|
+
|
|
3
|
+
[](https://www.gnu.org/licenses/agpl-3.0)
|
|
4
|
+
|
|
5
|
+
**deuscode** is an AI-powered multi-agent CLI coding assistant designed to run entirely on local LLMs — no cloud required, no data leaving your machine. It aims to bring agentic, context-aware code generation and editing to developers who value privacy and control. Think of it as a self-hosted, terminal-native coding co-pilot built for the open-source era.
|
|
6
|
+
|
|
7
|
+
> **Coming soon.** Active development is underway. Watch this space.
|
|
8
|
+
|
|
9
|
+
This project is licensed under the [GNU Affero General Public License v3.0 or later](LICENSE).
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "deuscode"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "AI-powered multi-agent CLI coding assistant for local LLMs"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "AGPL-3.0-or-later" }
|
|
11
|
+
requires-python = ">=3.12"
|
|
12
|
+
dependencies = [
|
|
13
|
+
"typer",
|
|
14
|
+
"rich",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.scripts]
|
|
18
|
+
deus = "deuscode.main:app"
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["src/deuscode"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "0.1.0"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import typer
|
|
2
|
+
from rich.console import Console
|
|
3
|
+
|
|
4
|
+
app = typer.Typer()
|
|
5
|
+
console = Console()
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@app.command()
|
|
9
|
+
def main():
|
|
10
|
+
"""Deus - AI-powered multi-agent CLI coding assistant."""
|
|
11
|
+
console.print("[bold cyan]Deus v0.1.0[/bold cyan] [dim]- Coming soon[/dim]")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
if __name__ == "__main__":
|
|
15
|
+
app()
|