ace-git-copilot 0.2.0__tar.gz → 0.2.1__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.
Files changed (56) hide show
  1. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/PKG-INFO +1 -1
  2. ace_git_copilot-0.2.1/ace/__init__.py +1 -0
  3. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/cli.py +3 -2
  4. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/pyproject.toml +1 -1
  5. ace_git_copilot-0.2.0/ace/__init__.py +0 -1
  6. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/.env.example +0 -0
  7. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/.github/workflows/tests.yml +0 -0
  8. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/.gitignore +0 -0
  9. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/README.md +0 -0
  10. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/__main__.py +0 -0
  11. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/changelog_generator.py +0 -0
  12. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/code_reviewer.py +0 -0
  13. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/commit_generator.py +0 -0
  14. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/conflict_resolver.py +0 -0
  15. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/gitignore_generator.py +0 -0
  16. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/history_analyzer.py +0 -0
  17. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/intent_parser.py +0 -0
  18. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/llm_factory.py +0 -0
  19. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/pr_drafter.py +0 -0
  20. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/changelog.py +0 -0
  21. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/commit.py +0 -0
  22. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/conflict.py +0 -0
  23. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/explain.py +0 -0
  24. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/ignore.py +0 -0
  25. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/intent.py +0 -0
  26. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/pr.py +0 -0
  27. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/review.py +0 -0
  28. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/search.py +0 -0
  29. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ai/prompts/undo.py +0 -0
  30. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/core/config.py +0 -0
  31. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/core/context.py +0 -0
  32. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/core/git_ops.py +0 -0
  33. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/core/safety.py +0 -0
  34. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ui/banner.py +0 -0
  35. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ui/dashboard.py +0 -0
  36. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ui/display.py +0 -0
  37. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ui/prompts.py +0 -0
  38. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/ui/themes.py +0 -0
  39. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/utils/conflict_parser.py +0 -0
  40. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/utils/diff_parser.py +0 -0
  41. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/ace/utils/json_utils.py +0 -0
  42. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/conftest.py +0 -0
  43. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_changelog_generator.py +0 -0
  44. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_code_reviewer.py +0 -0
  45. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_conflict_resolver.py +0 -0
  46. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_diff_trimmer.py +0 -0
  47. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_git_ops.py +0 -0
  48. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_help.py +0 -0
  49. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_history_analyzer.py +0 -0
  50. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_ignore.py +0 -0
  51. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_intent_parser.py +0 -0
  52. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_llm_factory.py +0 -0
  53. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_pr_drafter.py +0 -0
  54. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_safety.py +0 -0
  55. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_search.py +0 -0
  56. {ace_git_copilot-0.2.0 → ace_git_copilot-0.2.1}/tests/test_undo.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ace-git-copilot
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: AI-powered Git copilot — talk to Git in plain English
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: click>=8.0
@@ -0,0 +1 @@
1
+ __version__ = "0.2.1"
@@ -2,6 +2,7 @@ import sys
2
2
  import os
3
3
  from typing import Optional, List
4
4
  import typer
5
+ import click
5
6
 
6
7
  try:
7
8
  sys.stdout.reconfigure(encoding='utf-8', errors='replace')
@@ -302,7 +303,7 @@ def commit_cmd(
302
303
 
303
304
  elif choice == "e":
304
305
  # Edit in editor
305
- edited = typer.edit(msg)
306
+ edited = click.edit(msg)
306
307
  if edited is not None and edited.strip():
307
308
  msg = edited.strip()
308
309
  else:
@@ -688,7 +689,7 @@ def resolve_cmd(
688
689
  replacements.append((sugg["full_block"], sugg["incoming"]))
689
690
  print_success("Keeping incoming changes.")
690
691
  elif choice == "m":
691
- edited = typer.edit(sugg["suggested_merged"])
692
+ edited = click.edit(sugg["suggested_merged"])
692
693
  if edited is not None:
693
694
  replacements.append((sugg["full_block"], edited.strip()))
694
695
  print_success("Applied manual edit.")
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ace-git-copilot"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "AI-powered Git copilot — talk to Git in plain English"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1 +0,0 @@
1
- __version__ = "0.2.0"