gitwise-cli 0.34.2__tar.gz → 0.35.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.
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/CHANGELOG.md +16 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/PKG-INFO +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/__init__.py +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/__main__.py +3 -3
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_cli_dispatch.py +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_cli_introspection.py +6 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_cli_parser.py +6 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_i18n_data.json +4 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/context.py +20 -5
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/snapshot.py +8 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/pyproject.toml +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/rules/gitwise.md +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/codex/agents/gitwise.toml.template +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/continue/rules/gitwise.md.template +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/cursor/rules/gitwise.mdc.template +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/opencode/agents/gitwise.md.template +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/pi/skills/gitwise.md.template +1 -1
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/context.json +6 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/context.json +15 -1
- gitwise_cli-0.35.1/tests/test_context.py +63 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_snapshot.py +13 -0
- gitwise_cli-0.34.2/tests/test_context.py +0 -29
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/.gitignore +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/LICENSE +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/README.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/bin/gitwise +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/bin/gw +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_cli_completions.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_cli_setup_agents.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_paths.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/_runtime_config.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/audit.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/branches.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/clean.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/commit.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/conflicts.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/design.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/diff.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/doctor.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/git.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/health.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/i18n.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/log.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/merge.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/optimize.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/output.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/pick.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/pr.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/py.typed +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/schema.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/__init__.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/__init__.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/aider.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/base.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/codex.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/continue_adapter.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/cursor.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/opencode.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/adapters/pi.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/exec.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/format.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/plan.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/plan_gitfiles.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/plan_skills.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/__init__.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/aider.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/base.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/claude.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/codex.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/continue_adapter.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/cursor.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/opencode.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/pi.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/state.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/types.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/show.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/stash.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/status.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/suggest.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/summarize.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/sync.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/tag.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/undo.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/update.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/__init__.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/git_output.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/in_progress.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/json_envelope.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/parsing.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/secret_scan.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/utils/types.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/worktree.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/install.sh +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/agents/skills/git-audit/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/agents/skills/git-clean/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/agents/skills/git-optimize/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/aider/CONVENTIONS.md.template +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/aider/aider.conf.yml.template +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/CLAUDE.md.template +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/settings.json.template +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/skills/git-audit/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/skills/git-clean/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/claude/skills/git-optimize/SKILL.md +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/git-config-modern.txt +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/hooks/commit-msg +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/hooks/pre-commit +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/audit.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/branches.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/clean.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/commands.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/commit.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/completions.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/conflicts.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/diff.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/doctor.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/health.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/log.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/merge.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/optimize.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/pick.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/pr.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/schema.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/setup-agents.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/setup.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/show.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/snapshot.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/stash.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/status.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/suggest.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/summarize.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/sync.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/tag.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/undo.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/update.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/input/worktree.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/audit.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/branches.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/clean.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/commands.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/commit.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/conflicts.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/diff.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/doctor.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/health.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/log.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/merge.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/optimize.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/pick.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/pr.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/setup-agents.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/setup.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/snapshot.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/stash.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/status.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/suggest.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/summarize.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/sync.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/tag.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/undo.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/update.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/share/schemas/v1/output/worktree.json +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/__init__.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/conftest.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_adapters.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_audit.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_branches.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_clean.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_commands.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_commit.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_conflicts.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_design.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_diff.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_doctor.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_edge_cases.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_envelope_contract.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_git.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_git_output_utils.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_health.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_i18n.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_in_progress.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_json_envelope_utils.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_log.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_main.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_md_links_script.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_merge.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_optimize.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_output.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_parsing_utils.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_pick.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_pr.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_roadmap_baseline_script.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_sa_plan.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_sa_unit.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_schema_catalog.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_secret_scan.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_setup.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_setup_agents.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_show.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_stash.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_status.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_suggest.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_summarize.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_sync.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_sync_changelog_es_script.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_tag.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_types.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_undo.py +0 -0
- {gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/tests/test_worktree.py +0 -0
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## v0.35.1 (2026-07-22)
|
|
7
|
+
|
|
8
|
+
### Fix
|
|
9
|
+
|
|
10
|
+
- **snapshot**: honor canonical agents layout
|
|
11
|
+
|
|
12
|
+
## v0.35.0 (2026-07-22)
|
|
13
|
+
|
|
14
|
+
### Feat
|
|
15
|
+
|
|
16
|
+
- **context**: bound agent output with truncation metadata
|
|
17
|
+
|
|
18
|
+
### Fix
|
|
19
|
+
|
|
20
|
+
- **cli**: keep JSON Lines free of human timing
|
|
21
|
+
|
|
6
22
|
## v0.34.2 (2026-07-22)
|
|
7
23
|
|
|
8
24
|
### Fix
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitwise-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.35.1
|
|
4
4
|
Summary: Python CLI for optimizing git workflows and Claude Code integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/drzioner/gitwise
|
|
6
6
|
Project-URL: Repository, https://github.com/drzioner/gitwise
|
|
@@ -113,7 +113,8 @@ def main() -> int:
|
|
|
113
113
|
reset_runtime_config()
|
|
114
114
|
|
|
115
115
|
set_json_pretty(args.json_pretty)
|
|
116
|
-
|
|
116
|
+
machine_output = args.json or getattr(args, "json_lines", False)
|
|
117
|
+
set_json_mode(machine_output)
|
|
117
118
|
|
|
118
119
|
if args.lang:
|
|
119
120
|
set_locale(args.lang)
|
|
@@ -147,8 +148,7 @@ def main() -> int:
|
|
|
147
148
|
ret = 1
|
|
148
149
|
|
|
149
150
|
elapsed = time.monotonic() - start
|
|
150
|
-
|
|
151
|
-
if not as_json and elapsed > 0.2 and args.command not in ("doctor",):
|
|
151
|
+
if not machine_output and elapsed > 0.2 and args.command not in ("doctor",):
|
|
152
152
|
print_dim(t("completed_in", elapsed=f"{elapsed:.1f}"))
|
|
153
153
|
|
|
154
154
|
return ret
|
|
@@ -328,7 +328,7 @@ def _run_context(args: argparse.Namespace) -> int:
|
|
|
328
328
|
"""Dispatch to ``context`` subcommand."""
|
|
329
329
|
from gitwise.context import run_context
|
|
330
330
|
|
|
331
|
-
return run_context(as_json=args.json)
|
|
331
|
+
return run_context(max_entries=args.max_entries, as_json=args.json)
|
|
332
332
|
|
|
333
333
|
|
|
334
334
|
def _run_health(args: argparse.Namespace) -> int:
|
|
@@ -233,7 +233,12 @@ def _action_property_schema(action: argparse.Action) -> dict[str, object]:
|
|
|
233
233
|
|
|
234
234
|
# A "limit"/"max-count" argument is a positive-integer bound; surface that
|
|
235
235
|
# in the input schema so consumers know 0/negative are invalid.
|
|
236
|
-
if value_schema["type"] == "integer" and action.dest in {
|
|
236
|
+
if value_schema["type"] == "integer" and action.dest in {
|
|
237
|
+
"limit",
|
|
238
|
+
"max_count",
|
|
239
|
+
"max_entries",
|
|
240
|
+
"maxcount",
|
|
241
|
+
}:
|
|
237
242
|
value_schema["minimum"] = 1
|
|
238
243
|
|
|
239
244
|
description = "" if action.help is argparse.SUPPRESS else (action.help or "")
|
|
@@ -353,6 +353,12 @@ def build_parser() -> argparse.ArgumentParser:
|
|
|
353
353
|
p.add_argument("--yes", "-y", action="store_true", help="skip confirmation for --hard")
|
|
354
354
|
|
|
355
355
|
p = sub.add_parser("context", help="enriched repo snapshot for LLMs", parents=[parent])
|
|
356
|
+
p.add_argument(
|
|
357
|
+
"--max-entries",
|
|
358
|
+
type=int,
|
|
359
|
+
default=100,
|
|
360
|
+
help="maximum directory tree entries (default: 100)",
|
|
361
|
+
)
|
|
356
362
|
|
|
357
363
|
p = sub.add_parser("health", help="repo health score (0-100)", parents=[parent])
|
|
358
364
|
|
|
@@ -395,6 +395,10 @@
|
|
|
395
395
|
"es": "## Tipos de archivo",
|
|
396
396
|
"en": "## File Types"
|
|
397
397
|
},
|
|
398
|
+
"ctx_invalid_max_entries": {
|
|
399
|
+
"es": "--max-entries debe ser mayor que cero",
|
|
400
|
+
"en": "--max-entries must be greater than zero"
|
|
401
|
+
},
|
|
398
402
|
"ctx_more_entries": {
|
|
399
403
|
"es": " ... ({count} entradas más)",
|
|
400
404
|
"en": " ... ({count} more entries)"
|
|
@@ -12,10 +12,13 @@ from gitwise.output import (
|
|
|
12
12
|
print_dim,
|
|
13
13
|
print_header,
|
|
14
14
|
print_json,
|
|
15
|
+
report_error,
|
|
15
16
|
status,
|
|
16
17
|
)
|
|
17
18
|
from gitwise.utils.json_envelope import ok_envelope
|
|
18
19
|
|
|
20
|
+
DEFAULT_MAX_ENTRIES = 100
|
|
21
|
+
|
|
19
22
|
|
|
20
23
|
def _directory_tree(root: Path, max_depth: int = 3) -> list[str]:
|
|
21
24
|
"""Return Unicode box-drawing lines for the directory tree, skipping common noise dirs."""
|
|
@@ -118,14 +121,24 @@ def _branch_topology(root: Path) -> dict[str, list[str]]:
|
|
|
118
121
|
return {"local": local, "remote": remote}
|
|
119
122
|
|
|
120
123
|
|
|
121
|
-
def run_context(*, as_json: bool = False) -> int:
|
|
124
|
+
def run_context(*, max_entries: int = DEFAULT_MAX_ENTRIES, as_json: bool = False) -> int:
|
|
122
125
|
"""Entry point for the ``gitwise context`` command."""
|
|
123
126
|
root = require_root(as_json=as_json, command="context")
|
|
124
127
|
if root is None:
|
|
125
128
|
return 1
|
|
129
|
+
if max_entries <= 0:
|
|
130
|
+
return report_error(
|
|
131
|
+
"context",
|
|
132
|
+
as_json=as_json,
|
|
133
|
+
msg=t("ctx_invalid_max_entries"),
|
|
134
|
+
code="invalid_max_entries",
|
|
135
|
+
)
|
|
126
136
|
|
|
127
137
|
with status(t("status_context_scan")):
|
|
128
|
-
|
|
138
|
+
full_tree = _directory_tree(root)
|
|
139
|
+
tree = full_tree[:max_entries]
|
|
140
|
+
tree_total = len(full_tree)
|
|
141
|
+
tree_truncated = tree_total > len(tree)
|
|
129
142
|
contributors = _top_contributors(root)
|
|
130
143
|
file_types = _file_type_breakdown(root)
|
|
131
144
|
todo_fixme = _todo_fixme_counts(root)
|
|
@@ -140,6 +153,8 @@ def run_context(*, as_json: bool = False) -> int:
|
|
|
140
153
|
"context",
|
|
141
154
|
data={
|
|
142
155
|
"tree": tree,
|
|
156
|
+
"tree_total": tree_total,
|
|
157
|
+
"tree_truncated": tree_truncated,
|
|
143
158
|
"contributors": contributors,
|
|
144
159
|
"file_types": file_types,
|
|
145
160
|
"todo_fixme": todo_fixme,
|
|
@@ -150,10 +165,10 @@ def run_context(*, as_json: bool = False) -> int:
|
|
|
150
165
|
)
|
|
151
166
|
else:
|
|
152
167
|
print_header(t("ctx_directory_tree"))
|
|
153
|
-
for ln in tree
|
|
168
|
+
for ln in tree:
|
|
154
169
|
info(f" {ln}")
|
|
155
|
-
if
|
|
156
|
-
print_dim(t("ctx_more_entries", count=str(len(tree)
|
|
170
|
+
if tree_truncated:
|
|
171
|
+
print_dim(t("ctx_more_entries", count=str(tree_total - len(tree))))
|
|
157
172
|
print_blank()
|
|
158
173
|
if contributors:
|
|
159
174
|
print_bracket(t("ctx_top_contributors"))
|
|
@@ -10,6 +10,13 @@ from gitwise.output import debug, print_header, print_json, status
|
|
|
10
10
|
from gitwise.utils.json_envelope import ok_envelope
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
def _snapshot_relative_path(root: Path) -> str:
|
|
14
|
+
"""Return the snapshot path for the repository's active agent layout."""
|
|
15
|
+
if (root / ".agents").is_dir():
|
|
16
|
+
return ".agents/git-snapshot.md"
|
|
17
|
+
return ".claude/git-snapshot.md"
|
|
18
|
+
|
|
19
|
+
|
|
13
20
|
def _append_branch_section(lines: list[str], *, root: Path) -> None:
|
|
14
21
|
"""Append the current branch section to *lines*."""
|
|
15
22
|
branch = git_run(["branch", "--show-current"], cwd=root, check=False)
|
|
@@ -105,7 +112,7 @@ def run_snapshot(*, as_json: bool = False) -> int:
|
|
|
105
112
|
return 1
|
|
106
113
|
|
|
107
114
|
with status(t("status_snapshot_gen")):
|
|
108
|
-
path = generate_snapshot(root)
|
|
115
|
+
path = generate_snapshot(root, relative_path=_snapshot_relative_path(root))
|
|
109
116
|
|
|
110
117
|
if as_json:
|
|
111
118
|
print_json(ok_envelope("snapshot", path=str(path)))
|
|
@@ -9,7 +9,7 @@ globs: "**/*"
|
|
|
9
9
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
10
10
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
11
11
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
12
|
-
- Snapshot: `gitwise snapshot`
|
|
12
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
13
13
|
|
|
14
14
|
## Shell note
|
|
15
15
|
|
|
@@ -10,7 +10,7 @@ developer_instructions = """
|
|
|
10
10
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
11
11
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
12
12
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
13
|
-
- Snapshot: `gitwise snapshot`
|
|
13
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
14
14
|
|
|
15
15
|
## Shell note
|
|
16
16
|
|
|
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
|
|
|
8
8
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
9
9
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
10
10
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
11
|
-
- Snapshot: `gitwise snapshot`
|
|
11
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
12
12
|
- Audit: `gitwise audit --quick` — before large commits
|
|
13
13
|
- Clean: `gitwise clean --branches` — remove stale branches
|
|
14
14
|
- Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
|
|
@@ -10,7 +10,7 @@ alwaysApply: true
|
|
|
10
10
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
11
11
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
12
12
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
13
|
-
- Snapshot: `gitwise snapshot`
|
|
13
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
14
14
|
- Audit: `gitwise audit --quick` — before large commits
|
|
15
15
|
- Clean: `gitwise clean --branches` — remove stale branches
|
|
16
16
|
- Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
|
|
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
|
|
|
8
8
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
9
9
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
10
10
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
11
|
-
- Snapshot: `gitwise snapshot`
|
|
11
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
12
12
|
- Audit: `gitwise audit --quick` — before large commits
|
|
13
13
|
- Clean: `gitwise clean --branches` — remove stale branches
|
|
14
14
|
- Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
|
|
@@ -8,7 +8,7 @@ description: Use gitwise CLI for git operations — gitwise diff, summarize, wor
|
|
|
8
8
|
- Changed files: `gitwise diff` — never raw `git diff`
|
|
9
9
|
- Status + log: `gitwise summarize` — never raw `git status` or `git log`
|
|
10
10
|
- Branch switch: `gitwise worktree new <branch>` — never `git stash + checkout`
|
|
11
|
-
- Snapshot: `gitwise snapshot`
|
|
11
|
+
- Snapshot: `gitwise snapshot`; writes `.agents/git-snapshot.md` when `.agents/` exists, otherwise `.claude/git-snapshot.md`
|
|
12
12
|
- Audit: `gitwise audit --quick` — before large commits
|
|
13
13
|
- Clean: `gitwise clean --branches` — remove stale branches
|
|
14
14
|
- Optimize: `gitwise optimize` — gc, pack-refs, commit-graph
|
|
@@ -31,6 +31,12 @@
|
|
|
31
31
|
"type": "boolean",
|
|
32
32
|
"description": "pretty-print JSON output",
|
|
33
33
|
"default": false
|
|
34
|
+
},
|
|
35
|
+
"max_entries": {
|
|
36
|
+
"type": "integer",
|
|
37
|
+
"minimum": 1,
|
|
38
|
+
"description": "maximum directory tree entries (default: 100)",
|
|
39
|
+
"default": 100
|
|
34
40
|
}
|
|
35
41
|
}
|
|
36
42
|
}
|
|
@@ -52,7 +52,21 @@
|
|
|
52
52
|
},
|
|
53
53
|
"data": {
|
|
54
54
|
"type": "object",
|
|
55
|
-
"properties": {
|
|
55
|
+
"properties": {
|
|
56
|
+
"tree": {
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"type": "string"
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"tree_total": {
|
|
63
|
+
"type": "integer",
|
|
64
|
+
"minimum": 0
|
|
65
|
+
},
|
|
66
|
+
"tree_truncated": {
|
|
67
|
+
"type": "boolean"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
56
70
|
}
|
|
57
71
|
}
|
|
58
72
|
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"""Tests for gitwise context command."""
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
|
|
5
|
+
from conftest import run_gitwise
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def test_context_json(tmp_git_repo):
|
|
9
|
+
r = run_gitwise("context", "--json", cwd=tmp_git_repo)
|
|
10
|
+
assert r.returncode == 0
|
|
11
|
+
data = json.loads(r.stdout)
|
|
12
|
+
assert data["v"] == 3
|
|
13
|
+
inner = data["data"]
|
|
14
|
+
assert isinstance(inner["tree"], list)
|
|
15
|
+
assert isinstance(inner["contributors"], list)
|
|
16
|
+
assert isinstance(inner["file_types"], dict)
|
|
17
|
+
assert "todo_fixme" in inner
|
|
18
|
+
assert "branches" in inner
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def test_context_human(tmp_git_repo):
|
|
22
|
+
r = run_gitwise("context", cwd=tmp_git_repo)
|
|
23
|
+
assert r.returncode == 0
|
|
24
|
+
assert "Directory Tree" in r.stdout
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def test_context_json_limits_tree_and_reports_truncation(tmp_git_repo):
|
|
28
|
+
for index in range(5):
|
|
29
|
+
(tmp_git_repo / f"file-{index}.txt").write_text("x")
|
|
30
|
+
|
|
31
|
+
r = run_gitwise("context", "--max-entries", "2", "--json", cwd=tmp_git_repo)
|
|
32
|
+
|
|
33
|
+
assert r.returncode == 0
|
|
34
|
+
data = json.loads(r.stdout)["data"]
|
|
35
|
+
assert len(data["tree"]) == 2
|
|
36
|
+
assert data["tree_total"] >= 5
|
|
37
|
+
assert data["tree_truncated"] is True
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def test_context_json_rejects_non_positive_max_entries(tmp_git_repo):
|
|
41
|
+
r = run_gitwise("context", "--max-entries", "0", "--json", cwd=tmp_git_repo)
|
|
42
|
+
|
|
43
|
+
assert r.returncode == 1
|
|
44
|
+
data = json.loads(r.stdout)
|
|
45
|
+
assert data["errors"][0]["code"] == "invalid_max_entries"
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def test_context_json_default_limits_tree_to_one_hundred_entries(tmp_git_repo):
|
|
49
|
+
for index in range(105):
|
|
50
|
+
(tmp_git_repo / f"wide-file-{index:03d}.txt").write_text("x")
|
|
51
|
+
|
|
52
|
+
r = run_gitwise("context", "--json", cwd=tmp_git_repo)
|
|
53
|
+
|
|
54
|
+
assert r.returncode == 0
|
|
55
|
+
data = json.loads(r.stdout)["data"]
|
|
56
|
+
assert len(data["tree"]) == 100
|
|
57
|
+
assert data["tree_total"] >= 105
|
|
58
|
+
assert data["tree_truncated"] is True
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
def test_context_not_git(tmp_path):
|
|
62
|
+
r = run_gitwise("context", cwd=tmp_path)
|
|
63
|
+
assert r.returncode == 1
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"""Tests for gitwise snapshot."""
|
|
2
2
|
|
|
3
|
+
import json
|
|
3
4
|
import time
|
|
4
5
|
|
|
5
6
|
from conftest import run_gitwise as _run
|
|
@@ -12,6 +13,18 @@ def test_snapshot_creates_file(tmp_git_repo):
|
|
|
12
13
|
assert snapshot.exists()
|
|
13
14
|
|
|
14
15
|
|
|
16
|
+
def test_snapshot_uses_agents_layout_when_present(tmp_git_repo):
|
|
17
|
+
(tmp_git_repo / ".agents").mkdir()
|
|
18
|
+
|
|
19
|
+
result = _run("snapshot", "--json", cwd=tmp_git_repo)
|
|
20
|
+
|
|
21
|
+
assert result.returncode == 0
|
|
22
|
+
data = json.loads(result.stdout)["data"]
|
|
23
|
+
assert data["path"].endswith(".agents/git-snapshot.md")
|
|
24
|
+
assert (tmp_git_repo / ".agents" / "git-snapshot.md").exists()
|
|
25
|
+
assert not (tmp_git_repo / ".claude" / "git-snapshot.md").exists()
|
|
26
|
+
|
|
27
|
+
|
|
15
28
|
def test_snapshot_has_generated_at(tmp_git_repo):
|
|
16
29
|
_run("snapshot", cwd=tmp_git_repo)
|
|
17
30
|
content = (tmp_git_repo / ".claude" / "git-snapshot.md").read_text()
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
"""Tests for gitwise context command."""
|
|
2
|
-
|
|
3
|
-
import json
|
|
4
|
-
|
|
5
|
-
from conftest import run_gitwise
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
def test_context_json(tmp_git_repo):
|
|
9
|
-
r = run_gitwise("context", "--json", cwd=tmp_git_repo)
|
|
10
|
-
assert r.returncode == 0
|
|
11
|
-
data = json.loads(r.stdout)
|
|
12
|
-
assert data["v"] == 3
|
|
13
|
-
inner = data["data"]
|
|
14
|
-
assert isinstance(inner["tree"], list)
|
|
15
|
-
assert isinstance(inner["contributors"], list)
|
|
16
|
-
assert isinstance(inner["file_types"], dict)
|
|
17
|
-
assert "todo_fixme" in inner
|
|
18
|
-
assert "branches" in inner
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
def test_context_human(tmp_git_repo):
|
|
22
|
-
r = run_gitwise("context", cwd=tmp_git_repo)
|
|
23
|
-
assert r.returncode == 0
|
|
24
|
-
assert "Directory Tree" in r.stdout
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
def test_context_not_git(tmp_path):
|
|
28
|
-
r = run_gitwise("context", cwd=tmp_path)
|
|
29
|
-
assert r.returncode == 1
|
|
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
|
{gitwise_cli-0.34.2 → gitwise_cli-0.35.1}/gitwise/setup_agents/providers/continue_adapter.py
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
|