rex-machine 0.2.1__tar.gz → 0.2.2__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 (32) hide show
  1. {rex_machine-0.2.1 → rex_machine-0.2.2}/PKG-INFO +1 -1
  2. {rex_machine-0.2.1 → rex_machine-0.2.2}/pyproject.toml +1 -1
  3. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/__init__.py +1 -1
  4. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/config_analyzer.j2 +1 -1
  5. {rex_machine-0.2.1 → rex_machine-0.2.2}/.claude/settings.local.json +0 -0
  6. {rex_machine-0.2.1 → rex_machine-0.2.2}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  7. {rex_machine-0.2.1 → rex_machine-0.2.2}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  8. {rex_machine-0.2.1 → rex_machine-0.2.2}/.github/workflows/ci.yml +0 -0
  9. {rex_machine-0.2.1 → rex_machine-0.2.2}/.github/workflows/release.yml +0 -0
  10. {rex_machine-0.2.1 → rex_machine-0.2.2}/.gitignore +0 -0
  11. {rex_machine-0.2.1 → rex_machine-0.2.2}/CHANGELOG.md +0 -0
  12. {rex_machine-0.2.1 → rex_machine-0.2.2}/CLAUDE.md +0 -0
  13. {rex_machine-0.2.1 → rex_machine-0.2.2}/CONTRIBUTING.md +0 -0
  14. {rex_machine-0.2.1 → rex_machine-0.2.2}/LICENSE +0 -0
  15. {rex_machine-0.2.1 → rex_machine-0.2.2}/README.md +0 -0
  16. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/__main__.py +0 -0
  17. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/agents.py +0 -0
  18. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/cli.py +0 -0
  19. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/config.py +0 -0
  20. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/models.py +0 -0
  21. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/py.typed +0 -0
  22. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/renderer.py +0 -0
  23. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/scanner.py +0 -0
  24. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/code_pattern_analyzer.j2 +0 -0
  25. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/doc_analyzer.j2 +0 -0
  26. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/main.j2 +0 -0
  27. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/structure_analyzer.j2 +0 -0
  28. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/prompts/synthesis.j2 +0 -0
  29. {rex_machine-0.2.1 → rex_machine-0.2.2}/src/rex_machine/templates/report.md.j2 +0 -0
  30. {rex_machine-0.2.1 → rex_machine-0.2.2}/tests/__init__.py +0 -0
  31. {rex_machine-0.2.1 → rex_machine-0.2.2}/tests/test_models.py +0 -0
  32. {rex_machine-0.2.1 → rex_machine-0.2.2}/tests/test_scanner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rex-machine
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Extract lessons learned (REX) from code repositories
5
5
  Project-URL: Homepage, https://github.com/NicoJuiced/rex-machine
6
6
  Project-URL: Repository, https://github.com/NicoJuiced/rex-machine
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "rex-machine"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Extract lessons learned (REX) from code repositories"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1,3 +1,3 @@
1
1
  """rex-machine - Extract lessons learned from code repositories."""
2
2
 
3
- __version__ = "0.2.1"
3
+ __version__ = "0.2.2"
@@ -26,7 +26,7 @@ FORMAT YOUR OUTPUT AS A LIST OF FINDINGS. For each finding, use this structure:
26
26
  docker build --target production \
27
27
  --build-arg PYTHON_VERSION=3.12 \
28
28
  --cache-from type=gha \
29
- -t ${{ env.IMAGE }}:${{ github.sha }} .
29
+ -t {% raw %}${{ env.IMAGE }}:${{ github.sha }}{% endraw %} .
30
30
  ```
31
31
  - **Lesson**: The takeaway for other teams
32
32
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes