lgit-cli 3.7.0__tar.gz → 4.0.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.
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/PKG-INFO +6 -6
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/README.md +5 -5
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/__init__.py +2 -2
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/api.py +3 -3
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/config.py +1 -1
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/git.py +19 -12
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/map_reduce.py +1 -1
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/models.py +20 -24
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/tokens.py +1 -1
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/pyproject.toml +1 -1
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_map_reduce.py +1 -1
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_models_config_normalization.py +2 -2
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_types.py +9 -9
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/.gitignore +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/LICENSE +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/examples/configs/README.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/__main__.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/analysis.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/cache.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/changelog.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/cli.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/compose.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/diffing.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/errors.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/markdown_output.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/normalization.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/patch.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/profile.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/py.typed +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/repo.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/__init__.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/commit_types.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/analysis/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/analysis/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/changelog/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/changelog/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/compose-bind/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/compose-bind/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/compose-intent/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/compose-intent/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/fast/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/fast/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/map/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/map/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/reduce/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/reduce/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/summary/default.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/prompts/summary/markdown.md +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/resources/validation_data.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/rewrite.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/style.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/templates.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/testing/__init__.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/testing/compare.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/testing/fixture.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/testing/report.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/testing/runner.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/lgit/validation.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/conftest.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/golden/analysis.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/golden/final.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/golden/analysis.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/golden/final.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/manifest.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-030b81262-feat-ai-implemented-oauth-authentication/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-030b81262-feat-ai-implemented-oauth-authentication/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-030b81262-feat-ai-implemented-oauth-authentication/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-030b81262-feat-ai-implemented-oauth-authentication/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-030b81262-feat-ai-implemented-oauth-authentication/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-035adc610-fix-ai-restore-copilot-reasoning-control/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-035adc610-fix-ai-restore-copilot-reasoning-control/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-035adc610-fix-ai-restore-copilot-reasoning-control/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-035adc610-fix-ai-restore-copilot-reasoning-control/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-035adc610-fix-ai-restore-copilot-reasoning-control/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-068aa50e2-refactor-coding-agent-commit-enhanced-sc/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-068aa50e2-refactor-coding-agent-commit-enhanced-sc/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-068aa50e2-refactor-coding-agent-commit-enhanced-sc/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-068aa50e2-refactor-coding-agent-commit-enhanced-sc/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-068aa50e2-refactor-coding-agent-commit-enhanced-sc/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-072a199f4-fix-pi-shell-anchor-ls-long-format-parsi/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-072a199f4-fix-pi-shell-anchor-ls-long-format-parsi/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-072a199f4-fix-pi-shell-anchor-ls-long-format-parsi/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-072a199f4-fix-pi-shell-anchor-ls-long-format-parsi/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-072a199f4-fix-pi-shell-anchor-ls-long-format-parsi/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-08a4fe78a-fix-coding-agent-modes-corrected-role-mo/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-08a4fe78a-fix-coding-agent-modes-corrected-role-mo/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-08a4fe78a-fix-coding-agent-modes-corrected-role-mo/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-08a4fe78a-fix-coding-agent-modes-corrected-role-mo/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-08a4fe78a-fix-coding-agent-modes-corrected-role-mo/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-09eac286a-add-npm-run-dev-instructions-to-developm/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-09eac286a-add-npm-run-dev-instructions-to-developm/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-09eac286a-add-npm-run-dev-instructions-to-developm/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-09eac286a-add-npm-run-dev-instructions-to-developm/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-09eac286a-add-npm-run-dev-instructions-to-developm/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c40e23a7-chore-bump-version-to-14-7-6/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c40e23a7-chore-bump-version-to-14-7-6/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c40e23a7-chore-bump-version-to-14-7-6/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c40e23a7-chore-bump-version-to-14-7-6/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c40e23a7-chore-bump-version-to-14-7-6/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c92a0ba3-feat-coding-agent-removed-strippedredire/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c92a0ba3-feat-coding-agent-removed-strippedredire/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c92a0ba3-feat-coding-agent-removed-strippedredire/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c92a0ba3-feat-coding-agent-removed-strippedredire/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0c92a0ba3-feat-coding-agent-removed-strippedredire/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0dc4aa36f-feat-ai-expose-provider-response-metadat/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0dc4aa36f-feat-ai-expose-provider-response-metadat/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0dc4aa36f-feat-ai-expose-provider-response-metadat/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0dc4aa36f-feat-ai-expose-provider-response-metadat/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0dc4aa36f-feat-ai-expose-provider-response-metadat/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0e1a4ef15-feat-strict-mode-simplified-hashline-edi/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0e1a4ef15-feat-strict-mode-simplified-hashline-edi/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0e1a4ef15-feat-strict-mode-simplified-hashline-edi/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0e1a4ef15-feat-strict-mode-simplified-hashline-edi/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-0e1a4ef15-feat-strict-mode-simplified-hashline-edi/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1136ba81a-fix-eval-exit-graceful-close-js-worker/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1136ba81a-fix-eval-exit-graceful-close-js-worker/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1136ba81a-fix-eval-exit-graceful-close-js-worker/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1136ba81a-fix-eval-exit-graceful-close-js-worker/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1136ba81a-fix-eval-exit-graceful-close-js-worker/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-14f2589b3-fix-ci-drop-target-cpu-x86-64-v3-from-te/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-14f2589b3-fix-ci-drop-target-cpu-x86-64-v3-from-te/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-14f2589b3-fix-ci-drop-target-cpu-x86-64-v3-from-te/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-14f2589b3-fix-ci-drop-target-cpu-x86-64-v3-from-te/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-14f2589b3-fix-ci-drop-target-cpu-x86-64-v3-from-te/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1f0560854-fix-pi-natives-shell-handled-case-insens/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1f0560854-fix-pi-natives-shell-handled-case-insens/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1f0560854-fix-pi-natives-shell-handled-case-insens/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1f0560854-fix-pi-natives-shell-handled-case-insens/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-1f0560854-fix-pi-natives-shell-handled-case-insens/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-20663d0e0-feat-coding-agent-enhanced-system-prompt/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-20663d0e0-feat-coding-agent-enhanced-system-prompt/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-20663d0e0-feat-coding-agent-enhanced-system-prompt/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-20663d0e0-feat-coding-agent-enhanced-system-prompt/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-20663d0e0-feat-coding-agent-enhanced-system-prompt/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2185f3236-fix-publish-packages-in-dependency-order/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2185f3236-fix-publish-packages-in-dependency-order/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2185f3236-fix-publish-packages-in-dependency-order/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2185f3236-fix-publish-packages-in-dependency-order/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2185f3236-fix-publish-packages-in-dependency-order/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2219269eb-refactor-pi-shell-hoist-shared-gh-glab-h/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2219269eb-refactor-pi-shell-hoist-shared-gh-glab-h/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2219269eb-refactor-pi-shell-hoist-shared-gh-glab-h/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2219269eb-refactor-pi-shell-hoist-shared-gh-glab-h/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2219269eb-refactor-pi-shell-hoist-shared-gh-glab-h/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-222e1cd34-feat-edit-enabled-lid-and-lida-lidb-repl/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-222e1cd34-feat-edit-enabled-lid-and-lida-lidb-repl/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-222e1cd34-feat-edit-enabled-lid-and-lida-lidb-repl/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-222e1cd34-feat-edit-enabled-lid-and-lida-lidb-repl/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-222e1cd34-feat-edit-enabled-lid-and-lida-lidb-repl/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-23dedc508-chore-bump-version-to-15-11-2/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-23dedc508-chore-bump-version-to-15-11-2/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-23dedc508-chore-bump-version-to-15-11-2/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-23dedc508-chore-bump-version-to-15-11-2/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-23dedc508-chore-bump-version-to-15-11-2/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-24b150cf8-feat-coding-agent-added-session-accent-t/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-24b150cf8-feat-coding-agent-added-session-accent-t/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-24b150cf8-feat-coding-agent-added-session-accent-t/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-24b150cf8-feat-coding-agent-added-session-accent-t/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-24b150cf8-feat-coding-agent-added-session-accent-t/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-277fd22d5-improve-before-compact-hook-add-messages/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-277fd22d5-improve-before-compact-hook-add-messages/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-277fd22d5-improve-before-compact-hook-add-messages/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-277fd22d5-improve-before-compact-hook-add-messages/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-277fd22d5-improve-before-compact-hook-add-messages/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-27a64294b-fix-coding-agent-core-fixed-python-prelu/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-27a64294b-fix-coding-agent-core-fixed-python-prelu/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-27a64294b-fix-coding-agent-core-fixed-python-prelu/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-27a64294b-fix-coding-agent-core-fixed-python-prelu/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-27a64294b-fix-coding-agent-core-fixed-python-prelu/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2ae7302b7-feat-implemented-pragma-parsing-with-mod/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2ae7302b7-feat-implemented-pragma-parsing-with-mod/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2ae7302b7-feat-implemented-pragma-parsing-with-mod/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2ae7302b7-feat-implemented-pragma-parsing-with-mod/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2ae7302b7-feat-implemented-pragma-parsing-with-mod/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2aec94bcd-fix-coding-agent-cleaner-properly-typed/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2aec94bcd-fix-coding-agent-cleaner-properly-typed/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2aec94bcd-fix-coding-agent-cleaner-properly-typed/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2aec94bcd-fix-coding-agent-cleaner-properly-typed/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2aec94bcd-fix-coding-agent-cleaner-properly-typed/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2cd78dbf2-refactor-natives-configured-searcher-lin/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2cd78dbf2-refactor-natives-configured-searcher-lin/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2cd78dbf2-refactor-natives-configured-searcher-lin/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2cd78dbf2-refactor-natives-configured-searcher-lin/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-2cd78dbf2-refactor-natives-configured-searcher-lin/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304a9346e-fix-tui-updated-structural-diff-handling/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304a9346e-fix-tui-updated-structural-diff-handling/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304a9346e-fix-tui-updated-structural-diff-handling/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304a9346e-fix-tui-updated-structural-diff-handling/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304a9346e-fix-tui-updated-structural-diff-handling/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304d6e072-fix-coding-agent-preserved-intentional-h/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304d6e072-fix-coding-agent-preserved-intentional-h/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304d6e072-fix-coding-agent-preserved-intentional-h/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304d6e072-fix-coding-agent-preserved-intentional-h/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-304d6e072-fix-coding-agent-preserved-intentional-h/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-33dfce738-fix-session-observer-remove-type-indirec/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-33dfce738-fix-session-observer-remove-type-indirec/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-33dfce738-fix-session-observer-remove-type-indirec/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-33dfce738-fix-session-observer-remove-type-indirec/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-33dfce738-fix-session-observer-remove-type-indirec/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-34aed93f8-fix-win-deps/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-34aed93f8-fix-win-deps/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-34aed93f8-fix-win-deps/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-34aed93f8-fix-win-deps/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-34aed93f8-fix-win-deps/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-36467c2a5-feat-coding-agent-added-git-context-to-s/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-36467c2a5-feat-coding-agent-added-git-context-to-s/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-36467c2a5-feat-coding-agent-added-git-context-to-s/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-36467c2a5-feat-coding-agent-added-git-context-to-s/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-36467c2a5-feat-coding-agent-added-git-context-to-s/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-388deb1c1-chore-bump-version-to-15-9-4/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-388deb1c1-chore-bump-version-to-15-9-4/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-388deb1c1-chore-bump-version-to-15-9-4/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-388deb1c1-chore-bump-version-to-15-9-4/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-388deb1c1-chore-bump-version-to-15-9-4/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38a591f95-feat-added-maintainer-directive-flow-wit/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38a591f95-feat-added-maintainer-directive-flow-wit/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38a591f95-feat-added-maintainer-directive-flow-wit/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38a591f95-feat-added-maintainer-directive-flow-wit/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38a591f95-feat-added-maintainer-directive-flow-wit/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38dd0aa9f-docs-coding-agent-prompts-documented-pro/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38dd0aa9f-docs-coding-agent-prompts-documented-pro/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38dd0aa9f-docs-coding-agent-prompts-documented-pro/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38dd0aa9f-docs-coding-agent-prompts-documented-pro/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-38dd0aa9f-docs-coding-agent-prompts-documented-pro/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-395e2a150-fix-utils-reject-profiles-ending-with-do/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-395e2a150-fix-utils-reject-profiles-ending-with-do/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-395e2a150-fix-utils-reject-profiles-ending-with-do/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-395e2a150-fix-utils-reject-profiles-ending-with-do/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-395e2a150-fix-utils-reject-profiles-ending-with-do/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3a76cc4b3-chore-reformat/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3a76cc4b3-chore-reformat/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3a76cc4b3-chore-reformat/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3a76cc4b3-chore-reformat/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3a76cc4b3-chore-reformat/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3b3672a35-fix-coding-agent-made-live-region-rewrit/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3b3672a35-fix-coding-agent-made-live-region-rewrit/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3b3672a35-fix-coding-agent-made-live-region-rewrit/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3b3672a35-fix-coding-agent-made-live-region-rewrit/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3b3672a35-fix-coding-agent-made-live-region-rewrit/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3e4c57c08-chore-coding-agent-record-session-chain/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3e4c57c08-chore-coding-agent-record-session-chain/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3e4c57c08-chore-coding-agent-record-session-chain/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3e4c57c08-chore-coding-agent-record-session-chain/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3e4c57c08-chore-coding-agent-record-session-chain/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3f073b82d-chore-bump-version-to-15-5-10/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3f073b82d-chore-bump-version-to-15-5-10/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3f073b82d-chore-bump-version-to-15-5-10/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3f073b82d-chore-bump-version-to-15-5-10/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-3f073b82d-chore-bump-version-to-15-5-10/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4019acf1f-chore-bump-versions-to-0-7-1/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4019acf1f-chore-bump-versions-to-0-7-1/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4019acf1f-chore-bump-versions-to-0-7-1/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4019acf1f-chore-bump-versions-to-0-7-1/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4019acf1f-chore-bump-versions-to-0-7-1/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-46b1abff1-add-cursor-pointer-to-collapsible-header/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-46b1abff1-add-cursor-pointer-to-collapsible-header/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-46b1abff1-add-cursor-pointer-to-collapsible-header/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-46b1abff1-add-cursor-pointer-to-collapsible-header/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-46b1abff1-add-cursor-pointer-to-collapsible-header/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-493c67aa6-test-tui-adjusted-tui-test-timings-for-c/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-493c67aa6-test-tui-adjusted-tui-test-timings-for-c/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-493c67aa6-test-tui-adjusted-tui-test-timings-for-c/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-493c67aa6-test-tui-adjusted-tui-test-timings-for-c/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-493c67aa6-test-tui-adjusted-tui-test-timings-for-c/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4a3984eb0-fix-coding-agent-tools-fixed-markdown-ca/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4a3984eb0-fix-coding-agent-tools-fixed-markdown-ca/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4a3984eb0-fix-coding-agent-tools-fixed-markdown-ca/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4a3984eb0-fix-coding-agent-tools-fixed-markdown-ca/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4a3984eb0-fix-coding-agent-tools-fixed-markdown-ca/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4d9da4e4f-release-v0-22-5/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4d9da4e4f-release-v0-22-5/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4d9da4e4f-release-v0-22-5/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4d9da4e4f-release-v0-22-5/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4d9da4e4f-release-v0-22-5/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4da04edc3-chore-bump-version-to-4-0-1/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4da04edc3-chore-bump-version-to-4-0-1/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4da04edc3-chore-bump-version-to-4-0-1/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4da04edc3-chore-bump-version-to-4-0-1/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-4da04edc3-chore-bump-version-to-4-0-1/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-51234ad92-fix-js-eval/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-51234ad92-fix-js-eval/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-51234ad92-fix-js-eval/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-51234ad92-fix-js-eval/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-51234ad92-fix-js-eval/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-512aacc51-fix-coding-agent-tools-corrected-collaps/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-512aacc51-fix-coding-agent-tools-corrected-collaps/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-512aacc51-fix-coding-agent-tools-corrected-collaps/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-512aacc51-fix-coding-agent-tools-corrected-collaps/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-512aacc51-fix-coding-agent-tools-corrected-collaps/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-52719d1a7-refactor-restructured-monorepo-typescrip/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-52719d1a7-refactor-restructured-monorepo-typescrip/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-52719d1a7-refactor-restructured-monorepo-typescrip/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-52719d1a7-refactor-restructured-monorepo-typescrip/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-52719d1a7-refactor-restructured-monorepo-typescrip/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-54d212ec3-feat-coding-agent-added-advisor-immune-t/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-54d212ec3-feat-coding-agent-added-advisor-immune-t/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-54d212ec3-feat-coding-agent-added-advisor-immune-t/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-54d212ec3-feat-coding-agent-added-advisor-immune-t/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-54d212ec3-feat-coding-agent-added-advisor-immune-t/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5b4b682df-fix-ai-scope-cch-replacement-to-system-b/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5b4b682df-fix-ai-scope-cch-replacement-to-system-b/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5b4b682df-fix-ai-scope-cch-replacement-to-system-b/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5b4b682df-fix-ai-scope-cch-replacement-to-system-b/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5b4b682df-fix-ai-scope-cch-replacement-to-system-b/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5bbaaa077-formatting/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5bbaaa077-formatting/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5bbaaa077-formatting/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5bbaaa077-formatting/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5bbaaa077-formatting/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5e2d1fa60-feat-coding-agent-added-toolcallcontext/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5e2d1fa60-feat-coding-agent-added-toolcallcontext/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5e2d1fa60-feat-coding-agent-added-toolcallcontext/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5e2d1fa60-feat-coding-agent-added-toolcallcontext/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5e2d1fa60-feat-coding-agent-added-toolcallcontext/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5f96a4eea-fix-tui-fix-input-buffering-in-iterm2-ca/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5f96a4eea-fix-tui-fix-input-buffering-in-iterm2-ca/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5f96a4eea-fix-tui-fix-input-buffering-in-iterm2-ca/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5f96a4eea-fix-tui-fix-input-buffering-in-iterm2-ca/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-5f96a4eea-fix-tui-fix-input-buffering-in-iterm2-ca/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-60f39f838-feat-coding-agent-added-cli-args-and-env/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-60f39f838-feat-coding-agent-added-cli-args-and-env/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-60f39f838-feat-coding-agent-added-cli-args-and-env/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-60f39f838-feat-coding-agent-added-cli-args-and-env/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-60f39f838-feat-coding-agent-added-cli-args-and-env/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-638ad1947-fix-hashline-exhaustive-geteditanchors-s/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-638ad1947-fix-hashline-exhaustive-geteditanchors-s/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-638ad1947-fix-hashline-exhaustive-geteditanchors-s/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-638ad1947-fix-hashline-exhaustive-geteditanchors-s/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-638ad1947-fix-hashline-exhaustive-geteditanchors-s/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6bc098e57-html-artifacts-call-window-complete-when/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6bc098e57-html-artifacts-call-window-complete-when/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6bc098e57-html-artifacts-call-window-complete-when/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6bc098e57-html-artifacts-call-window-complete-when/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6bc098e57-html-artifacts-call-window-complete-when/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6c3580828-fix-ai-ensure-unique-tool-call-ids-in-go/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6c3580828-fix-ai-ensure-unique-tool-call-ids-in-go/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6c3580828-fix-ai-ensure-unique-tool-call-ids-in-go/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6c3580828-fix-ai-ensure-unique-tool-call-ids-in-go/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-6c3580828-fix-ai-ensure-unique-tool-call-ids-in-go/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-752c021f3-fix-ai-restored-120s-idle-timeout-and-fi/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-752c021f3-fix-ai-restored-120s-idle-timeout-and-fi/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-752c021f3-fix-ai-restored-120s-idle-timeout-and-fi/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-752c021f3-fix-ai-restored-120s-idle-timeout-and-fi/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-752c021f3-fix-ai-restored-120s-idle-timeout-and-fi/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7ab3d33ae-feat-coding-agent-add-auto-compaction-to/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7ab3d33ae-feat-coding-agent-add-auto-compaction-to/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7ab3d33ae-feat-coding-agent-add-auto-compaction-to/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7ab3d33ae-feat-coding-agent-add-auto-compaction-to/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7ab3d33ae-feat-coding-agent-add-auto-compaction-to/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7f1d07184-feat-coding-agent-added-streaming-ndjson/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7f1d07184-feat-coding-agent-added-streaming-ndjson/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7f1d07184-feat-coding-agent-added-streaming-ndjson/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7f1d07184-feat-coding-agent-added-streaming-ndjson/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-7f1d07184-feat-coding-agent-added-streaming-ndjson/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-82d375caa-feat-coding-agent-exported-patch-utiliti/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-82d375caa-feat-coding-agent-exported-patch-utiliti/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-82d375caa-feat-coding-agent-exported-patch-utiliti/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-82d375caa-feat-coding-agent-exported-patch-utiliti/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-82d375caa-feat-coding-agent-exported-patch-utiliti/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-836025aa0-clarify-compaction-in-tree-format-marker/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-836025aa0-clarify-compaction-in-tree-format-marker/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-836025aa0-clarify-compaction-in-tree-format-marker/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-836025aa0-clarify-compaction-in-tree-format-marker/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-836025aa0-clarify-compaction-in-tree-format-marker/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8b4810c82-fix-natives-enabled-cross-line-grep-and/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8b4810c82-fix-natives-enabled-cross-line-grep-and/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8b4810c82-fix-natives-enabled-cross-line-grep-and/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8b4810c82-fix-natives-enabled-cross-line-grep-and/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8b4810c82-fix-natives-enabled-cross-line-grep-and/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8e1f53fee-style-bun-run-fix/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8e1f53fee-style-bun-run-fix/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8e1f53fee-style-bun-run-fix/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8e1f53fee-style-bun-run-fix/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-8e1f53fee-style-bun-run-fix/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93a60b796-downgrade-biome-to-2-3-5-to-fix-false-po/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93a60b796-downgrade-biome-to-2-3-5-to-fix-false-po/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93a60b796-downgrade-biome-to-2-3-5-to-fix-false-po/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93a60b796-downgrade-biome-to-2-3-5-to-fix-false-po/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93a60b796-downgrade-biome-to-2-3-5-to-fix-false-po/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93adcf13f-feat-ai-bump-catalog-add-z-ai/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93adcf13f-feat-ai-bump-catalog-add-z-ai/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93adcf13f-feat-ai-bump-catalog-add-z-ai/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93adcf13f-feat-ai-bump-catalog-add-z-ai/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-93adcf13f-feat-ai-bump-catalog-add-z-ai/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-96d676a5e-refactor-coding-agent-migrated-tool-rend/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-96d676a5e-refactor-coding-agent-migrated-tool-rend/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-96d676a5e-refactor-coding-agent-migrated-tool-rend/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-96d676a5e-refactor-coding-agent-migrated-tool-rend/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-96d676a5e-refactor-coding-agent-migrated-tool-rend/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-97eb81e4c-fix-ai-handled-opencode-zen-big-pickle-a/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-97eb81e4c-fix-ai-handled-opencode-zen-big-pickle-a/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-97eb81e4c-fix-ai-handled-opencode-zen-big-pickle-a/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-97eb81e4c-fix-ai-handled-opencode-zen-big-pickle-a/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-97eb81e4c-fix-ai-handled-opencode-zen-big-pickle-a/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9d7d7b6a2-support-appending-content-to-the-system/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9d7d7b6a2-support-appending-content-to-the-system/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9d7d7b6a2-support-appending-content-to-the-system/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9d7d7b6a2-support-appending-content-to-the-system/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9d7d7b6a2-support-appending-content-to-the-system/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9de59c640-release-v0-18-5/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9de59c640-release-v0-18-5/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9de59c640-release-v0-18-5/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9de59c640-release-v0-18-5/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9de59c640-release-v0-18-5/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9edf773b8-feat-coding-agent-centralized-tool-filte/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9edf773b8-feat-coding-agent-centralized-tool-filte/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9edf773b8-feat-coding-agent-centralized-tool-filte/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9edf773b8-feat-coding-agent-centralized-tool-filte/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-9edf773b8-feat-coding-agent-centralized-tool-filte/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a13d20b5a-chore-bump-version-to-3-9-1337/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a13d20b5a-chore-bump-version-to-3-9-1337/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a13d20b5a-chore-bump-version-to-3-9-1337/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a13d20b5a-chore-bump-version-to-3-9-1337/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a13d20b5a-chore-bump-version-to-3-9-1337/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a94b19e1d-fix-dependencies/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a94b19e1d-fix-dependencies/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a94b19e1d-fix-dependencies/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a94b19e1d-fix-dependencies/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-a94b19e1d-fix-dependencies/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b20a87490-fix-improve-gemini-tool-selection-with-s/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b20a87490-fix-improve-gemini-tool-selection-with-s/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b20a87490-fix-improve-gemini-tool-selection-with-s/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b20a87490-fix-improve-gemini-tool-selection-with-s/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b20a87490-fix-improve-gemini-tool-selection-with-s/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b5582278a-feat-builtins-implemented-wait-for-pids/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b5582278a-feat-builtins-implemented-wait-for-pids/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b5582278a-feat-builtins-implemented-wait-for-pids/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b5582278a-feat-builtins-implemented-wait-for-pids/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-b5582278a-feat-builtins-implemented-wait-for-pids/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ba3b1529c-fix-auth-copied-setup-sign-in-urls/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ba3b1529c-fix-auth-copied-setup-sign-in-urls/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ba3b1529c-fix-auth-copied-setup-sign-in-urls/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ba3b1529c-fix-auth-copied-setup-sign-in-urls/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ba3b1529c-fix-auth-copied-setup-sign-in-urls/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-be5d7dd3a-feat-coding-agent-added-task-description/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-be5d7dd3a-feat-coding-agent-added-task-description/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-be5d7dd3a-feat-coding-agent-added-task-description/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-be5d7dd3a-feat-coding-agent-added-task-description/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-be5d7dd3a-feat-coding-agent-added-task-description/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c08e6f8a1-ux-coding-agent-default-artifact-capture/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c08e6f8a1-ux-coding-agent-default-artifact-capture/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c08e6f8a1-ux-coding-agent-default-artifact-capture/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c08e6f8a1-ux-coding-agent-default-artifact-capture/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c08e6f8a1-ux-coding-agent-default-artifact-capture/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c0aa4e399-add-creation-hints-to-docs-and-update-sy/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c0aa4e399-add-creation-hints-to-docs-and-update-sy/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c0aa4e399-add-creation-hints-to-docs-and-update-sy/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c0aa4e399-add-creation-hints-to-docs-and-update-sy/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c0aa4e399-add-creation-hints-to-docs-and-update-sy/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c1f848abe-fix-ai-providers-adjusted-anthropic-clie/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c1f848abe-fix-ai-providers-adjusted-anthropic-clie/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c1f848abe-fix-ai-providers-adjusted-anthropic-clie/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c1f848abe-fix-ai-providers-adjusted-anthropic-clie/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c1f848abe-fix-ai-providers-adjusted-anthropic-clie/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c52096d86-fix-ai-prevent-double-api-version-path-i/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c52096d86-fix-ai-prevent-double-api-version-path-i/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c52096d86-fix-ai-prevent-double-api-version-path-i/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c52096d86-fix-ai-prevent-double-api-version-path-i/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-c52096d86-fix-ai-prevent-double-api-version-path-i/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ca1ccfc7e-support-multiple-messages-in-agent-promp/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ca1ccfc7e-support-multiple-messages-in-agent-promp/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ca1ccfc7e-support-multiple-messages-in-agent-promp/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ca1ccfc7e-support-multiple-messages-in-agent-promp/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ca1ccfc7e-support-multiple-messages-in-agent-promp/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cae5aaa3c-feat-coding-agent-changed-default-edit-m/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cae5aaa3c-feat-coding-agent-changed-default-edit-m/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cae5aaa3c-feat-coding-agent-changed-default-edit-m/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cae5aaa3c-feat-coding-agent-changed-default-edit-m/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cae5aaa3c-feat-coding-agent-changed-default-edit-m/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ccc3533c4-fix-tui-differentiate-tree-empty-state-f/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ccc3533c4-fix-tui-differentiate-tree-empty-state-f/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ccc3533c4-fix-tui-differentiate-tree-empty-state-f/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ccc3533c4-fix-tui-differentiate-tree-empty-state-f/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ccc3533c4-fix-tui-differentiate-tree-empty-state-f/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cea19b6eb-fix-coding-agent-exited-cleanly-when-dec/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cea19b6eb-fix-coding-agent-exited-cleanly-when-dec/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cea19b6eb-fix-coding-agent-exited-cleanly-when-dec/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cea19b6eb-fix-coding-agent-exited-cleanly-when-dec/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-cea19b6eb-fix-coding-agent-exited-cleanly-when-dec/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d1920e9ca-refactor-coding-agent-edit-removed-redun/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d1920e9ca-refactor-coding-agent-edit-removed-redun/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d1920e9ca-refactor-coding-agent-edit-removed-redun/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d1920e9ca-refactor-coding-agent-edit-removed-redun/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d1920e9ca-refactor-coding-agent-edit-removed-redun/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d26f759b8-chore-bump-version-to-8-4-0/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d26f759b8-chore-bump-version-to-8-4-0/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d26f759b8-chore-bump-version-to-8-4-0/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d26f759b8-chore-bump-version-to-8-4-0/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d26f759b8-chore-bump-version-to-8-4-0/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d62e7f469-chore-update-installation-command-in-upd/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d62e7f469-chore-update-installation-command-in-upd/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d62e7f469-chore-update-installation-command-in-upd/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d62e7f469-chore-update-installation-command-in-upd/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d62e7f469-chore-update-installation-command-in-upd/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d64fa7e85-feat-coding-agent-preserve-results-on-is/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d64fa7e85-feat-coding-agent-preserve-results-on-is/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d64fa7e85-feat-coding-agent-preserve-results-on-is/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d64fa7e85-feat-coding-agent-preserve-results-on-is/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-d64fa7e85-feat-coding-agent-preserve-results-on-is/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e08870e4a-docs-changelog-consolidate-profile-entri/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e08870e4a-docs-changelog-consolidate-profile-entri/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e08870e4a-docs-changelog-consolidate-profile-entri/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e08870e4a-docs-changelog-consolidate-profile-entri/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e08870e4a-docs-changelog-consolidate-profile-entri/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e22b31401-feat-packages-coding-agent-added-orchest/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e22b31401-feat-packages-coding-agent-added-orchest/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e22b31401-feat-packages-coding-agent-added-orchest/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e22b31401-feat-packages-coding-agent-added-orchest/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e22b31401-feat-packages-coding-agent-added-orchest/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e28ae2fd8-fix-ai-hoisted-images-out-of-error-anthr/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e28ae2fd8-fix-ai-hoisted-images-out-of-error-anthr/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e28ae2fd8-fix-ai-hoisted-images-out-of-error-anthr/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e28ae2fd8-fix-ai-hoisted-images-out-of-error-anthr/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e28ae2fd8-fix-ai-hoisted-images-out-of-error-anthr/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e7d90ff70-chore-bump-version-to-12-5-1/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e7d90ff70-chore-bump-version-to-12-5-1/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e7d90ff70-chore-bump-version-to-12-5-1/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e7d90ff70-chore-bump-version-to-12-5-1/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e7d90ff70-chore-bump-version-to-12-5-1/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e8c5c660b-feat-coding-agent-implemented-atom-repla/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e8c5c660b-feat-coding-agent-implemented-atom-repla/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e8c5c660b-feat-coding-agent-implemented-atom-repla/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e8c5c660b-feat-coding-agent-implemented-atom-repla/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-e8c5c660b-feat-coding-agent-implemented-atom-repla/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-eaf28b341-fix-ai-omp-commit-fails-with-http-400-on/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-eaf28b341-fix-ai-omp-commit-fails-with-http-400-on/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-eaf28b341-fix-ai-omp-commit-fails-with-http-400-on/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-eaf28b341-fix-ai-omp-commit-fails-with-http-400-on/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-eaf28b341-fix-ai-omp-commit-fails-with-http-400-on/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ed55880f3-fix-ai-fixed-orphaned-tool-call-handling/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ed55880f3-fix-ai-fixed-orphaned-tool-call-handling/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ed55880f3-fix-ai-fixed-orphaned-tool-call-handling/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ed55880f3-fix-ai-fixed-orphaned-tool-call-handling/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-ed55880f3-fix-ai-fixed-orphaned-tool-call-handling/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-efa20a003-chore-bump-version-to-12-17-1/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-efa20a003-chore-bump-version-to-12-17-1/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-efa20a003-chore-bump-version-to-12-17-1/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-efa20a003-chore-bump-version-to-12-17-1/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-efa20a003-chore-bump-version-to-12-17-1/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f17733570-perf-coding-agent-cached-bash-result-ren/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f17733570-perf-coding-agent-cached-bash-result-ren/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f17733570-perf-coding-agent-cached-bash-result-ren/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f17733570-perf-coding-agent-cached-bash-result-ren/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f17733570-perf-coding-agent-cached-bash-result-ren/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f47113b88-docs-added-comprehensive-documentation-f/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f47113b88-docs-added-comprehensive-documentation-f/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f47113b88-docs-added-comprehensive-documentation-f/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f47113b88-docs-added-comprehensive-documentation-f/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f47113b88-docs-added-comprehensive-documentation-f/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f8a4c4021-fix-ai-corrected-retry-logic-to-detect-c/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f8a4c4021-fix-ai-corrected-retry-logic-to-detect-c/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f8a4c4021-fix-ai-corrected-retry-logic-to-detect-c/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f8a4c4021-fix-ai-corrected-retry-logic-to-detect-c/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-f8a4c4021-fix-ai-corrected-retry-logic-to-detect-c/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fba068176-fix-coding-agent-map-ollama-chat-to-forc/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fba068176-fix-coding-agent-map-ollama-chat-to-forc/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fba068176-fix-coding-agent-map-ollama-chat-to-forc/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fba068176-fix-coding-agent-map-ollama-chat-to-forc/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fba068176-fix-coding-agent-map-ollama-chat-to-forc/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fc5bbc26e-fix-ai-emit-orphan-tool-output-via-user/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fc5bbc26e-fix-ai-emit-orphan-tool-output-via-user/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fc5bbc26e-fix-ai-emit-orphan-tool-output-via-user/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fc5bbc26e-fix-ai-emit-orphan-tool-output-via-user/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/pi-fc5bbc26e-fix-ai-emit-orphan-tool-output-via-user/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/golden/analysis.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/golden/final.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/refactor-cell-to-controller/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/golden/analysis.json +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/golden/final.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/small-bugfix/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/style-rustfmt-format/input/context.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/style-rustfmt-format/input/diff.patch +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/style-rustfmt-format/input/scope_candidates.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/style-rustfmt-format/input/stat.txt +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/style-rustfmt-format/meta.toml +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_analysis.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_api.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_cache.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_changelog.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_cli.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_cli_git_behaviour.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_compare.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_compose.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_config.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_diffing.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_git.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_markdown_output.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_normalization.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_parity_features.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_patch.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_repo.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_templates.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_testing_fixtures.py +0 -0
- {lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/test_validation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lgit-cli
|
|
3
|
-
Version:
|
|
3
|
+
Version: 4.0.1
|
|
4
4
|
Summary: AI-powered git commit message generator using Claude and other LLMs via OpenAI-compatible APIs
|
|
5
5
|
Project-URL: Homepage, https://github.com/can1357/llm-git
|
|
6
6
|
Project-URL: Repository, https://github.com/can1357/llm-git
|
|
@@ -32,7 +32,7 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
|
|
33
33
|
<p align="center">
|
|
34
34
|
<a href="https://github.com/can1357/llm-git/actions"><img src="https://img.shields.io/github/actions/workflow/status/can1357/llm-git/ci.yml?style=flat&colorA=222222&colorB=3FB950" alt="CI"></a>
|
|
35
|
-
<a href="https://pypi.org/project/
|
|
35
|
+
<a href="https://pypi.org/project/lgit-cli/"><img src="https://img.shields.io/pypi/v/lgit-cli?style=flat&colorA=222222&colorB=3FB950" alt="PyPI"></a>
|
|
36
36
|
<a href="https://github.com/can1357/llm-git/blob/main/LICENSE"><img src="https://img.shields.io/github/license/can1357/llm-git?style=flat&colorA=222222&colorB=58A6FF" alt="License"></a>
|
|
37
37
|
<a href="https://www.python.org"><img src="https://img.shields.io/badge/Python-3.14%2B-3FB950?style=flat&colorA=222222&logo=python&logoColor=white" alt="Python"></a>
|
|
38
38
|
</p>
|
|
@@ -57,7 +57,7 @@ Description-Content-Type: text/markdown
|
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
# Install
|
|
60
|
-
uv tool install
|
|
60
|
+
uv tool install lgit-cli
|
|
61
61
|
|
|
62
62
|
# Configure (pick one)
|
|
63
63
|
export LLM_GIT_API_KEY=your_anthropic_key # Direct Anthropic
|
|
@@ -264,9 +264,9 @@ default = true
|
|
|
264
264
|
### From PyPI
|
|
265
265
|
|
|
266
266
|
```bash
|
|
267
|
-
uv tool install
|
|
268
|
-
pipx install
|
|
269
|
-
pip install
|
|
267
|
+
uv tool install lgit-cli # recommended
|
|
268
|
+
pipx install lgit-cli # or
|
|
269
|
+
pip install lgit-cli
|
|
270
270
|
```
|
|
271
271
|
|
|
272
272
|
### From source
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://github.com/can1357/llm-git/actions"><img src="https://img.shields.io/github/actions/workflow/status/can1357/llm-git/ci.yml?style=flat&colorA=222222&colorB=3FB950" alt="CI"></a>
|
|
11
|
-
<a href="https://pypi.org/project/
|
|
11
|
+
<a href="https://pypi.org/project/lgit-cli/"><img src="https://img.shields.io/pypi/v/lgit-cli?style=flat&colorA=222222&colorB=3FB950" alt="PyPI"></a>
|
|
12
12
|
<a href="https://github.com/can1357/llm-git/blob/main/LICENSE"><img src="https://img.shields.io/github/license/can1357/llm-git?style=flat&colorA=222222&colorB=58A6FF" alt="License"></a>
|
|
13
13
|
<a href="https://www.python.org"><img src="https://img.shields.io/badge/Python-3.14%2B-3FB950?style=flat&colorA=222222&logo=python&logoColor=white" alt="Python"></a>
|
|
14
14
|
</p>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
# Install
|
|
36
|
-
uv tool install
|
|
36
|
+
uv tool install lgit-cli
|
|
37
37
|
|
|
38
38
|
# Configure (pick one)
|
|
39
39
|
export LLM_GIT_API_KEY=your_anthropic_key # Direct Anthropic
|
|
@@ -240,9 +240,9 @@ default = true
|
|
|
240
240
|
### From PyPI
|
|
241
241
|
|
|
242
242
|
```bash
|
|
243
|
-
uv tool install
|
|
244
|
-
pipx install
|
|
245
|
-
pip install
|
|
243
|
+
uv tool install lgit-cli # recommended
|
|
244
|
+
pipx install lgit-cli # or
|
|
245
|
+
pip install lgit-cli
|
|
246
246
|
```
|
|
247
247
|
|
|
248
248
|
### From source
|
|
@@ -6,9 +6,9 @@ from importlib import metadata
|
|
|
6
6
|
from typing import TYPE_CHECKING, Any
|
|
7
7
|
|
|
8
8
|
try:
|
|
9
|
-
__version__ = metadata.version("
|
|
9
|
+
__version__ = metadata.version("lgit-cli")
|
|
10
10
|
except metadata.PackageNotFoundError:
|
|
11
|
-
__version__ = "
|
|
11
|
+
__version__ = "4.0.1"
|
|
12
12
|
|
|
13
13
|
_CORE_MODEL_EXPORTS = (
|
|
14
14
|
"Mode",
|
|
@@ -148,7 +148,7 @@ async def run_oneshot(
|
|
|
148
148
|
built = replace(
|
|
149
149
|
built,
|
|
150
150
|
model=resolve_model_name(
|
|
151
|
-
str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.
|
|
151
|
+
str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.8")))
|
|
152
152
|
),
|
|
153
153
|
)
|
|
154
154
|
response = await _run_oneshot_response(config, built, markdown_output=markdown_output)
|
|
@@ -193,7 +193,7 @@ async def generate_conventional_analysis(
|
|
|
193
193
|
type_enum = list(getattr(config, "types", {}) or {"chore": None})
|
|
194
194
|
spec = OneShotSpec(
|
|
195
195
|
operation="analysis",
|
|
196
|
-
model=resolve_model_name(str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.
|
|
196
|
+
model=resolve_model_name(str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.8")))),
|
|
197
197
|
prompt_family="analysis",
|
|
198
198
|
prompt_variant=variant,
|
|
199
199
|
system_prompt=system_prompt,
|
|
@@ -365,7 +365,7 @@ async def generate_fast_commit(
|
|
|
365
365
|
type_enum = list(getattr(config, "types", {}) or {"chore": None})
|
|
366
366
|
spec = OneShotSpec(
|
|
367
367
|
operation="fast",
|
|
368
|
-
model=resolve_model_name(str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.
|
|
368
|
+
model=resolve_model_name(str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.8")))),
|
|
369
369
|
prompt_family="fast",
|
|
370
370
|
prompt_variant=variant,
|
|
371
371
|
system_prompt=system_prompt,
|
|
@@ -23,7 +23,7 @@ from .models import (
|
|
|
23
23
|
)
|
|
24
24
|
|
|
25
25
|
DEFAULT_API_BASE_URL = "http://localhost:4000"
|
|
26
|
-
DEFAULT_ANALYSIS_MODEL = "claude-opus-4.
|
|
26
|
+
DEFAULT_ANALYSIS_MODEL = "claude-opus-4.8"
|
|
27
27
|
DEFAULT_SUMMARY_MODEL = "claude-haiku-4-5"
|
|
28
28
|
DEFAULT_CONFIG_SUBPATH = Path(".config/llm-git/config.toml")
|
|
29
29
|
|
|
@@ -125,22 +125,29 @@ def _run_git_process(
|
|
|
125
125
|
disable_background_features: bool | None,
|
|
126
126
|
) -> tuple[tuple[str, ...], subprocess.CompletedProcess]:
|
|
127
127
|
argv = _git_argv(args)
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
128
|
+
# Always feed stdin as raw bytes. A text-mode pipe rewrites "\n" -> os.linesep
|
|
129
|
+
# on Windows, which corrupts patches piped to `git apply` (CRLF context no
|
|
130
|
+
# longer matches the LF index blob) and appends stray CR to commit messages
|
|
131
|
+
# and stdin-paths. Encoding here keeps the bytes byte-exact on every platform.
|
|
132
|
+
stdin_bytes = input_data.encode("utf-8") if isinstance(input_data, str) else input_data
|
|
133
|
+
completed = subprocess.run(
|
|
134
|
+
argv,
|
|
135
|
+
cwd=os.fspath(cwd),
|
|
136
|
+
input=stdin_bytes,
|
|
137
|
+
capture_output=True,
|
|
138
|
+
env=git_command_env(
|
|
134
139
|
env,
|
|
135
140
|
index_file=index_file,
|
|
136
141
|
disable_background_features=disable_background_features,
|
|
137
142
|
),
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
if text:
|
|
142
|
-
|
|
143
|
-
|
|
143
|
+
shell=False,
|
|
144
|
+
check=False,
|
|
145
|
+
)
|
|
146
|
+
if not text:
|
|
147
|
+
return argv, completed
|
|
148
|
+
stdout = completed.stdout.decode("utf-8", errors="replace").replace("\r\n", "\n")
|
|
149
|
+
stderr = completed.stderr.decode("utf-8", errors="replace").replace("\r\n", "\n")
|
|
150
|
+
return argv, subprocess.CompletedProcess(completed.args, completed.returncode, stdout, stderr)
|
|
144
151
|
|
|
145
152
|
|
|
146
153
|
def _raise_git_error(
|
|
@@ -153,7 +153,7 @@ async def run_map_reduce(*args: Any, **kwargs: Any) -> ConventionalAnalysis:
|
|
|
153
153
|
|
|
154
154
|
counter = counter or create_token_counter(config)
|
|
155
155
|
reduce_model = resolve_model_name(
|
|
156
|
-
str(model_name or getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.
|
|
156
|
+
str(model_name or getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.8")))
|
|
157
157
|
)
|
|
158
158
|
map_model = resolve_model_name(str(getattr(config, "summary_model", getattr(config, "model", reduce_model))))
|
|
159
159
|
observations = await observe_diff_files(str(diff), map_model, config, counter)
|
|
@@ -80,37 +80,33 @@ class ResolvedApiMode(StrEnum):
|
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
_MODEL_ALIASES = {
|
|
83
|
-
"sonnet": "claude-sonnet-4.
|
|
84
|
-
"s": "claude-sonnet-4.
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
83
|
+
"sonnet": "claude-sonnet-4.6",
|
|
84
|
+
"s": "claude-sonnet-4.6",
|
|
85
|
+
"sonnet-4.6": "claude-sonnet-4.6",
|
|
86
|
+
"opus": "claude-opus-4.8",
|
|
87
|
+
"o": "claude-opus-4.8",
|
|
88
|
+
"o4.8": "claude-opus-4.8",
|
|
88
89
|
"haiku": "claude-haiku-4-5",
|
|
89
90
|
"h": "claude-haiku-4-5",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"3.7": "claude-3.7-sonnet",
|
|
93
|
-
"sonnet-3.7": "claude-3.7-sonnet",
|
|
94
|
-
"gpt5": "gpt-5",
|
|
95
|
-
"g5": "gpt-5",
|
|
91
|
+
"gpt5": "gpt-5.5",
|
|
92
|
+
"g5": "gpt-5.5",
|
|
96
93
|
"gpt5-pro": "gpt-5-pro",
|
|
97
|
-
"gpt5-mini": "gpt-5-mini",
|
|
98
|
-
"gpt5-codex": "gpt-5-codex",
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"g2.5": "gemini-2.5-pro",
|
|
107
|
-
"flash": "gemini-2.5-flash",
|
|
108
|
-
"g2.5-flash": "gemini-2.5-flash",
|
|
109
|
-
"flash-lite": "gemini-2.5-flash-lite",
|
|
94
|
+
"gpt5-mini": "gpt-5.4-mini",
|
|
95
|
+
"gpt5-codex": "gpt-5.3-codex",
|
|
96
|
+
"spark": "gpt-5.3-codex-spark",
|
|
97
|
+
"gemini": "gemini-3.5-flash",
|
|
98
|
+
"g3.5": "gemini-3.5-flash",
|
|
99
|
+
"flash": "gemini-3.5-flash",
|
|
100
|
+
"g3.5-flash": "gemini-3.5-flash",
|
|
101
|
+
"lite": "gemini-3.1-flash-lite",
|
|
102
|
+
"flash-lite": "gemini-3.1-flash-lite",
|
|
110
103
|
"qwen": "qwen-3-coder-480b",
|
|
111
104
|
"q480b": "qwen-3-coder-480b",
|
|
105
|
+
"glm": "glm-4.7",
|
|
106
|
+
"glm4.7": "glm-4.7",
|
|
112
107
|
"glm4.6": "glm-4.6",
|
|
113
108
|
"glm4.5": "glm-4.5",
|
|
109
|
+
"glm-flash": "glm-4.7-flash",
|
|
114
110
|
"glm-air": "glm-4.5-air",
|
|
115
111
|
}
|
|
116
112
|
|
|
@@ -62,7 +62,7 @@ def create_token_counter(config: object) -> TokenCounter:
|
|
|
62
62
|
return TokenCounter(
|
|
63
63
|
api_base_url=str(getattr(config, "api_base_url", "http://localhost:4000")),
|
|
64
64
|
api_key=getattr(config, "api_key", None),
|
|
65
|
-
model=str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.
|
|
65
|
+
model=str(getattr(config, "analysis_model", getattr(config, "model", "claude-opus-4.8"))),
|
|
66
66
|
timeout=float(getattr(config, "connect_timeout_secs", 10) or 10),
|
|
67
67
|
)
|
|
68
68
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lgit-cli"
|
|
7
|
-
version = "
|
|
7
|
+
version = "4.0.1"
|
|
8
8
|
description = "AI-powered git commit message generator using Claude and other LLMs via OpenAI-compatible APIs"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.14"
|
|
@@ -12,7 +12,7 @@ from lgit.tokens import TokenCounter
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def _test_counter() -> TokenCounter:
|
|
15
|
-
return TokenCounter.new("http://localhost:4000", None, "claude-sonnet-4.
|
|
15
|
+
return TokenCounter.new("http://localhost:4000", None, "claude-sonnet-4.6")
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
def _file_with_tokens(filename: str, token_estimate: int) -> FileDiff:
|
|
@@ -38,8 +38,8 @@ def test_commit_type_vocabulary_and_model_aliases_are_resource_backed() -> None:
|
|
|
38
38
|
assert CommitType.from_raw("feature") == "feat"
|
|
39
39
|
assert ConventionalCommit.from_raw(commit_type="configuration", summary="updated settings").commit_type == "config"
|
|
40
40
|
|
|
41
|
-
assert resolve_model_name("sonnet") == "claude-sonnet-4.
|
|
42
|
-
assert resolve_model_name("gpt5-codex") == "gpt-5-codex"
|
|
41
|
+
assert resolve_model_name("sonnet") == "claude-sonnet-4.6"
|
|
42
|
+
assert resolve_model_name("gpt5-codex") == "gpt-5.3-codex"
|
|
43
43
|
assert resolve_model_name("custom/provider-model") == "custom/provider-model"
|
|
44
44
|
|
|
45
45
|
|
|
@@ -16,17 +16,17 @@ from lgit.models import (
|
|
|
16
16
|
@pytest.mark.parametrize(
|
|
17
17
|
("alias", "resolved"),
|
|
18
18
|
[
|
|
19
|
-
("sonnet", "claude-sonnet-4.
|
|
20
|
-
("s", "claude-sonnet-4.
|
|
21
|
-
("opus", "claude-opus-4.
|
|
22
|
-
("o", "claude-opus-4.
|
|
19
|
+
("sonnet", "claude-sonnet-4.6"),
|
|
20
|
+
("s", "claude-sonnet-4.6"),
|
|
21
|
+
("opus", "claude-opus-4.8"),
|
|
22
|
+
("o", "claude-opus-4.8"),
|
|
23
23
|
("haiku", "claude-haiku-4-5"),
|
|
24
24
|
("h", "claude-haiku-4-5"),
|
|
25
|
-
("gpt5", "gpt-5"),
|
|
26
|
-
("g5", "gpt-5"),
|
|
27
|
-
("gemini", "gemini-
|
|
28
|
-
("flash", "gemini-
|
|
29
|
-
("claude-sonnet-4.
|
|
25
|
+
("gpt5", "gpt-5.5"),
|
|
26
|
+
("g5", "gpt-5.5"),
|
|
27
|
+
("gemini", "gemini-3.5-flash"),
|
|
28
|
+
("flash", "gemini-3.5-flash"),
|
|
29
|
+
("claude-sonnet-4.6", "claude-sonnet-4.6"),
|
|
30
30
|
("custom-model", "custom-model"),
|
|
31
31
|
],
|
|
32
32
|
)
|
|
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
|
|
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
|
|
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
|
|
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
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/build-deps-rusqlite/input/scope_candidates.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/chore-version-bump/input/scope_candidates.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/golden/analysis.json
RENAMED
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-hybrid-pq-signatures/input/context.toml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/context.toml
RENAMED
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/diff.patch
RENAMED
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/feat-whitespace-classification/input/stat.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/fix-staged-index-drift/input/scope_candidates.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/golden/analysis.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lgit_cli-3.7.0 → lgit_cli-4.0.1}/tests/fixtures/large-python-migration/input/scope_candidates.txt
RENAMED
|
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
|
|
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
|
|
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
|