redgit 1.3.2__tar.gz → 1.3.3__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.
- {redgit-1.3.2/redgit.egg-info → redgit-1.3.3}/PKG-INFO +2 -2
- {redgit-1.3.2 → redgit-1.3.3}/README.md +1 -1
- {redgit-1.3.2 → redgit-1.3.3}/pyproject.toml +1 -1
- redgit-1.3.3/redgit/__init__.py +1 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/propose.py +455 -141
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/push.py +24 -5
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/scout.py +428 -3
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/config.py +1 -34
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/gitops.py +53 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/propose/display.py +44 -5
- redgit-1.3.3/redgit/prompts/commit/multi_task.md +77 -0
- {redgit-1.3.2 → redgit-1.3.3/redgit.egg-info}/PKG-INFO +2 -2
- redgit-1.3.2/redgit/__init__.py +0 -1
- redgit-1.3.2/redgit/prompts/commit/multi_task.md +0 -77
- {redgit-1.3.2 → redgit-1.3.3}/LICENSE +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/cli.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/backup.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/ci.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/config.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/daily.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/init.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/integration.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/notify.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/plugin.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/poker.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/quality.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/tap.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/tunnel.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/commands/webhook.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/backup.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/constants.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/llm.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/llm_providers.json +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/common/prompt.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/daily/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/daily/state.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/ai_voter.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/client.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/server.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/session.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/poker/ui.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/propose/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/propose/analysis.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/propose/commit.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/quality/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/quality/semgrep.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/scout/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/scout/team.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/tap/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/tap/manager.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/webhook/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/webhook/actions.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/core/webhook/server.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/integrations/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/integrations/base.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/integrations/registry.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/plugins/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/plugins/base.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/plugins/registry.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/commit/default.md +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/commit/minimal.md +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/commit/task_filtered.md +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/daily/default.md +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/prompts/quality/default.md +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/splash.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/__init__.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/console.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/dependency.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/editor.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/formatting.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/logging.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/notifications.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit/utils/security.py +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit.egg-info/SOURCES.txt +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit.egg-info/dependency_links.txt +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit.egg-info/entry_points.txt +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit.egg-info/requires.txt +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/redgit.egg-info/top_level.txt +0 -0
- {redgit-1.3.2 → redgit-1.3.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: redgit
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.3
|
|
4
4
|
Summary: AI-powered Git workflow assistant with task management integration
|
|
5
5
|
Author-email: Your Name <your.email@example.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -40,7 +40,7 @@ Requires-Dist: websockets>=12.0; extra == "poker"
|
|
|
40
40
|
Dynamic: license-file
|
|
41
41
|
|
|
42
42
|
<p align="center">
|
|
43
|
-
<img src="https://raw.githubusercontent.com/ertiz82/redgit/main/assets/logo.svg?v=1.3.
|
|
43
|
+
<img src="https://raw.githubusercontent.com/ertiz82/redgit/main/assets/logo.svg?v=1.3.3" alt="RedGit Logo" width="400"/>
|
|
44
44
|
</p>
|
|
45
45
|
|
|
46
46
|
<p align="center">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/ertiz82/redgit/main/assets/logo.svg?v=1.3.
|
|
2
|
+
<img src="https://raw.githubusercontent.com/ertiz82/redgit/main/assets/logo.svg?v=1.3.3" alt="RedGit Logo" width="400"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.3.3"
|