etch-loop 0.4.8__tar.gz → 0.4.9__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 (24) hide show
  1. {etch_loop-0.4.8 → etch_loop-0.4.9}/PKG-INFO +1 -1
  2. {etch_loop-0.4.8 → etch_loop-0.4.9}/pyproject.toml +1 -1
  3. etch_loop-0.4.9/src/etch/__init__.py +1 -0
  4. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/display.py +2 -2
  5. etch_loop-0.4.8/src/etch/__init__.py +0 -1
  6. {etch_loop-0.4.8 → etch_loop-0.4.9}/.github/workflows/workflow.yml +0 -0
  7. {etch_loop-0.4.8 → etch_loop-0.4.9}/README.md +0 -0
  8. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/agent.py +0 -0
  9. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/analyze.py +0 -0
  10. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/cli.py +0 -0
  11. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/git.py +0 -0
  12. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/loop.py +0 -0
  13. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/prompt.py +0 -0
  14. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/report.py +0 -0
  15. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/signals.py +0 -0
  16. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/templates/BREAK.md +0 -0
  17. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/templates/ETCH.md +0 -0
  18. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/templates/RUN.md +0 -0
  19. {etch_loop-0.4.8 → etch_loop-0.4.9}/src/etch/templates/SCAN.md +0 -0
  20. {etch_loop-0.4.8 → etch_loop-0.4.9}/tests/__init__.py +0 -0
  21. {etch_loop-0.4.8 → etch_loop-0.4.9}/tests/test_git.py +0 -0
  22. {etch_loop-0.4.8 → etch_loop-0.4.9}/tests/test_loop.py +0 -0
  23. {etch_loop-0.4.8 → etch_loop-0.4.9}/tests/test_prompt.py +0 -0
  24. {etch_loop-0.4.8 → etch_loop-0.4.9}/tests/test_signals.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: etch-loop
3
- Version: 0.4.8
3
+ Version: 0.4.9
4
4
  Summary: Run Claude Code in a fix-break loop until your codebase is clean
5
5
  License: MIT
6
6
  Requires-Python: >=3.11
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "etch-loop"
3
- version = "0.4.8"
3
+ version = "0.4.9"
4
4
  requires-python = ">=3.11"
5
5
  description = "Run Claude Code in a fix-break loop until your codebase is clean"
6
6
  readme = "README.md"
@@ -0,0 +1 @@
1
+ __version__ = "0.4.9"
@@ -376,8 +376,8 @@ class InitDisplay:
376
376
 
377
377
  table = Table.grid(padding=(0, 1))
378
378
  table.add_column(width=2) # symbol
379
- table.add_column(width=12) # label
380
- table.add_column() # detail / scanbar
379
+ table.add_column(width=20) # label
380
+ table.add_column() # scanbar (only used while scanning)
381
381
 
382
382
  for sym, color, text in lines:
383
383
  table.add_row(
@@ -1 +0,0 @@
1
- __version__ = "0.4.8"
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