agentic-devtools 0.2.53__tar.gz → 0.2.55__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1821) hide show
  1. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/copilot-instructions.md +49 -0
  2. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/PKG-INFO +1 -1
  3. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/_version.py +2 -2
  4. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/copilot/auto_start.py +142 -0
  5. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/github/__init__.py +8 -0
  6. agentic_devtools-0.2.55/agentic_devtools/cli/github/pr_checks_status.py +396 -0
  7. agentic_devtools-0.2.55/agentic_devtools/cli/github/pr_state.py +239 -0
  8. agentic_devtools-0.2.55/agentic_devtools/cli/github/repo_resolution.py +83 -0
  9. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/runner.py +10 -0
  10. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/base.py +17 -7
  11. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/commands.py +17 -3
  12. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/preflight.py +19 -3
  13. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/worktree_setup.py +350 -55
  14. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/pyproject.toml +3 -0
  15. agentic_devtools-0.2.55/tests/unit/cli/copilot/auto_start/test_retry_autostart_cmd.py +451 -0
  16. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__classify_checks.py +96 -0
  17. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__fetch_check_suites.py +105 -0
  18. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__fetch_pr_checks.py +98 -0
  19. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__normalize_repo.py +61 -0
  20. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__reconcile_results.py +138 -0
  21. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test__verify_check_suites.py +104 -0
  22. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test_get_pr_checks_status.py +101 -0
  23. agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status/test_pr_checks_status_command.py +124 -0
  24. agentic_devtools-0.2.55/tests/unit/cli/github/pr_state/test__evaluate_terminal_condition.py +43 -0
  25. agentic_devtools-0.2.55/tests/unit/cli/github/pr_state/test__fetch_pr_with_retry.py +178 -0
  26. agentic_devtools-0.2.55/tests/unit/cli/github/pr_state/test_get_pr_state.py +118 -0
  27. agentic_devtools-0.2.55/tests/unit/cli/github/pr_state/test_pr_state_command.py +84 -0
  28. agentic_devtools-0.2.55/tests/unit/cli/github/repo_resolution/test__get_git_origin_url.py +61 -0
  29. agentic_devtools-0.2.55/tests/unit/cli/github/repo_resolution/test__parse_github_remote_url.py +52 -0
  30. agentic_devtools-0.2.55/tests/unit/cli/github/repo_resolution/test_resolve_github_repo.py +92 -0
  31. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test_clear_state_for_workflow_initiation.py +52 -0
  32. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__ensure_bootstrap_identity.py +1 -1
  33. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_pr_merge_orchestrator_workflow.py +2 -6
  34. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_perform_auto_setup.py +105 -3
  35. agentic_devtools-0.2.55/tests/unit/cli/workflows/worktree_setup/test__focus_vscode_window.py +82 -0
  36. agentic_devtools-0.2.55/tests/unit/cli/workflows/worktree_setup/test__print_agent_instructions_block.py +145 -0
  37. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__run_auto_execute_command.py +193 -91
  38. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__try_terminal_send_fallback.py +88 -11
  39. agentic_devtools-0.2.55/tests/unit/cli/workflows/worktree_setup/test__workflow_prompt_filenames.py +72 -0
  40. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_inject_auto_start_task.py +97 -1
  41. agentic_devtools-0.2.55/tests/unit/cli/workflows/worktree_setup/test_inject_task_permission_settings.py +171 -0
  42. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_setup_worktree_environment.py +20 -5
  43. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_setup_worktree_in_background_sync.py +442 -43
  44. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_start_worktree_setup_background.py +99 -11
  45. agentic_devtools-0.2.55/tests/unit/tools/git/__init__.py +0 -0
  46. agentic_devtools-0.2.55/tests/unit/tools/jira/__init__.py +0 -0
  47. agentic_devtools-0.2.55/tests/workflows/__init__.py +0 -0
  48. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.devcontainer/README.md +0 -0
  49. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.devcontainer/devcontainer.json +0 -0
  50. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/ISSUE_TEMPLATE/speckit-test.md +0 -0
  51. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/MARKDOWN_LINTING.md +0 -0
  52. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/.markdownlint.json +0 -0
  53. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.add-jira-comment.agent.md +0 -0
  54. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.add-pull-request-comment.agent.md +0 -0
  55. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.add-users-to-project-role-batch.agent.md +0 -0
  56. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.add-users-to-project-role.agent.md +0 -0
  57. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.address-copilot-review.agent.md +0 -0
  58. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.advance-workflow.agent.md +0 -0
  59. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.apply-pr-suggestions.initiate.agent.md +0 -0
  60. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.approve-file.agent.md +0 -0
  61. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.approve-pull-request.agent.md +0 -0
  62. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.autonomous-issue-refinement.agent.md +0 -0
  63. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.azure-context-current.agent.md +0 -0
  64. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.azure-context-ensure-login.agent.md +0 -0
  65. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.azure-context-status.agent.md +0 -0
  66. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.azure-context-use.agent.md +0 -0
  67. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.break-down-issue-into-subtasks.initiate.agent.md +0 -0
  68. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.check-user-exists.agent.md +0 -0
  69. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.check-users-exist.agent.md +0 -0
  70. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.clear-workflow.agent.md +0 -0
  71. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.clear.agent.md +0 -0
  72. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.confirm-suggestion-addressed.agent.md +0 -0
  73. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.copilot-auto-start.agent.md +0 -0
  74. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-agdt-bug-issue.agent.md +0 -0
  75. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-agdt-documentation-issue.agent.md +0 -0
  76. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-agdt-feature-issue.agent.md +0 -0
  77. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-agdt-issue.agent.md +0 -0
  78. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-agdt-task-issue.agent.md +0 -0
  79. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-checklist.agent.md +0 -0
  80. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-epic.agent.md +0 -0
  81. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-issue.agent.md +0 -0
  82. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-jira-epic.initiate.agent.md +0 -0
  83. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-jira-issue.initiate.agent.md +0 -0
  84. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-jira-subtask.initiate.agent.md +0 -0
  85. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-pipeline.agent.md +0 -0
  86. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-pull-request.agent.md +0 -0
  87. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.create-subtask.agent.md +0 -0
  88. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.delete.agent.md +0 -0
  89. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.find-role-id-by-name.agent.md +0 -0
  90. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-jira-issue.agent.md +0 -0
  91. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-next-workflow-prompt.agent.md +0 -0
  92. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-pipeline-id.agent.md +0 -0
  93. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-project-role-details.agent.md +0 -0
  94. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-pull-request-details.agent.md +0 -0
  95. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-pull-request-threads.agent.md +0 -0
  96. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-run-details.agent.md +0 -0
  97. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get-workflow.agent.md +0 -0
  98. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.get.agent.md +0 -0
  99. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-force-push.agent.md +0 -0
  100. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-publish.agent.md +0 -0
  101. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-push.agent.md +0 -0
  102. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-save-work.agent.md +0 -0
  103. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-stage.agent.md +0 -0
  104. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.git-sync.agent.md +0 -0
  105. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.list-pipelines.agent.md +0 -0
  106. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.list-project-roles.agent.md +0 -0
  107. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.mark-file-reviewed.agent.md +0 -0
  108. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.mark-pull-request-draft.agent.md +0 -0
  109. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.network-status.agent.md +0 -0
  110. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.optimize-issue-for-ai-agent.initiate.agent.md +0 -0
  111. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.parse-jira-error-report.agent.md +0 -0
  112. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.pr-merge-manager.agent.md +0 -0
  113. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.publish-pull-request.agent.md +0 -0
  114. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.pull-request-review.completion.agent.md +0 -0
  115. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.pull-request-review.decision.agent.md +0 -0
  116. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.pull-request-review.file-review.agent.md +0 -0
  117. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.pull-request-review.initiate.agent.md +0 -0
  118. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.query-app-insights.agent.md +0 -0
  119. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.query-fabric-dap-errors.agent.md +0 -0
  120. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.query-fabric-dap-provisioning.agent.md +0 -0
  121. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.query-fabric-dap-timeline.agent.md +0 -0
  122. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.reject-suggestion-resolution.agent.md +0 -0
  123. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.release-pypi.agent.md +0 -0
  124. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.reply-to-pull-request-thread.agent.md +0 -0
  125. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.request-changes-with-suggestion.agent.md +0 -0
  126. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.request-changes.agent.md +0 -0
  127. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.resolve-merge-conflicts.agent.md +0 -0
  128. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.resolve-thread.agent.md +0 -0
  129. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.review.agent.md +0 -0
  130. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.run-e2e-tests-fabric.agent.md +0 -0
  131. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.run-e2e-tests-synapse.agent.md +0 -0
  132. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.run-wb-patch.agent.md +0 -0
  133. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.set.agent.md +0 -0
  134. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup-certs.agent.md +0 -0
  135. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup-check.agent.md +0 -0
  136. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup-copilot-cli.agent.md +0 -0
  137. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup-gh-cli.agent.md +0 -0
  138. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup-worktree-background.agent.md +0 -0
  139. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.setup.agent.md +0 -0
  140. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.show-checklist.agent.md +0 -0
  141. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.show-other-incomplete-tasks.agent.md +0 -0
  142. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.show.agent.md +0 -0
  143. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.squash-commits.agent.md +0 -0
  144. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.submit-file-review.agent.md +0 -0
  145. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.task-log.agent.md +0 -0
  146. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.task-status.agent.md +0 -0
  147. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.task-wait.agent.md +0 -0
  148. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.tasks-clean.agent.md +0 -0
  149. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.tasks.agent.md +0 -0
  150. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.test-file.agent.md +0 -0
  151. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.test-pattern.agent.md +0 -0
  152. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.test-quick.agent.md +0 -0
  153. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.test.agent.md +0 -0
  154. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.update-checklist.agent.md +0 -0
  155. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.update-jira-issue.agent.md +0 -0
  156. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.update-jira-issue.initiate.agent.md +0 -0
  157. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.update-pipeline.agent.md +0 -0
  158. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.vpn-off.agent.md +0 -0
  159. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.vpn-on.agent.md +0 -0
  160. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.vpn-run.agent.md +0 -0
  161. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.vpn-status.agent.md +0 -0
  162. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.wait-for-run.agent.md +0 -0
  163. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.checklist-creation.agent.md +0 -0
  164. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.commit.agent.md +0 -0
  165. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.completion.agent.md +0 -0
  166. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.implementation-review.agent.md +0 -0
  167. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.implementation.agent.md +0 -0
  168. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.initiate.agent.md +0 -0
  169. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.planning.agent.md +0 -0
  170. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.pull-request.agent.md +0 -0
  171. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.retrieve.agent.md +0 -0
  172. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.setup.agent.md +0 -0
  173. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/agdt.work-on-jira-issue.verification.agent.md +0 -0
  174. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/copilot-instructions.md +0 -0
  175. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/security-scan.agent.md +0 -0
  176. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/senior-python-developer.md +0 -0
  177. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.analyze.agent.md +0 -0
  178. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.checklist.agent.md +0 -0
  179. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.clarify.agent.md +0 -0
  180. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.constitution.agent.md +0 -0
  181. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.implement.agent.md +0 -0
  182. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.plan.agent.md +0 -0
  183. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.specify.agent.md +0 -0
  184. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.tasks.agent.md +0 -0
  185. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/agents/speckit.taskstoissues.agent.md +0 -0
  186. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/.markdownlint.json +0 -0
  187. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.add-jira-comment.prompt.md +0 -0
  188. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.add-pull-request-comment.prompt.md +0 -0
  189. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.add-users-to-project-role-batch.prompt.md +0 -0
  190. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.add-users-to-project-role.prompt.md +0 -0
  191. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.address-copilot-review.prompt.md +0 -0
  192. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.advance-workflow.prompt.md +0 -0
  193. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.apply-pr-suggestions.initiate.prompt.md +0 -0
  194. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.approve-file.prompt.md +0 -0
  195. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.approve-pull-request.prompt.md +0 -0
  196. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.autonomous-issue-refinement.prompt.md +0 -0
  197. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.azure-context-current.prompt.md +0 -0
  198. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.azure-context-ensure-login.prompt.md +0 -0
  199. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.azure-context-status.prompt.md +0 -0
  200. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.azure-context-use.prompt.md +0 -0
  201. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.break-down-issue-into-subtasks.initiate.prompt.md +0 -0
  202. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.check-user-exists.prompt.md +0 -0
  203. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.check-users-exist.prompt.md +0 -0
  204. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.clear-workflow.prompt.md +0 -0
  205. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.clear.prompt.md +0 -0
  206. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.confirm-suggestion-addressed.prompt.md +0 -0
  207. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.copilot-auto-start.prompt.md +0 -0
  208. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-agdt-bug-issue.prompt.md +0 -0
  209. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-agdt-documentation-issue.prompt.md +0 -0
  210. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-agdt-feature-issue.prompt.md +0 -0
  211. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-agdt-issue.prompt.md +0 -0
  212. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-agdt-task-issue.prompt.md +0 -0
  213. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-checklist.prompt.md +0 -0
  214. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-epic.prompt.md +0 -0
  215. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-issue.prompt.md +0 -0
  216. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-jira-epic.initiate.prompt.md +0 -0
  217. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-jira-issue.initiate.prompt.md +0 -0
  218. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-jira-subtask.initiate.prompt.md +0 -0
  219. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-pipeline.prompt.md +0 -0
  220. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-pull-request.prompt.md +0 -0
  221. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.create-subtask.prompt.md +0 -0
  222. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.delete.prompt.md +0 -0
  223. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.find-role-id-by-name.prompt.md +0 -0
  224. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-jira-issue.prompt.md +0 -0
  225. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-next-workflow-prompt.prompt.md +0 -0
  226. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-pipeline-id.prompt.md +0 -0
  227. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-project-role-details.prompt.md +0 -0
  228. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-pull-request-details.prompt.md +0 -0
  229. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-pull-request-threads.prompt.md +0 -0
  230. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-run-details.prompt.md +0 -0
  231. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get-workflow.prompt.md +0 -0
  232. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.get.prompt.md +0 -0
  233. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-force-push.prompt.md +0 -0
  234. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-publish.prompt.md +0 -0
  235. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-push.prompt.md +0 -0
  236. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-save-work.prompt.md +0 -0
  237. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-stage.prompt.md +0 -0
  238. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.git-sync.prompt.md +0 -0
  239. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.list-pipelines.prompt.md +0 -0
  240. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.list-project-roles.prompt.md +0 -0
  241. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.mark-file-reviewed.prompt.md +0 -0
  242. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.mark-pull-request-draft.prompt.md +0 -0
  243. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.network-status.prompt.md +0 -0
  244. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.optimize-issue-for-ai-agent.initiate.prompt.md +0 -0
  245. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.parse-jira-error-report.prompt.md +0 -0
  246. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.pr-merge-manager.prompt.md +0 -0
  247. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.publish-pull-request.prompt.md +0 -0
  248. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.pull-request-review.completion.prompt.md +0 -0
  249. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.pull-request-review.decision.prompt.md +0 -0
  250. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.pull-request-review.file-review.prompt.md +0 -0
  251. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.pull-request-review.initiate.prompt.md +0 -0
  252. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.query-app-insights.prompt.md +0 -0
  253. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.query-fabric-dap-errors.prompt.md +0 -0
  254. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.query-fabric-dap-provisioning.prompt.md +0 -0
  255. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.query-fabric-dap-timeline.prompt.md +0 -0
  256. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.reject-suggestion-resolution.prompt.md +0 -0
  257. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.release-pypi.prompt.md +0 -0
  258. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.reply-to-pull-request-thread.prompt.md +0 -0
  259. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.request-changes-with-suggestion.prompt.md +0 -0
  260. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.request-changes.prompt.md +0 -0
  261. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.resolve-merge-conflicts.prompt.md +0 -0
  262. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.resolve-thread.prompt.md +0 -0
  263. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.review.prompt.md +0 -0
  264. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.run-e2e-tests-fabric.prompt.md +0 -0
  265. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.run-e2e-tests-synapse.prompt.md +0 -0
  266. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.run-wb-patch.prompt.md +0 -0
  267. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.set.prompt.md +0 -0
  268. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup-certs.prompt.md +0 -0
  269. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup-check.prompt.md +0 -0
  270. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup-copilot-cli.prompt.md +0 -0
  271. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup-gh-cli.prompt.md +0 -0
  272. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup-worktree-background.prompt.md +0 -0
  273. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.setup.prompt.md +0 -0
  274. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.show-checklist.prompt.md +0 -0
  275. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.show-other-incomplete-tasks.prompt.md +0 -0
  276. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.show.prompt.md +0 -0
  277. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.squash-commits.prompt.md +0 -0
  278. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.submit-file-review.prompt.md +0 -0
  279. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.task-log.prompt.md +0 -0
  280. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.task-status.prompt.md +0 -0
  281. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.task-wait.prompt.md +0 -0
  282. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.tasks-clean.prompt.md +0 -0
  283. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.tasks.prompt.md +0 -0
  284. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.test-file.prompt.md +0 -0
  285. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.test-pattern.prompt.md +0 -0
  286. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.test-quick.prompt.md +0 -0
  287. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.test.prompt.md +0 -0
  288. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.update-checklist.prompt.md +0 -0
  289. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.update-jira-issue.initiate.prompt.md +0 -0
  290. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.update-jira-issue.prompt.md +0 -0
  291. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.update-pipeline.prompt.md +0 -0
  292. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.vpn-off.prompt.md +0 -0
  293. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.vpn-on.prompt.md +0 -0
  294. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.vpn-run.prompt.md +0 -0
  295. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.vpn-status.prompt.md +0 -0
  296. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.wait-for-run.prompt.md +0 -0
  297. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.checklist-creation.prompt.md +0 -0
  298. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.commit.prompt.md +0 -0
  299. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.completion.prompt.md +0 -0
  300. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.implementation-review.prompt.md +0 -0
  301. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.implementation.prompt.md +0 -0
  302. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.initiate.prompt.md +0 -0
  303. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.planning.prompt.md +0 -0
  304. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.pull-request.prompt.md +0 -0
  305. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.retrieve.prompt.md +0 -0
  306. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.setup.prompt.md +0 -0
  307. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/agdt.work-on-jira-issue.verification.prompt.md +0 -0
  308. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.analyze.prompt.md +0 -0
  309. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.checklist.prompt.md +0 -0
  310. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.clarify.prompt.md +0 -0
  311. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.constitution.prompt.md +0 -0
  312. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.implement.prompt.md +0 -0
  313. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.plan.prompt.md +0 -0
  314. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.specify.prompt.md +0 -0
  315. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.tasks.prompt.md +0 -0
  316. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/prompts/speckit.taskstoissues.prompt.md +0 -0
  317. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/check-idempotency.sh +0 -0
  318. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/copilot_generate.py +0 -0
  319. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/create-spec-pr.sh +0 -0
  320. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/generate-spec-from-issue.sh +0 -0
  321. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/post-issue-comment.sh +0 -0
  322. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/sanitize-branch-name.sh +0 -0
  323. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/templates/.markdownlint.json +0 -0
  324. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/templates/already-processed.md +0 -0
  325. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/templates/completed.md +0 -0
  326. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/templates/failed.md +0 -0
  327. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/templates/started.md +0 -0
  328. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/scripts/speckit-trigger/validate-label.sh +0 -0
  329. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/README.md +0 -0
  330. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/auto-fix-on-failure.yml +0 -0
  331. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/copilot-review-gate.yml +0 -0
  332. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/copilot-setup-steps.yml +0 -0
  333. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/lint.yml +0 -0
  334. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/publish.yml +0 -0
  335. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/release.yml +0 -0
  336. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/check-release-exists.sh +0 -0
  337. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/create-github-release.sh +0 -0
  338. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/create-release-packages.ps1 +0 -0
  339. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/create-release-packages.sh +0 -0
  340. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/generate-release-notes.sh +0 -0
  341. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/get-next-version.sh +0 -0
  342. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/scripts/update-version.sh +0 -0
  343. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/security-scan-on-merge.yml +0 -0
  344. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/speckit-implement-trigger.yml +0 -0
  345. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/speckit-issue-trigger.yml +0 -0
  346. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/test.yml +0 -0
  347. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.github/workflows/workflow-tests.yml +0 -0
  348. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.gitignore +0 -0
  349. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.markdownlint-cli2.jsonc +0 -0
  350. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.markdownlint.json +0 -0
  351. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.push-trigger +0 -0
  352. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/SDD_QUICK_REFERENCE.md +0 -0
  353. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/memory/constitution.md +0 -0
  354. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/bash/check-prerequisites.sh +0 -0
  355. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/bash/common.sh +0 -0
  356. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/bash/create-new-feature.sh +0 -0
  357. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/bash/setup-plan.sh +0 -0
  358. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/bash/update-agent-context.sh +0 -0
  359. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/powershell/check-prerequisites.ps1 +0 -0
  360. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/powershell/common.ps1 +0 -0
  361. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/powershell/create-new-feature.ps1 +0 -0
  362. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/powershell/setup-plan.ps1 +0 -0
  363. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/scripts/powershell/update-agent-context.ps1 +0 -0
  364. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/agent-file-template.md +0 -0
  365. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/checklist-template.md +0 -0
  366. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/.markdownlint.json +0 -0
  367. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/analyze.md +0 -0
  368. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/checklist.md +0 -0
  369. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/clarify.md +0 -0
  370. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/constitution.md +0 -0
  371. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/implement.md +0 -0
  372. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/plan.md +0 -0
  373. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/specify.md +0 -0
  374. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/tasks.md +0 -0
  375. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/commands/taskstoissues.md +0 -0
  376. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/plan-template.md +0 -0
  377. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/spec-template.md +0 -0
  378. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/tasks-template.md +0 -0
  379. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.specify/templates/vscode-settings.json +0 -0
  380. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/.work-folder-info +0 -0
  381. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/AUDIT-LOG.md +0 -0
  382. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/CHANGELOG.md +0 -0
  383. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/COMMIT_CONVENTION.md +0 -0
  384. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/CONTRIBUTING.md +0 -0
  385. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/LICENSE +0 -0
  386. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/PR_DESCRIPTION.md +0 -0
  387. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/PR_INSTRUCTIONS.md +0 -0
  388. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/README.md +0 -0
  389. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/RELEASING.md +0 -0
  390. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/SECURITY_SCANNING.md +0 -0
  391. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/SOLUTION_SUMMARY.md +0 -0
  392. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/SPEC_DRIVEN_DEVELOPMENT.md +0 -0
  393. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/__init__.py +0 -0
  394. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/_bundled_skills/__init__.py +0 -0
  395. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/_bundled_skills/agents/__init__.py +0 -0
  396. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/_bundled_skills/prompts/__init__.py +0 -0
  397. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/adapters/__init__.py +0 -0
  398. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/adapters/base.py +0 -0
  399. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/adapters/github_adapter.py +0 -0
  400. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/adapters/jira_adapter.py +0 -0
  401. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/adapters/markdown_adapter.py +0 -0
  402. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/agdt_gitignore.py +0 -0
  403. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/background_tasks.py +0 -0
  404. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/__init__.py +0 -0
  405. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/activity_log.py +0 -0
  406. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure/__init__.py +0 -0
  407. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure/app_insights_commands.py +0 -0
  408. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure/auth.py +0 -0
  409. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure/config.py +0 -0
  410. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_context/__init__.py +0 -0
  411. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_context/commands.py +0 -0
  412. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_context/config.py +0 -0
  413. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_context/management.py +0 -0
  414. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/__init__.py +0 -0
  415. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/approve_files.py +0 -0
  416. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/async_commands.py +0 -0
  417. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/auth.py +0 -0
  418. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/batch_review_helpers.py +0 -0
  419. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/commands.py +0 -0
  420. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/config.py +0 -0
  421. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/file_review_commands.py +0 -0
  422. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/helpers.py +0 -0
  423. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/mark_reviewed.py +0 -0
  424. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/pipeline_commands.py +0 -0
  425. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/pr_summary_commands.py +0 -0
  426. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/pull_request_details_commands.py +0 -0
  427. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/request_changes_batch.py +0 -0
  428. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_attribution.py +0 -0
  429. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_commands.py +0 -0
  430. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_config.py +0 -0
  431. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_helpers.py +0 -0
  432. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_jira.py +0 -0
  433. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_models_config.py +0 -0
  434. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_prompts.py +0 -0
  435. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_scaffold.py +0 -0
  436. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_state.py +0 -0
  437. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/review_templates.py +0 -0
  438. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/run_details_commands.py +0 -0
  439. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/status_cascade.py +0 -0
  440. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/suggestion_commands.py +0 -0
  441. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/suggestion_verification.py +0 -0
  442. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/verdict_protocol.py +0 -0
  443. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/azure_devops/vpn_toggle.py +0 -0
  444. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/cert_utils.py +0 -0
  445. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/config/__init__.py +0 -0
  446. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/config/project_config.py +0 -0
  447. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/copilot/__init__.py +0 -0
  448. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/copilot/session.py +0 -0
  449. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/__init__.py +0 -0
  450. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/agdt_branch.py +0 -0
  451. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/async_commands.py +0 -0
  452. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/commands.py +0 -0
  453. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/core.py +0 -0
  454. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/diff.py +0 -0
  455. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/git/operations.py +0 -0
  456. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/github/async_commands.py +0 -0
  457. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/github/issue_commands.py +0 -0
  458. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/github/state_helpers.py +0 -0
  459. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/__init__.py +0 -0
  460. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/adf.py +0 -0
  461. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/async_commands.py +0 -0
  462. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/async_status.py +0 -0
  463. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/commands.py +0 -0
  464. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/comment_commands.py +0 -0
  465. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/config.py +0 -0
  466. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/create_commands.py +0 -0
  467. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/formatting.py +0 -0
  468. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/get_commands.py +0 -0
  469. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/helpers.py +0 -0
  470. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/parse_error_report.py +0 -0
  471. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/role_commands.py +0 -0
  472. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/state_helpers.py +0 -0
  473. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/update_commands.py +0 -0
  474. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/jira/vpn_wrapper.py +0 -0
  475. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/network/__init__.py +0 -0
  476. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/network/commands.py +0 -0
  477. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/network/detection.py +0 -0
  478. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/release/__init__.py +0 -0
  479. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/release/commands.py +0 -0
  480. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/release/helpers.py +0 -0
  481. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/__init__.py +0 -0
  482. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/commands.py +0 -0
  483. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/config_commands.py +0 -0
  484. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/consolidate.py +0 -0
  485. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/dispatch.py +0 -0
  486. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/review/status.py +0 -0
  487. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/__init__.py +0 -0
  488. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/commands.py +0 -0
  489. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/copilot_cli_installer.py +0 -0
  490. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/dependency_checker.py +0 -0
  491. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/gh_cli_installer.py +0 -0
  492. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/platform_detection.py +0 -0
  493. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/pr_workflow.py +0 -0
  494. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/shell_profile.py +0 -0
  495. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/templates/README.md +0 -0
  496. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/templates/review-pr.py +0 -0
  497. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/templates/work-on-issue.py +0 -0
  498. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/setup/workflow_templates.py +0 -0
  499. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/speckit/__init__.py +0 -0
  500. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/speckit/commands.py +0 -0
  501. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/state.py +0 -0
  502. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/subprocess_utils.py +0 -0
  503. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/tasks/__init__.py +0 -0
  504. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/tasks/commands.py +0 -0
  505. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/testing.py +0 -0
  506. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/vpn/__init__.py +0 -0
  507. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/vpn/commands.py +0 -0
  508. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/vpn/runner.py +0 -0
  509. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/vscode_tasks.py +0 -0
  510. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/__init__.py +0 -0
  511. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/advancement.py +0 -0
  512. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/applied_suggestions.py +0 -0
  513. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/checklist.py +0 -0
  514. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/cli/workflows/manager.py +0 -0
  515. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/config.py +0 -0
  516. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/context/__init__.py +0 -0
  517. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/context/models.py +0 -0
  518. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/context/nodes.py +0 -0
  519. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/context/retriever.py +0 -0
  520. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/file_locking.py +0 -0
  521. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/mcp/__init__.py +0 -0
  522. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/mcp/server.py +0 -0
  523. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/orchestration/__init__.py +0 -0
  524. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/orchestration/checkpointing.py +0 -0
  525. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/orchestration/graph_builder.py +0 -0
  526. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/orchestration/pilot_workflow.py +0 -0
  527. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/orchestration/state_schema.py +0 -0
  528. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/__init__.py +0 -0
  529. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/apply-pull-request-review-suggestions/default-initiate-prompt.md +0 -0
  530. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/break-down-issue-into-subtasks/default-initiate-prompt.md +0 -0
  531. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/create-jira-epic/default-initiate-prompt.md +0 -0
  532. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/create-jira-issue/default-initiate-prompt.md +0 -0
  533. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/create-jira-subtask/default-initiate-prompt.md +0 -0
  534. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/loader.py +0 -0
  535. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/optimize-issue-for-ai-agent/default-initiate-prompt.md +0 -0
  536. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pr-merge-orchestrator/default-init-prompt.md +0 -0
  537. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pull-request-review/default-completion-prompt.md +0 -0
  538. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pull-request-review/default-decision-prompt.md +0 -0
  539. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pull-request-review/default-file-review-prompt.md +0 -0
  540. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pull-request-review/default-initiate-prompt.md +0 -0
  541. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/pull-request-review/default-pull-request-overview-prompt.md +0 -0
  542. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/update-jira-issue/default-initiate-prompt.md +0 -0
  543. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/update-jira-issue/default-make-updates-prompt.md +0 -0
  544. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-checklist-creation-prompt.md +0 -0
  545. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-commit-prompt.md +0 -0
  546. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-completion-prompt.md +0 -0
  547. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-implementation-prompt.md +0 -0
  548. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-implementation-review-prompt.md +0 -0
  549. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-initiate-prompt.md +0 -0
  550. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-planning-prompt.md +0 -0
  551. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-pull-request-prompt.md +0 -0
  552. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-retrieve-prompt.md +0 -0
  553. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-setup-prompt.md +0 -0
  554. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/prompts/work-on-jira-issue/default-verification-prompt.md +0 -0
  555. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/skill_injector.py +0 -0
  556. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/state.py +0 -0
  557. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/submission_manager.py +0 -0
  558. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/submission_processor.py +0 -0
  559. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/task_state.py +0 -0
  560. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/tools/__init__.py +0 -0
  561. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/tools/azure_devops.py +0 -0
  562. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/tools/git.py +0 -0
  563. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/agentic_devtools/tools/jira.py +0 -0
  564. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/ayaiay.json +0 -0
  565. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/01-introduction-and-goals.md +0 -0
  566. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/02-architecture-constraints.md +0 -0
  567. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/03-system-context.md +0 -0
  568. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/04-solution-strategy.md +0 -0
  569. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/05-building-blocks.md +0 -0
  570. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/06-runtime-view.md +0 -0
  571. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/07-deployment-view.md +0 -0
  572. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/08-cross-cutting-concepts.md +0 -0
  573. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/09-architecture-decisions.md +0 -0
  574. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/10-quality-requirements.md +0 -0
  575. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/11-risks-and-technical-debt.md +0 -0
  576. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/12-glossary.md +0 -0
  577. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/README.md +0 -0
  578. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/analysis/001-orchestration-framework-evaluation.md +0 -0
  579. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-001-state-management-single-json-file.md +0 -0
  580. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-002-parameterless-command-pattern.md +0 -0
  581. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-003-background-task-execution.md +0 -0
  582. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-004-multi-worktree-support.md +0 -0
  583. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-005-workflow-state-machine-pattern.md +0 -0
  584. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-006-mermaid-diagrams.md +0 -0
  585. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-007-argparse-cli.md +0 -0
  586. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-008-pyproject-toml.md +0 -0
  587. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-009-dynamic-versioning-git-tags.md +0 -0
  588. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-010-azure-devops-primary.md +0 -0
  589. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-011-test-coverage-requirement.md +0 -0
  590. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-012-cross-platform-file-locking.md +0 -0
  591. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/architecture-decisions/ADR-013-orchestration-framework-selection.md +0 -0
  592. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/copilot-commands.md +0 -0
  593. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/mcp-server.md +0 -0
  594. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/state-keys.md +0 -0
  595. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/docs/workflow-prompts.md +0 -0
  596. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/pipelines/ai-review-stage.yaml +0 -0
  597. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/scripts/run-pr-checks.sh +0 -0
  598. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/scripts/scaffold_tests.py +0 -0
  599. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/scripts/validate_test_structure.py +0 -0
  600. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/scripts/verify-agent-coverage.py +0 -0
  601. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-add-workflow-step-agents/checklists/requirements.md +0 -0
  602. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-add-workflow-step-agents/plan.md +0 -0
  603. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-add-workflow-step-agents/spec.md +0 -0
  604. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-add-workflow-step-agents/tasks.md +0 -0
  605. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-pypi-wheel-release/checklists/requirements.md +0 -0
  606. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-pypi-wheel-release/plan.md +0 -0
  607. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-pypi-wheel-release/spec.md +0 -0
  608. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-pypi-wheel-release/tasks.md +0 -0
  609. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-separate-docs/checklists/requirements.md +0 -0
  610. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-separate-docs/plan.md +0 -0
  611. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-separate-docs/spec.md +0 -0
  612. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-separate-docs/tasks.md +0 -0
  613. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-workflow-step-skills/checklists/requirements.md +0 -0
  614. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/001-workflow-step-skills/spec.md +0 -0
  615. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/002-github-action-speckit-trigger/checklists/requirements.md +0 -0
  616. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/002-github-action-speckit-trigger/plan.md +0 -0
  617. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/002-github-action-speckit-trigger/spec.md +0 -0
  618. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/002-github-action-speckit-trigger/tasks.md +0 -0
  619. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/002-github-action-speckit-trigger/workflow-sequence-diagram.md +0 -0
  620. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/003-comprehensive-e2e-smoke-tests/checklists/requirements.md +0 -0
  621. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/003-comprehensive-e2e-smoke-tests/spec.md +0 -0
  622. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/003-e2e-smoke-tests-cli/plan.md +0 -0
  623. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/005-resolve-test-suite-warnings/analysis-report.md +0 -0
  624. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/005-resolve-test-suite-warnings/checklists/requirements.md +0 -0
  625. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/005-resolve-test-suite-warnings/plan.md +0 -0
  626. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/005-resolve-test-suite-warnings/spec.md +0 -0
  627. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/005-resolve-test-suite-warnings/tasks.md +0 -0
  628. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/specs/README.md +0 -0
  629. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/README.md +0 -0
  630. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/__init__.py +0 -0
  631. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_context/__init__.py +0 -0
  632. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_context/test_commands.py +0 -0
  633. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_context/test_config.py +0 -0
  634. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_context/test_management.py +0 -0
  635. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/__init__.py +0 -0
  636. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/conftest.py +0 -0
  637. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_async_commands.py +0 -0
  638. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_auth.py +0 -0
  639. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_commands_api.py +0 -0
  640. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_commands_dry_run.py +0 -0
  641. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_config.py +0 -0
  642. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_file_review_commands.py +0 -0
  643. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_helpers.py +0 -0
  644. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_mark_reviewed.py +0 -0
  645. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_pipeline_commands.py +0 -0
  646. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_pr_summary_commands.py +0 -0
  647. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_pull_request_details_commands.py +0 -0
  648. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_review_commands.py +0 -0
  649. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_run_details_commands.py +0 -0
  650. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/azure_devops/test_vpn_toggle.py +0 -0
  651. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/cli/test_azure_app_insights_commands.py +0 -0
  652. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/cli/test_azure_auth.py +0 -0
  653. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/cli/test_azure_config.py +0 -0
  654. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/conftest.py +0 -0
  655. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/README.md +0 -0
  656. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/__init__.py +0 -0
  657. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/conftest.py +0 -0
  658. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/fixtures/cassettes/azure_devops_create_pr.yaml +0 -0
  659. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/fixtures/cassettes/jira_add_comment.yaml +0 -0
  660. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/fixtures/cassettes/jira_get_issue.yaml +0 -0
  661. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/test_azure_devops_commands_e2e.py +0 -0
  662. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/test_git_commands_e2e.py +0 -0
  663. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/e2e_smoke/test_jira_commands_e2e.py +0 -0
  664. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/helpers.py +0 -0
  665. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/network/test_detection.py +0 -0
  666. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/network/test_network_cli.py +0 -0
  667. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_file_review_commands.py +0 -0
  668. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_file_review_queue_management.py +0 -0
  669. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_async.py +0 -0
  670. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_commands.py +0 -0
  671. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_core.py +0 -0
  672. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_diff.py +0 -0
  673. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_operations.py +0 -0
  674. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_git_utilities.py +0 -0
  675. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_no_scripts_temp_references.py +0 -0
  676. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_release_commands.py +0 -0
  677. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_release_helpers.py +0 -0
  678. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_release_integration.py +0 -0
  679. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_scaffold_tests.py +0 -0
  680. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_validate_test_structure.py +0 -0
  681. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/test_version.py +0 -0
  682. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/__init__.py +0 -0
  683. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/__init__/__init__.py +0 -0
  684. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/__init__/test_get_adapter.py +0 -0
  685. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/__init__.py +0 -0
  686. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/base/__init__.py +0 -0
  687. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/base/test_issueadapter.py +0 -0
  688. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/github_adapter/__init__.py +0 -0
  689. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/github_adapter/test_githubissuesadapter.py +0 -0
  690. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/jira_adapter/__init__.py +0 -0
  691. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/jira_adapter/test_jiraadapter.py +0 -0
  692. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/markdown_adapter/__init__.py +0 -0
  693. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/adapters/markdown_adapter/test_markdownadapter.py +0 -0
  694. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/agdt_gitignore/__init__.py +0 -0
  695. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/agdt_gitignore/test_ensure_agdt_gitignore.py +0 -0
  696. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/__init__.py +0 -0
  697. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_cleanup_old_logs.py +0 -0
  698. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_create_log_file_path.py +0 -0
  699. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_get_task_log_content.py +0 -0
  700. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_run_function_in_background.py +0 -0
  701. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_run_in_background.py +0 -0
  702. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/background_tasks/test_wait_for_task.py +0 -0
  703. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/__init__.py +0 -0
  704. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/__init__.py +0 -0
  705. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_activity_log.py +0 -0
  706. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_activity_log_entry.py +0 -0
  707. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_get_activity_log_file_path.py +0 -0
  708. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_load_activity_log.py +0 -0
  709. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_load_from_branch.py +0 -0
  710. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/activity_log/test_save_activity_log.py +0 -0
  711. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/__init__.py +0 -0
  712. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/__init__.py +0 -0
  713. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_app_insights.py +0 -0
  714. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_app_insights_async.py +0 -0
  715. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_errors.py +0 -0
  716. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_errors_async.py +0 -0
  717. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_provisioning.py +0 -0
  718. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_provisioning_async.py +0 -0
  719. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_timeline.py +0 -0
  720. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/app_insights_commands/test_query_fabric_dap_timeline_async.py +0 -0
  721. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/__init__.py +0 -0
  722. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_detect_account_type.py +0 -0
  723. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_ensure_azure_account.py +0 -0
  724. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_get_current_azure_account.py +0 -0
  725. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_is_aza_account.py +0 -0
  726. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_switch_azure_account.py +0 -0
  727. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/auth/test_verify_azure_cli.py +0 -0
  728. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/config/__init__.py +0 -0
  729. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/config/test_get_account_for_environment.py +0 -0
  730. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure/config/test_get_app_insights_config.py +0 -0
  731. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/__init__.py +0 -0
  732. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/commands/__init__.py +0 -0
  733. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/commands/test_azure_context_current_command.py +0 -0
  734. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/commands/test_azure_context_ensure_login_command.py +0 -0
  735. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/commands/test_azure_context_status_command.py +0 -0
  736. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/commands/test_azure_context_use_command.py +0 -0
  737. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/config/__init__.py +0 -0
  738. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/config/test_get_context_config.py +0 -0
  739. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/__init__.py +0 -0
  740. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_check_login_status.py +0 -0
  741. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_ensure_logged_in.py +0 -0
  742. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_get_context_env.py +0 -0
  743. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_get_current_context.py +0 -0
  744. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_run_with_context.py +0 -0
  745. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_show_all_contexts.py +0 -0
  746. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_context/management/test_switch_context.py +0 -0
  747. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/__init__.py +0 -0
  748. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/approve_files/__init__.py +0 -0
  749. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/approve_files/test_approve_files_cli.py +0 -0
  750. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/__init__.py +0 -0
  751. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/_helpers.py +0 -0
  752. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test__require_int_value.py +0 -0
  753. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_add_pull_request_comment_async.py +0 -0
  754. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_add_pull_request_comment_async_cli.py +0 -0
  755. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_approve_file_async.py +0 -0
  756. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_approve_file_async_cli.py +0 -0
  757. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_approve_pull_request_async.py +0 -0
  758. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_approve_pull_request_async_cli.py +0 -0
  759. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_checkout_and_sync_branch_async.py +0 -0
  760. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_confirm_suggestion_addressed_async.py +0 -0
  761. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_create_pipeline_async.py +0 -0
  762. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_create_pull_request_async.py +0 -0
  763. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_create_pull_request_async_cli.py +0 -0
  764. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_generate_review_prompts_async.py +0 -0
  765. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_get_pipeline_id_async.py +0 -0
  766. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_get_pull_request_details_async.py +0 -0
  767. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_get_pull_request_threads_async.py +0 -0
  768. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_get_pull_request_threads_async_cli.py +0 -0
  769. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_get_run_details_async.py +0 -0
  770. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_list_pipelines_async.py +0 -0
  771. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_lookup_jira_issue_from_pr_async.py +0 -0
  772. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_lookup_pr_from_jira_issue_async.py +0 -0
  773. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_mark_file_reviewed_async.py +0 -0
  774. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_mark_pull_request_draft_async.py +0 -0
  775. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_publish_pull_request_async.py +0 -0
  776. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_reject_suggestion_resolution_async.py +0 -0
  777. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_reply_to_pull_request_thread_async.py +0 -0
  778. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_reply_to_pull_request_thread_async_cli.py +0 -0
  779. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_request_changes_async.py +0 -0
  780. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_request_changes_async_cli.py +0 -0
  781. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_request_changes_with_suggestion_async.py +0 -0
  782. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_request_changes_with_suggestion_async_cli.py +0 -0
  783. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_resolve_thread_async.py +0 -0
  784. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_resolve_thread_async_cli.py +0 -0
  785. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_run_e2e_tests_fabric_async.py +0 -0
  786. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_run_e2e_tests_synapse_async.py +0 -0
  787. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_run_wb_patch_async.py +0 -0
  788. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_setup_pull_request_review_async.py +0 -0
  789. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_submit_reviews_async.py +0 -0
  790. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_submit_reviews_cli.py +0 -0
  791. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_update_pipeline_async.py +0 -0
  792. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/async_commands/test_wait_for_run_async.py +0 -0
  793. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/auth/__init__.py +0 -0
  794. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/auth/test_get_auth_headers.py +0 -0
  795. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/auth/test_get_pat.py +0 -0
  796. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/batch_review_helpers/__init__.py +0 -0
  797. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/batch_review_helpers/test__is_empty_or_whitespace.py +0 -0
  798. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/batch_review_helpers/test__validate_suggestion_fields.py +0 -0
  799. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/batch_review_helpers/test_resolve_batch_reviews.py +0 -0
  800. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/batch_review_helpers/test_validate_batch_reviews.py +0 -0
  801. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/__init__.py +0 -0
  802. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test__extract_issue_key_from_branch.py +0 -0
  803. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_add_pull_request_comment.py +0 -0
  804. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_approve_pull_request.py +0 -0
  805. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_create_pull_request.py +0 -0
  806. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_get_pull_request_threads.py +0 -0
  807. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_mark_pull_request_draft.py +0 -0
  808. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_parse_bool_from_state.py +0 -0
  809. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_publish_pull_request.py +0 -0
  810. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_reply_to_pull_request_thread.py +0 -0
  811. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_require_content.py +0 -0
  812. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_resolve_thread.py +0 -0
  813. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/commands/test_update_review_narrative.py +0 -0
  814. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/__init__.py +0 -0
  815. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/test__parse_azure_devops_context_from_remote_url.py +0 -0
  816. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/test_azure_devops_config.py +0 -0
  817. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/test_constants.py +0 -0
  818. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/test_get_azure_devops_context_from_git_remote.py +0 -0
  819. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/config/test_get_repository_name_from_git_remote.py +0 -0
  820. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/conftest.py +0 -0
  821. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/__init__.py +0 -0
  822. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__complete_active_session.py +0 -0
  823. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__get_attribution_params.py +0 -0
  824. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__get_queue_path.py +0 -0
  825. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__process_file_parallel.py +0 -0
  826. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__update_queue_after_review.py +0 -0
  827. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test__validate_suggestion_fields.py +0 -0
  828. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_approve_file.py +0 -0
  829. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_get_queue_status.py +0 -0
  830. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_print_next_file_prompt.py +0 -0
  831. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_request_changes.py +0 -0
  832. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_request_changes_with_suggestion.py +0 -0
  833. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_submit_reviews.py +0 -0
  834. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/file_review_commands/test_trigger_in_progress_for_file.py +0 -0
  835. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/__init__.py +0 -0
  836. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test__get_repository_id_via_rest.py +0 -0
  837. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_build_thread_context.py +0 -0
  838. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_convert_to_pull_request_title.py +0 -0
  839. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_find_jira_issue_from_pr.py +0 -0
  840. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_find_pr_from_jira_issue.py +0 -0
  841. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_find_pull_request_by_issue_key.py +0 -0
  842. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_get_pull_request_details.py +0 -0
  843. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_get_pull_request_source_branch.py +0 -0
  844. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_get_repository_id.py +0 -0
  845. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_parse_bool_from_state_value.py +0 -0
  846. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_parse_json_response.py +0 -0
  847. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_patch_comment.py +0 -0
  848. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_patch_thread_status.py +0 -0
  849. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_print_threads.py +0 -0
  850. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_require_content.py +0 -0
  851. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_require_requests.py +0 -0
  852. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_resolve_review_artifact_dir_name.py +0 -0
  853. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_resolve_thread_by_id.py +0 -0
  854. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/helpers/test_verify_az_cli.py +0 -0
  855. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/__init__.py +0 -0
  856. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_cachedreviewercontext.py +0 -0
  857. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_fetch_reviewer_context.py +0 -0
  858. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_mark_file_reviewed.py +0 -0
  859. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_mark_file_reviewed_cli.py +0 -0
  860. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_normalize_repo_path.py +0 -0
  861. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/mark_reviewed/test_set_batch_context.py +0 -0
  862. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/__init__.py +0 -0
  863. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_create_pipeline.py +0 -0
  864. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_get_pipeline_id.py +0 -0
  865. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_list_pipelines.py +0 -0
  866. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_run_e2e_tests_fabric.py +0 -0
  867. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_run_e2e_tests_synapse.py +0 -0
  868. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_run_wb_patch.py +0 -0
  869. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pipeline_commands/test_update_pipeline.py +0 -0
  870. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pr_summary_commands/__init__.py +0 -0
  871. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pr_summary_commands/test_generate_overarching_pr_comments.py +0 -0
  872. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pr_summary_commands/test_generate_overarching_pr_comments_cli.py +0 -0
  873. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/__init__.py +0 -0
  874. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_change_tracking_id_for_file.py +0 -0
  875. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_current_user_id.py +0 -0
  876. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_iteration_change_tracking_map.py +0 -0
  877. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_iteration_changes.py +0 -0
  878. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_pull_request_details.py +0 -0
  879. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_pull_request_iterations.py +0 -0
  880. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_pull_request_threads.py +0 -0
  881. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_reviewer_payload.py +0 -0
  882. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_get_viewed_files_via_contribution.py +0 -0
  883. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_invoke_ado_rest.py +0 -0
  884. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/pull_request_details_commands/test_invoke_ado_rest_post.py +0 -0
  885. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/request_changes_batch/__init__.py +0 -0
  886. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/request_changes_batch/test_request_changes_batch_cli.py +0 -0
  887. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/__init__.py +0 -0
  888. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_build_commit_file_url.py +0 -0
  889. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_build_commit_folder_url.py +0 -0
  890. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_build_commit_pr_url.py +0 -0
  891. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_format_status.py +0 -0
  892. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_get_model_icon.py +0 -0
  893. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_render_attribution_line.py +0 -0
  894. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_attribution/test_should_use_emoji.py +0 -0
  895. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/__init__.py +0 -0
  896. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_build_reviewed_paths_set.py +0 -0
  897. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_checkout_and_sync_branch.py +0 -0
  898. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_convert_to_prompt_filename.py +0 -0
  899. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_extract_jira_issue_key_from_title.py +0 -0
  900. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_fetch_and_display_jira_issue.py +0 -0
  901. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_fetch_pull_request_basic_info.py +0 -0
  902. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_filter_threads.py +0 -0
  903. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_generate_review_prompts.py +0 -0
  904. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_get_jira_issue_key_from_state.py +0 -0
  905. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_get_linked_pull_request_from_jira.py +0 -0
  906. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_get_pull_request_id_from_state.py +0 -0
  907. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_get_root_folder.py +0 -0
  908. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_get_threads_for_file.py +0 -0
  909. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_normalize_repo_path.py +0 -0
  910. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_print_review_instructions.py +0 -0
  911. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_scaffold_threads_for_review.py +0 -0
  912. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_setup_pull_request_review.py +0 -0
  913. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_commands/test_write_file_prompt.py +0 -0
  914. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/__init__.py +0 -0
  915. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test__matches_pattern.py +0 -0
  916. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test__parse_int_field.py +0 -0
  917. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_compute_mechanical_consensus.py +0 -0
  918. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_default_review_config.py +0 -0
  919. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_filter_files.py +0 -0
  920. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_load_review_config.py +0 -0
  921. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_resolve_trigger_overrides.py +0 -0
  922. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_config/test_reviewconfig.py +0 -0
  923. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/__init__.py +0 -0
  924. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_build_full_file_content_section.py +0 -0
  925. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_build_reviewed_paths_set.py +0 -0
  926. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_convert_to_prompt_filename.py +0 -0
  927. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_extract_jira_issue_key_from_title.py +0 -0
  928. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_filter_threads.py +0 -0
  929. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_get_language_from_extension.py +0 -0
  930. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_get_root_folder.py +0 -0
  931. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_get_threads_for_file.py +0 -0
  932. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_is_binary_file.py +0 -0
  933. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_normalize_repo_path.py +0 -0
  934. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_helpers/test_resolve_repository_root.py +0 -0
  935. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/__init__.py +0 -0
  936. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test__get_jira_ssl_verify.py +0 -0
  937. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_display_jira_issue_summary.py +0 -0
  938. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_extract_linked_pr_from_issue.py +0 -0
  939. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_extract_pr_id_from_development_panel.py +0 -0
  940. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_fetch_and_display_jira_issue.py +0 -0
  941. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_fetch_development_panel_prs.py +0 -0
  942. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_fetch_jira_issue.py +0 -0
  943. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_get_jira_credentials.py +0 -0
  944. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_get_linked_pull_request_from_jira.py +0 -0
  945. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_jira/test_get_pr_from_development_panel.py +0 -0
  946. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_models_config/__init__.py +0 -0
  947. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_models_config/test_ensure_default_config.py +0 -0
  948. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_models_config/test_load_review_models_config.py +0 -0
  949. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_models_config/test_reviewmodelsconfig.py +0 -0
  950. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/__init__.py +0 -0
  951. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_build_file_prompt_content.py +0 -0
  952. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_generate_review_prompts.py +0 -0
  953. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_generate_review_prompts_edge_cases.py +0 -0
  954. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_get_prompts_output_dir.py +0 -0
  955. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_print_review_instructions.py +0 -0
  956. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_prompts/test_write_file_prompt.py +0 -0
  957. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/__init__.py +0 -0
  958. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__append_path_to_url.py +0 -0
  959. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__build_pr_base_url.py +0 -0
  960. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__check_session_status.py +0 -0
  961. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__create_session.py +0 -0
  962. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__demote_main_comment.py +0 -0
  963. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__format_activity_log_entry.py +0 -0
  964. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__fresh_scaffold.py +0 -0
  965. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__get_file_name.py +0 -0
  966. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__get_folder_for_path.py +0 -0
  967. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__get_thread_comments.py +0 -0
  968. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__incremental_rescaffold.py +0 -0
  969. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__mark_stale_sessions_failed.py +0 -0
  970. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__patch_comment_content.py +0 -0
  971. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__post_activity_log_entry.py +0 -0
  972. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__post_reply.py +0 -0
  973. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__post_thread.py +0 -0
  974. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__print_dry_run_plan.py +0 -0
  975. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__update_activity_log_comment_status.py +0 -0
  976. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test__validate_with_git_diff.py +0 -0
  977. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test_detect_file_changes.py +0 -0
  978. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test_filechangeresult.py +0 -0
  979. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test_scaffold_idempotency_scenarios.py +0 -0
  980. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_scaffold/test_scaffold_review_threads.py +0 -0
  981. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/__init__.py +0 -0
  982. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test__atomic_write_json.py +0 -0
  983. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test__get_lock_file_path.py +0 -0
  984. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_add_suggestion_to_file.py +0 -0
  985. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_clear_suggestions_for_re_review.py +0 -0
  986. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_compute_aggregate_status.py +0 -0
  987. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_fileentry.py +0 -0
  988. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_fileentry_multi_model.py +0 -0
  989. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_folderentry.py +0 -0
  990. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_foldergroup.py +0 -0
  991. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_get_file_entry.py +0 -0
  992. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_get_folder_entry.py +0 -0
  993. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_get_review_state_file_path.py +0 -0
  994. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_load_from_branch.py +0 -0
  995. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_load_review_state.py +0 -0
  996. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_locking_behavior.py +0 -0
  997. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_modelverdict.py +0 -0
  998. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_normalize_file_path.py +0 -0
  999. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_overallsummary.py +0 -0
  1000. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_read_modify_write_review_state.py +0 -0
  1001. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_reviewsession.py +0 -0
  1002. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_reviewstate.py +0 -0
  1003. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_reviewstate_multi_model.py +0 -0
  1004. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_reviewstatus.py +0 -0
  1005. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_save_review_state.py +0 -0
  1006. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_skippedfile.py +0 -0
  1007. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_suggestionentry.py +0 -0
  1008. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_update_file_status.py +0 -0
  1009. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_state/test_validate_and_deserialize.py +0 -0
  1010. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_templates/__init__.py +0 -0
  1011. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_templates/test_build_discussion_url.py +0 -0
  1012. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_templates/test_render_file_summary.py +0 -0
  1013. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_templates/test_render_model_review_progress_table.py +0 -0
  1014. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/review_templates/test_render_overall_summary.py +0 -0
  1015. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/__init__.py +0 -0
  1016. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_fetch_build_run.py +0 -0
  1017. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_fetch_build_timeline.py +0 -0
  1018. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_fetch_failed_job_logs.py +0 -0
  1019. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_fetch_pipeline_run.py +0 -0
  1020. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_fetch_task_log.py +0 -0
  1021. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_get_failed_tasks.py +0 -0
  1022. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_get_run_details.py +0 -0
  1023. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_get_run_details_impl.py +0 -0
  1024. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_is_run_finished.py +0 -0
  1025. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_print_failed_logs_summary.py +0 -0
  1026. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_print_parameters.py +0 -0
  1027. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_print_summary.py +0 -0
  1028. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_save_json.py +0 -0
  1029. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_save_log_file.py +0 -0
  1030. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_wait_for_run.py +0 -0
  1031. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/run_details_commands/test_wait_for_run_impl.py +0 -0
  1032. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/__init__.py +0 -0
  1033. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/test_cascade_overall_summary_update.py +0 -0
  1034. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/test_cascade_status_update.py +0 -0
  1035. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/test_derive_overall_status.py +0 -0
  1036. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/test_execute_cascade.py +0 -0
  1037. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/status_cascade/test_patch_operation.py +0 -0
  1038. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_commands/__init__.py +0 -0
  1039. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_commands/test_confirm_suggestion_addressed.py +0 -0
  1040. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_commands/test_reject_suggestion_resolution.py +0 -0
  1041. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/__init__.py +0 -0
  1042. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_categorize_all_suggestions.py +0 -0
  1043. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_fetch_threads_lookup.py +0 -0
  1044. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_has_unaddressed.py +0 -0
  1045. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_partition_results.py +0 -0
  1046. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_render_abort_summary.py +0 -0
  1047. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_render_unaddressed_thread_comment.py +0 -0
  1048. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_suggestionverificationresult.py +0 -0
  1049. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/suggestion_verification/test_verify_previous_suggestions.py +0 -0
  1050. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/__init__.py +0 -0
  1051. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_compute_file_effective_status.py +0 -0
  1052. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_evaluate_consolidation_need.py +0 -0
  1053. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_initialize_model_verdicts.py +0 -0
  1054. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_record_verdict.py +0 -0
  1055. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_render_consolidation_decision.py +0 -0
  1056. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/verdict_protocol/test_render_reviewer_addendum.py +0 -0
  1057. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/__init__.py +0 -0
  1058. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_check_network_status.py +0 -0
  1059. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_connect_vpn.py +0 -0
  1060. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_disconnect_vpn.py +0 -0
  1061. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_ensure_jira_vpn_access.py +0 -0
  1062. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_get_corporate_network_test_host.py +0 -0
  1063. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_get_vpn_hostnames.py +0 -0
  1064. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_get_vpn_url_from_state.py +0 -0
  1065. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_is_on_corporate_network.py +0 -0
  1066. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_is_pulse_secure_installed.py +0 -0
  1067. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_is_vpn_connected.py +0 -0
  1068. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_reconnect_vpn.py +0 -0
  1069. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_smart_connect_vpn.py +0 -0
  1070. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_off_async.py +0 -0
  1071. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_off_cmd.py +0 -0
  1072. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_on_async.py +0 -0
  1073. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_on_cmd.py +0 -0
  1074. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_status_async.py +0 -0
  1075. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/azure_devops/vpn_toggle/test_vpn_status_cmd.py +0 -0
  1076. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/__init__.py +0 -0
  1077. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test__print_ssl_error_help.py +0 -0
  1078. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_count_certificates_in_pem.py +0 -0
  1079. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_ensure_ca_bundle.py +0 -0
  1080. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_ensure_ca_bundle_force.py +0 -0
  1081. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_fetch_certificate_chain_openssl.py +0 -0
  1082. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_fetch_certificate_chain_ssl.py +0 -0
  1083. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_get_ssl_verify.py +0 -0
  1084. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/cert_utils/test_ssl_request_with_retry.py +0 -0
  1085. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/__init__.py +0 -0
  1086. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/project_config/__init__.py +0 -0
  1087. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/project_config/test__get_config_path.py +0 -0
  1088. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/project_config/test_get_project_config_value.py +0 -0
  1089. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/project_config/test_load_project_config.py +0 -0
  1090. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/config/project_config/test_save_project_config.py +0 -0
  1091. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/__init__.py +0 -0
  1092. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/__init__.py +0 -0
  1093. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/test__is_run_triggered.py +0 -0
  1094. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/test__mark_run_triggered.py +0 -0
  1095. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/test__read_model_from_state.py +0 -0
  1096. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/test__unmark_run_triggered.py +0 -0
  1097. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/auto_start/test_copilot_auto_start_cmd.py +0 -0
  1098. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/__init__.py +0 -0
  1099. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test__build_copilot_args.py +0 -0
  1100. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test__emit_log_marker.py +0 -0
  1101. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test__get_copilot_binary.py +0 -0
  1102. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test__get_jsonl_file_path.py +0 -0
  1103. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test_build_copilot_args.py +0 -0
  1104. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test_copilotsessionresult.py +0 -0
  1105. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test_get_default_copilot_model.py +0 -0
  1106. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test_is_gh_copilot_available.py +0 -0
  1107. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/copilot/session/test_start_copilot_session.py +0 -0
  1108. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/__init__.py +0 -0
  1109. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/__init__.py +0 -0
  1110. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__branch_exists_locally.py +0 -0
  1111. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__branch_exists_remotely.py +0 -0
  1112. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__discover_workflow_files.py +0 -0
  1113. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__fetch_branch.py +0 -0
  1114. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__get_parent_sha.py +0 -0
  1115. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__get_repo_root.py +0 -0
  1116. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__has_matching_run_id.py +0 -0
  1117. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__read_commit_message.py +0 -0
  1118. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__read_tree_for_commit.py +0 -0
  1119. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__reset_dirty.py +0 -0
  1120. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test__run_plumbing.py +0 -0
  1121. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_build_tree.py +0 -0
  1122. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_create_commit.py +0 -0
  1123. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_gitplumbingerror.py +0 -0
  1124. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_hash_object.py +0 -0
  1125. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_is_dirty.py +0 -0
  1126. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_load_workflow_artifacts.py +0 -0
  1127. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_mark_dirty.py +0 -0
  1128. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_persist_if_dirty.py +0 -0
  1129. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_persist_workflow_state.py +0 -0
  1130. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_persistresult.py +0 -0
  1131. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_push_branch.py +0 -0
  1132. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_read_blob.py +0 -0
  1133. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_read_branch_tree.py +0 -0
  1134. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_resolve_worktree_key.py +0 -0
  1135. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/agdt_branch/test_update_ref.py +0 -0
  1136. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/__init__.py +0 -0
  1137. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/_helpers.py +0 -0
  1138. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_amend_async.py +0 -0
  1139. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_commit_async.py +0 -0
  1140. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_force_push_async.py +0 -0
  1141. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_publish_async.py +0 -0
  1142. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_push_async.py +0 -0
  1143. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/async_commands/test_stage_async.py +0 -0
  1144. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/__init__.py +0 -0
  1145. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/conftest.py +0 -0
  1146. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test__get_issue_key_from_state.py +0 -0
  1147. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test__mark_checklist_items_completed.py +0 -0
  1148. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test__sync_with_main.py +0 -0
  1149. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test__trigger_implementation_review.py +0 -0
  1150. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_amend_cmd.py +0 -0
  1151. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_commit_cmd.py +0 -0
  1152. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_force_push_cmd.py +0 -0
  1153. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_publish_cmd.py +0 -0
  1154. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_push_cmd.py +0 -0
  1155. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/commands/test_stage_cmd.py +0 -0
  1156. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/conftest.py +0 -0
  1157. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/__init__.py +0 -0
  1158. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/test_get_bool_state.py +0 -0
  1159. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/test_get_commit_message.py +0 -0
  1160. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/test_get_current_branch.py +0 -0
  1161. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/test_run_git.py +0 -0
  1162. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/core/test_temp_message_file.py +0 -0
  1163. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/__init__.py +0 -0
  1164. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test__is_diff_file_header.py +0 -0
  1165. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_addedline.py +0 -0
  1166. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_addedlinesinfo.py +0 -0
  1167. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_diffentry.py +0 -0
  1168. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_difflinesinfo.py +0 -0
  1169. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_get_added_lines_info.py +0 -0
  1170. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_get_diff_entries.py +0 -0
  1171. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_get_diff_lines_info.py +0 -0
  1172. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_get_diff_patch.py +0 -0
  1173. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_get_removed_lines_info.py +0 -0
  1174. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_normalize_ref_name.py +0 -0
  1175. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_removedline.py +0 -0
  1176. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_removedlinesinfo.py +0 -0
  1177. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/diff/test_sync_git_ref.py +0 -0
  1178. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/__init__.py +0 -0
  1179. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_amend_commit.py +0 -0
  1180. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_branch_has_commits_ahead_of_main.py +0 -0
  1181. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_branchsafetycheckresult.py +0 -0
  1182. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_check_branch_safe_to_recreate.py +0 -0
  1183. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_checkout_branch.py +0 -0
  1184. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_checkoutresult.py +0 -0
  1185. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_create_commit.py +0 -0
  1186. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_delete_local_branch.py +0 -0
  1187. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_fetch_branch.py +0 -0
  1188. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_fetch_main.py +0 -0
  1189. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_force_push.py +0 -0
  1190. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_get_commits_behind_main.py +0 -0
  1191. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_get_files_changed_on_branch.py +0 -0
  1192. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_get_last_commit_message.py +0 -0
  1193. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_get_short_commit_hash.py +0 -0
  1194. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_has_local_changes.py +0 -0
  1195. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_last_commit_contains_issue_key.py +0 -0
  1196. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_local_branch_matches_origin.py +0 -0
  1197. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_publish_branch.py +0 -0
  1198. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_push.py +0 -0
  1199. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_rebase_onto_main.py +0 -0
  1200. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_rebaseresult.py +0 -0
  1201. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_rename_local_branch.py +0 -0
  1202. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_reset_branch_to_origin.py +0 -0
  1203. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_should_amend_instead_of_commit.py +0 -0
  1204. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/git/operations/test_stage_changes.py +0 -0
  1205. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/__init__.py +0 -0
  1206. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/__init__.py +0 -0
  1207. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_bug_issue_async.py +0 -0
  1208. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_bug_issue_async_cli.py +0 -0
  1209. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_documentation_issue_async.py +0 -0
  1210. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_documentation_issue_async_cli.py +0 -0
  1211. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_feature_issue_async.py +0 -0
  1212. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_feature_issue_async_cli.py +0 -0
  1213. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_issue_async.py +0 -0
  1214. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_issue_async_cli.py +0 -0
  1215. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_task_issue_async.py +0 -0
  1216. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/async_commands/test_create_agdt_task_issue_async_cli.py +0 -0
  1217. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/__init__.py +0 -0
  1218. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__append_related_issues.py +0 -0
  1219. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__append_terminal_log.py +0 -0
  1220. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__build_gh_create_args.py +0 -0
  1221. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__check_gh_cli.py +0 -0
  1222. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__get_environment_info.py +0 -0
  1223. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test__gh_supports_issue_type.py +0 -0
  1224. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test_create_agdt_bug_issue.py +0 -0
  1225. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test_create_agdt_documentation_issue.py +0 -0
  1226. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test_create_agdt_feature_issue.py +0 -0
  1227. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test_create_agdt_issue.py +0 -0
  1228. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/issue_commands/test_create_agdt_task_issue.py +0 -0
  1229. {agentic_devtools-0.2.53/tests/unit/cli/github/state_helpers → agentic_devtools-0.2.55/tests/unit/cli/github/pr_checks_status}/__init__.py +0 -0
  1230. {agentic_devtools-0.2.53/tests/unit/cli/jira → agentic_devtools-0.2.55/tests/unit/cli/github/pr_state}/__init__.py +0 -0
  1231. {agentic_devtools-0.2.53/tests/unit/cli/jira/adf → agentic_devtools-0.2.55/tests/unit/cli/github/repo_resolution}/__init__.py +0 -0
  1232. {agentic_devtools-0.2.53/tests/unit/cli/jira/async_commands → agentic_devtools-0.2.55/tests/unit/cli/github/state_helpers}/__init__.py +0 -0
  1233. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/state_helpers/test_get_issue_value.py +0 -0
  1234. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/github/state_helpers/test_set_issue_value.py +0 -0
  1235. {agentic_devtools-0.2.53/tests/unit/cli/jira/async_status → agentic_devtools-0.2.55/tests/unit/cli/jira}/__init__.py +0 -0
  1236. {agentic_devtools-0.2.53/tests/unit/cli/jira/comment_commands → agentic_devtools-0.2.55/tests/unit/cli/jira/adf}/__init__.py +0 -0
  1237. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/adf/test__convert_adf_to_text.py +0 -0
  1238. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/adf/test__process_adf_children.py +0 -0
  1239. {agentic_devtools-0.2.53/tests/unit/cli/jira/config → agentic_devtools-0.2.55/tests/unit/cli/jira/async_commands}/__init__.py +0 -0
  1240. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/conftest.py +0 -0
  1241. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_add_comment_async.py +0 -0
  1242. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_add_comment_async_cli.py +0 -0
  1243. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_add_users_to_project_role_async.py +0 -0
  1244. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_add_users_to_project_role_batch_async.py +0 -0
  1245. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_check_user_exists_async.py +0 -0
  1246. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_check_users_exist_async.py +0 -0
  1247. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_create_epic_async.py +0 -0
  1248. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_create_issue_async.py +0 -0
  1249. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_create_subtask_async.py +0 -0
  1250. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_find_role_id_by_name_async.py +0 -0
  1251. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_get_issue_async.py +0 -0
  1252. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_get_project_role_details_async.py +0 -0
  1253. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_list_project_roles_async.py +0 -0
  1254. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_commands/test_update_issue_async.py +0 -0
  1255. {agentic_devtools-0.2.53/tests/unit/cli/jira/create_commands → agentic_devtools-0.2.55/tests/unit/cli/jira/async_status}/__init__.py +0 -0
  1256. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_status/conftest.py +0 -0
  1257. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/async_status/test_write_async_status.py +0 -0
  1258. {agentic_devtools-0.2.53/tests/unit/cli/jira/formatting → agentic_devtools-0.2.55/tests/unit/cli/jira/comment_commands}/__init__.py +0 -0
  1259. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/comment_commands/test_add_comment.py +0 -0
  1260. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/comment_commands/test_add_comment_cli.py +0 -0
  1261. {agentic_devtools-0.2.53/tests/unit/cli/jira/get_commands → agentic_devtools-0.2.55/tests/unit/cli/jira/config}/__init__.py +0 -0
  1262. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/config/test_build_jira_issue_pattern.py +0 -0
  1263. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/config/test_get_jira_auth_header.py +0 -0
  1264. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/config/test_get_jira_base_url.py +0 -0
  1265. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/config/test_get_jira_headers.py +0 -0
  1266. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/config/test_get_jira_project_keys.py +0 -0
  1267. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/conftest.py +0 -0
  1268. {agentic_devtools-0.2.53/tests/unit/cli/jira/helpers → agentic_devtools-0.2.55/tests/unit/cli/jira/create_commands}/__init__.py +0 -0
  1269. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/create_commands/test_create_epic.py +0 -0
  1270. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/create_commands/test_create_issue.py +0 -0
  1271. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/create_commands/test_create_issue_sync.py +0 -0
  1272. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/create_commands/test_create_subtask.py +0 -0
  1273. {agentic_devtools-0.2.53/tests/unit/cli/jira/parse_error_report → agentic_devtools-0.2.55/tests/unit/cli/jira/formatting}/__init__.py +0 -0
  1274. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/formatting/test_build_user_story_description.py +0 -0
  1275. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/formatting/test_format_bullet_list.py +0 -0
  1276. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/formatting/test_merge_labels.py +0 -0
  1277. {agentic_devtools-0.2.53/tests/unit/cli/jira/role_commands → agentic_devtools-0.2.55/tests/unit/cli/jira/get_commands}/__init__.py +0 -0
  1278. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/get_commands/test__fetch_epic.py +0 -0
  1279. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/get_commands/test__fetch_parent_issue.py +0 -0
  1280. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/get_commands/test__fetch_remote_links.py +0 -0
  1281. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/get_commands/test_get_issue.py +0 -0
  1282. {agentic_devtools-0.2.53/tests/unit/cli/jira/state_helpers → agentic_devtools-0.2.55/tests/unit/cli/jira/helpers}/__init__.py +0 -0
  1283. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__count_certificates_in_pem.py +0 -0
  1284. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__ensure_jira_pem.py +0 -0
  1285. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__fetch_certificate_chain_openssl.py +0 -0
  1286. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__fetch_certificate_chain_ssl.py +0 -0
  1287. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__get_repo_jira_pem_path.py +0 -0
  1288. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__get_requests.py +0 -0
  1289. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__get_ssl_verify.py +0 -0
  1290. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__get_temp_jira_pem_path.py +0 -0
  1291. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__parse_comma_separated.py +0 -0
  1292. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/helpers/test__parse_multiline_string.py +0 -0
  1293. {agentic_devtools-0.2.53/tests/unit/cli/jira/update_commands → agentic_devtools-0.2.55/tests/unit/cli/jira/parse_error_report}/__init__.py +0 -0
  1294. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_get_user_details.py +0 -0
  1295. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_get_user_details_api_calls.py +0 -0
  1296. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_error_file.py +0 -0
  1297. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_error_file_combined_errors.py +0 -0
  1298. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_error_file_multiple_dataproducts.py +0 -0
  1299. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_jira_error_report.py +0 -0
  1300. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_jira_error_report_command.py +0 -0
  1301. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/parse_error_report/test_parse_jira_error_report_integration.py +0 -0
  1302. {agentic_devtools-0.2.53/tests/unit/cli/jira/vpn_wrapper → agentic_devtools-0.2.55/tests/unit/cli/jira/role_commands}/__init__.py +0 -0
  1303. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_add_users_to_project_role.py +0 -0
  1304. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_add_users_to_project_role_additional_cases.py +0 -0
  1305. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_add_users_to_project_role_batch.py +0 -0
  1306. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_check_user_exists.py +0 -0
  1307. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_check_user_exists_command.py +0 -0
  1308. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_check_users_exist.py +0 -0
  1309. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_check_users_exist_command.py +0 -0
  1310. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_check_users_exist_command_paths.py +0 -0
  1311. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_find_role_id_by_name.py +0 -0
  1312. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_get_project_role_details.py +0 -0
  1313. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_get_project_role_details_command_paths.py +0 -0
  1314. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_list_project_roles.py +0 -0
  1315. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_list_project_roles_command_paths.py +0 -0
  1316. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_role_commands_error_handling.py +0 -0
  1317. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/role_commands/test_role_id_extraction.py +0 -0
  1318. {agentic_devtools-0.2.53/tests/unit/cli/network → agentic_devtools-0.2.55/tests/unit/cli/jira/state_helpers}/__init__.py +0 -0
  1319. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/state_helpers/test_get_jira_value.py +0 -0
  1320. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/state_helpers/test_set_jira_value.py +0 -0
  1321. {agentic_devtools-0.2.53/tests/unit/cli/network/commands → agentic_devtools-0.2.55/tests/unit/cli/jira/update_commands}/__init__.py +0 -0
  1322. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/update_commands/test__build_update_payload.py +0 -0
  1323. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/update_commands/test_update_issue.py +0 -0
  1324. {agentic_devtools-0.2.53/tests/unit/cli/network/detection → agentic_devtools-0.2.55/tests/unit/cli/jira/vpn_wrapper}/__init__.py +0 -0
  1325. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/vpn_wrapper/test_with_jira_vpn_context.py +0 -0
  1326. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/vpn_wrapper/test_with_jira_vpn_context_decorator.py +0 -0
  1327. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/jira/vpn_wrapper/test_with_jira_vpn_context_integration.py +0 -0
  1328. {agentic_devtools-0.2.53/tests/unit/cli/release → agentic_devtools-0.2.55/tests/unit/cli/network}/__init__.py +0 -0
  1329. {agentic_devtools-0.2.53/tests/unit/cli/release → agentic_devtools-0.2.55/tests/unit/cli/network}/commands/__init__.py +0 -0
  1330. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/network/commands/test_network_status_cmd.py +0 -0
  1331. {agentic_devtools-0.2.53/tests/unit/cli/release/helpers → agentic_devtools-0.2.55/tests/unit/cli/network/detection}/__init__.py +0 -0
  1332. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/network/detection/test_detect_network_context.py +0 -0
  1333. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/network/detection/test_get_network_context_display.py +0 -0
  1334. {agentic_devtools-0.2.53/tests/unit/cli/review → agentic_devtools-0.2.55/tests/unit/cli/release}/__init__.py +0 -0
  1335. {agentic_devtools-0.2.53/tests/unit/cli/review → agentic_devtools-0.2.55/tests/unit/cli/release}/commands/__init__.py +0 -0
  1336. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/commands/test_release_pypi_async.py +0 -0
  1337. {agentic_devtools-0.2.53/tests/unit/cli/review/config_commands → agentic_devtools-0.2.55/tests/unit/cli/release/helpers}/__init__.py +0 -0
  1338. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_build_distribution.py +0 -0
  1339. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_compute_sha256.py +0 -0
  1340. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_normalize_package_name.py +0 -0
  1341. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_pypi_version_exists.py +0 -0
  1342. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_upload_distribution.py +0 -0
  1343. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/release/helpers/test_validate_distribution.py +0 -0
  1344. {agentic_devtools-0.2.53/tests/unit/cli/review/consolidate → agentic_devtools-0.2.55/tests/unit/cli/review}/__init__.py +0 -0
  1345. {agentic_devtools-0.2.53/tests/unit/cli/review/dispatch → agentic_devtools-0.2.55/tests/unit/cli/review/commands}/__init__.py +0 -0
  1346. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/commands/test_build_parser.py +0 -0
  1347. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/commands/test_main.py +0 -0
  1348. {agentic_devtools-0.2.53/tests/unit/cli/review/status → agentic_devtools-0.2.55/tests/unit/cli/review/config_commands}/__init__.py +0 -0
  1349. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/config_commands/test__config_to_dict.py +0 -0
  1350. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/config_commands/test__resolve_repo_root.py +0 -0
  1351. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/config_commands/test_run_config_get.py +0 -0
  1352. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/config_commands/test_run_config_validate.py +0 -0
  1353. {agentic_devtools-0.2.53/tests/unit/cli/runner → agentic_devtools-0.2.55/tests/unit/cli/review/consolidate}/__init__.py +0 -0
  1354. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/consolidate/test__apply_resolution.py +0 -0
  1355. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/consolidate/test__build_consolidation_prompt.py +0 -0
  1356. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/consolidate/test__invoke_consolidator_model.py +0 -0
  1357. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/consolidate/test__load_amendment_replies.py +0 -0
  1358. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/consolidate/test_run_consolidate.py +0 -0
  1359. {agentic_devtools-0.2.53/tests/unit/cli/setup → agentic_devtools-0.2.55/tests/unit/cli/review/dispatch}/__init__.py +0 -0
  1360. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/dispatch/test__check_files_need_consolidation.py +0 -0
  1361. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/dispatch/test__invoke_consolidation.py +0 -0
  1362. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/dispatch/test__invoke_reviewer.py +0 -0
  1363. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/dispatch/test__print_dispatch_plan.py +0 -0
  1364. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/dispatch/test_run_dispatch.py +0 -0
  1365. {agentic_devtools-0.2.53/tests/unit/cli/setup/commands → agentic_devtools-0.2.55/tests/unit/cli/review/status}/__init__.py +0 -0
  1366. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/review/status/test_run_status.py +0 -0
  1367. {agentic_devtools-0.2.53/tests/unit/cli/setup/copilot_cli_installer → agentic_devtools-0.2.55/tests/unit/cli/runner}/__init__.py +0 -0
  1368. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_command_map.py +0 -0
  1369. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_command_map_integrity.py +0 -0
  1370. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_main.py +0 -0
  1371. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_main_entry_point.py +0 -0
  1372. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_run_as_script.py +0 -0
  1373. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/runner/test_run_command.py +0 -0
  1374. {agentic_devtools-0.2.53/tests/unit/cli/setup/dependency_checker → agentic_devtools-0.2.55/tests/unit/cli/setup}/__init__.py +0 -0
  1375. {agentic_devtools-0.2.53/tests/unit/cli/setup/gh_cli_installer → agentic_devtools-0.2.55/tests/unit/cli/setup/commands}/__init__.py +0 -0
  1376. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__build_unified_ca_bundle.py +0 -0
  1377. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__persist_env_vars_to_profile.py +0 -0
  1378. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__persist_single_var.py +0 -0
  1379. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__prefetch_certs.py +0 -0
  1380. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__print_manual_instructions.py +0 -0
  1381. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__print_path_instructions_if_needed.py +0 -0
  1382. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__prompt_copilot_model.py +0 -0
  1383. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__prompt_project_config.py +0 -0
  1384. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__query_copilot_models.py +0 -0
  1385. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test__valid_issue_adapters_fallback.py +0 -0
  1386. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test_setup_certs_cmd.py +0 -0
  1387. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test_setup_check_cmd.py +0 -0
  1388. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test_setup_cmd.py +0 -0
  1389. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test_setup_copilot_cli_cmd.py +0 -0
  1390. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/commands/test_setup_gh_cli_cmd.py +0 -0
  1391. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/conftest.py +0 -0
  1392. {agentic_devtools-0.2.53/tests/unit/cli/setup/platform_detection → agentic_devtools-0.2.55/tests/unit/cli/setup/copilot_cli_installer}/__init__.py +0 -0
  1393. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_detect_platform_asset.py +0 -0
  1394. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_download_and_install.py +0 -0
  1395. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_get_copilot_cli_binary.py +0 -0
  1396. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_get_installed_version.py +0 -0
  1397. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_get_latest_release_info.py +0 -0
  1398. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/copilot_cli_installer/test_install_copilot_cli.py +0 -0
  1399. {agentic_devtools-0.2.53/tests/unit/cli/setup/pr_workflow → agentic_devtools-0.2.55/tests/unit/cli/setup/dependency_checker}/__init__.py +0 -0
  1400. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test__find_binary.py +0 -0
  1401. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test__get_version.py +0 -0
  1402. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test__run_version.py +0 -0
  1403. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test_check_all_dependencies.py +0 -0
  1404. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test_dependencystatus.py +0 -0
  1405. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/dependency_checker/test_print_dependency_report.py +0 -0
  1406. {agentic_devtools-0.2.53/tests/unit/cli/setup/shell_profile → agentic_devtools-0.2.55/tests/unit/cli/setup/gh_cli_installer}/__init__.py +0 -0
  1407. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_detect_platform_asset.py +0 -0
  1408. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_download_and_install.py +0 -0
  1409. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_get_gh_cli_binary.py +0 -0
  1410. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_get_installed_version.py +0 -0
  1411. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_get_latest_release_info.py +0 -0
  1412. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/gh_cli_installer/test_install_gh_cli.py +0 -0
  1413. {agentic_devtools-0.2.53/tests/unit/cli/setup/workflow_templates → agentic_devtools-0.2.55/tests/unit/cli/setup/platform_detection}/__init__.py +0 -0
  1414. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/platform_detection/test__get_origin_remote_url.py +0 -0
  1415. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/platform_detection/test_confirm_and_override.py +0 -0
  1416. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/platform_detection/test_detect_platforms.py +0 -0
  1417. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/platform_detection/test_detectionresult.py +0 -0
  1418. {agentic_devtools-0.2.53/tests/unit/cli/speckit → agentic_devtools-0.2.55/tests/unit/cli/setup/pr_workflow}/__init__.py +0 -0
  1419. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/pr_workflow/test__resolve_branch_name.py +0 -0
  1420. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/pr_workflow/test_run_setup_with_pr_workflow.py +0 -0
  1421. {agentic_devtools-0.2.53/tests/unit/cli/speckit/commands → agentic_devtools-0.2.55/tests/unit/cli/setup/shell_profile}/__init__.py +0 -0
  1422. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/shell_profile/test_detect_shell_profile.py +0 -0
  1423. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/shell_profile/test_detect_shell_type.py +0 -0
  1424. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/shell_profile/test_persist_env_var.py +0 -0
  1425. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/shell_profile/test_persist_path_entry.py +0 -0
  1426. {agentic_devtools-0.2.53/tests/unit/cli/state → agentic_devtools-0.2.55/tests/unit/cli/setup/workflow_templates}/__init__.py +0 -0
  1427. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/workflow_templates/test_generate_default_templates.py +0 -0
  1428. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/workflow_templates/test_list_available_templates.py +0 -0
  1429. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/setup/workflow_templates/test_template_info.py +0 -0
  1430. {agentic_devtools-0.2.53/tests/unit/cli/subprocess_utils → agentic_devtools-0.2.55/tests/unit/cli/speckit}/__init__.py +0 -0
  1431. {agentic_devtools-0.2.53/tests/unit/cli/tasks → agentic_devtools-0.2.55/tests/unit/cli/speckit/commands}/__init__.py +0 -0
  1432. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test__load_prompt.py +0 -0
  1433. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test__parse_args.py +0 -0
  1434. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test__run.py +0 -0
  1435. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_analyze.py +0 -0
  1436. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_checklist.py +0 -0
  1437. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_clarify.py +0 -0
  1438. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_constitution.py +0 -0
  1439. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_implement.py +0 -0
  1440. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_plan.py +0 -0
  1441. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_specify.py +0 -0
  1442. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_tasks.py +0 -0
  1443. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/speckit/commands/test_speckit_taskstoissues.py +0 -0
  1444. {agentic_devtools-0.2.53/tests/unit/cli/tasks/commands → agentic_devtools-0.2.55/tests/unit/cli/state}/__init__.py +0 -0
  1445. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_clear_cmd.py +0 -0
  1446. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_clear_workflow_cmd.py +0 -0
  1447. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_delete_cmd.py +0 -0
  1448. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_get_cmd.py +0 -0
  1449. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_get_workflow_cmd.py +0 -0
  1450. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_set_cmd.py +0 -0
  1451. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/state/test_show_cmd.py +0 -0
  1452. {agentic_devtools-0.2.53/tests/unit/cli/testing → agentic_devtools-0.2.55/tests/unit/cli/subprocess_utils}/__init__.py +0 -0
  1453. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/subprocess_utils/test_run_safe.py +0 -0
  1454. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/subprocess_utils/test_run_safe_integration.py +0 -0
  1455. {agentic_devtools-0.2.53/tests/unit/cli/vpn → agentic_devtools-0.2.55/tests/unit/cli/tasks}/__init__.py +0 -0
  1456. {agentic_devtools-0.2.53/tests/unit/cli/vpn → agentic_devtools-0.2.55/tests/unit/cli/tasks}/commands/__init__.py +0 -0
  1457. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_handle_task_completed.py +0 -0
  1458. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_helper_functions.py +0 -0
  1459. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_list_tasks.py +0 -0
  1460. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_safe_print_unicode_error.py +0 -0
  1461. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_show_other_incomplete_tasks.py +0 -0
  1462. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_command_integration.py +0 -0
  1463. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_id_argument.py +0 -0
  1464. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_log.py +0 -0
  1465. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_log_line_limits.py +0 -0
  1466. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_status.py +0 -0
  1467. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_wait.py +0 -0
  1468. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_task_wait_value_error_handling.py +0 -0
  1469. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_tasks_clean.py +0 -0
  1470. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/tasks/commands/test_try_advance_pr_review_to_decision.py +0 -0
  1471. {agentic_devtools-0.2.53/tests/unit/cli/vpn/runner → agentic_devtools-0.2.55/tests/unit/cli/testing}/__init__.py +0 -0
  1472. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/conftest.py +0 -0
  1473. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test__infer_test_file_from_source.py +0 -0
  1474. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test__try_get_workspace_root.py +0 -0
  1475. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_async_wrappers.py +0 -0
  1476. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_create_test_file_parser.py +0 -0
  1477. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_get_workspace_root.py +0 -0
  1478. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_subprocess_with_streaming.py +0 -0
  1479. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests.py +0 -0
  1480. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_file.py +0 -0
  1481. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_file_sync.py +0 -0
  1482. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_pattern.py +0 -0
  1483. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_quick.py +0 -0
  1484. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_quick_sync.py +0 -0
  1485. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/testing/test_run_tests_sync.py +0 -0
  1486. {agentic_devtools-0.2.53/tests/unit/cli/vscode_tasks → agentic_devtools-0.2.55/tests/unit/cli/vpn}/__init__.py +0 -0
  1487. {agentic_devtools-0.2.53/tests/unit/cli/workflows → agentic_devtools-0.2.55/tests/unit/cli/vpn/commands}/__init__.py +0 -0
  1488. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vpn/commands/test_vpn_run_cmd.py +0 -0
  1489. {agentic_devtools-0.2.53/tests/unit/cli/workflows/advancement → agentic_devtools-0.2.55/tests/unit/cli/vpn/runner}/__init__.py +0 -0
  1490. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vpn/runner/test__detect_vpn_requirement_from_command.py +0 -0
  1491. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vpn/runner/test__execute_command.py +0 -0
  1492. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vpn/runner/test_run_with_vpn_context.py +0 -0
  1493. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vpn/runner/test_vpnrequirement.py +0 -0
  1494. {agentic_devtools-0.2.53/tests/unit/cli/workflows/base → agentic_devtools-0.2.55/tests/unit/cli/vscode_tasks}/__init__.py +0 -0
  1495. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/vscode_tasks/test_remove_auto_start_task.py +0 -0
  1496. {agentic_devtools-0.2.53/tests/unit/cli/workflows/checklist → agentic_devtools-0.2.55/tests/unit/cli/workflows}/__init__.py +0 -0
  1497. {agentic_devtools-0.2.53/tests/unit/cli/workflows/commands → agentic_devtools-0.2.55/tests/unit/cli/workflows/advancement}/__init__.py +0 -0
  1498. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_branch_pushed.py +0 -0
  1499. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_commit.py +0 -0
  1500. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_jira_comment.py +0 -0
  1501. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_jira_issue_retrieved.py +0 -0
  1502. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_pr_creation.py +0 -0
  1503. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/advancement/test_try_advance_workflow_after_pr_review.py +0 -0
  1504. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/__init__.py +0 -0
  1505. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_appliedsuggestionentry.py +0 -0
  1506. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_appliedsuggestionsstate.py +0 -0
  1507. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_get_applied_suggestions_file_path.py +0 -0
  1508. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_load_applied_suggestions_state.py +0 -0
  1509. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_load_from_branch.py +0 -0
  1510. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/applied_suggestions/test_save_applied_suggestions_state.py +0 -0
  1511. {agentic_devtools-0.2.53/tests/unit/cli/workflows/manager → agentic_devtools-0.2.55/tests/unit/cli/workflows/base}/__init__.py +0 -0
  1512. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test__state_key_to_variable_name.py +0 -0
  1513. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test_advance_workflow_step.py +0 -0
  1514. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test_collect_variables_from_state.py +0 -0
  1515. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test_initiate_workflow.py +0 -0
  1516. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/base/test_validate_required_state.py +0 -0
  1517. {agentic_devtools-0.2.53/tests/unit/cli/workflows/preflight → agentic_devtools-0.2.55/tests/unit/cli/workflows/checklist}/__init__.py +0 -0
  1518. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/conftest.py +0 -0
  1519. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_checklist.py +0 -0
  1520. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_checklistitem.py +0 -0
  1521. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_get_checklist.py +0 -0
  1522. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_get_checklist_file_path.py +0 -0
  1523. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_initialize_checklist.py +0 -0
  1524. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_mark_items_completed.py +0 -0
  1525. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_parse_completed_items_arg.py +0 -0
  1526. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/checklist/test_save_checklist.py +0 -0
  1527. {agentic_devtools-0.2.53/tests/unit/cli/workflows/worktree_setup → agentic_devtools-0.2.55/tests/unit/cli/workflows/commands}/__init__.py +0 -0
  1528. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/conftest.py +0 -0
  1529. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__copy_review_state_to_apply_suggestions.py +0 -0
  1530. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__effective_argv.py +0 -0
  1531. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__execute_retrieve_step.py +0 -0
  1532. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__fetch_issue_for_prompt.py +0 -0
  1533. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__format_auto_setup_success_message.py +0 -0
  1534. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__format_jira_issue_comments.py +0 -0
  1535. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__format_jira_issue_prompt_fields.py +0 -0
  1536. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__parse_bool_interactive.py +0 -0
  1537. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test__stringify_jira_text_value.py +0 -0
  1538. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_advance_pull_request_review_workflow.py +0 -0
  1539. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_advance_work_on_jira_issue_workflow.py +0 -0
  1540. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_advance_workflow_cmd.py +0 -0
  1541. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_create_checklist_cmd.py +0 -0
  1542. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_get_workflow_cmd.py +0 -0
  1543. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_apply_pull_request_review_suggestions_workflow.py +0 -0
  1544. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_break_down_issue_into_subtasks_workflow.py +0 -0
  1545. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_create_jira_epic_workflow.py +0 -0
  1546. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_create_jira_issue_workflow.py +0 -0
  1547. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_create_jira_subtask_workflow.py +0 -0
  1548. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_optimize_issue_for_ai_agent_workflow.py +0 -0
  1549. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_pull_request_review_workflow.py +0 -0
  1550. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_update_jira_issue_workflow.py +0 -0
  1551. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_initiate_work_on_jira_issue_workflow.py +0 -0
  1552. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_notify_workflow_event.py +0 -0
  1553. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_setup_worktree_background_cmd.py +0 -0
  1554. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_show_checklist_cmd.py +0 -0
  1555. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/commands/test_update_checklist_cmd.py +0 -0
  1556. {agentic_devtools-0.2.53/tests/unit/config → agentic_devtools-0.2.55/tests/unit/cli/workflows/manager}/__init__.py +0 -0
  1557. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test__build_command_hint.py +0 -0
  1558. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test__check_required_tasks_status.py +0 -0
  1559. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test__render_failure_prompt.py +0 -0
  1560. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test__render_step_prompt.py +0 -0
  1561. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test__render_waiting_prompt.py +0 -0
  1562. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_get_next_step.py +0 -0
  1563. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_get_next_workflow_prompt.py +0 -0
  1564. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_get_next_workflow_prompt_cmd.py +0 -0
  1565. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_get_workflow_definition.py +0 -0
  1566. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_nextpromptresult.py +0 -0
  1567. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_notify_workflow_event.py +0 -0
  1568. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/manager/test_promptstatus.py +0 -0
  1569. {agentic_devtools-0.2.53/tests/unit/context → agentic_devtools-0.2.55/tests/unit/cli/workflows/preflight}/__init__.py +0 -0
  1570. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_check_worktree_and_branch.py +0 -0
  1571. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_generate_setup_instructions.py +0 -0
  1572. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_get_current_git_branch.py +0 -0
  1573. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_get_git_repo_root.py +0 -0
  1574. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/preflight/test_preflightresult.py +0 -0
  1575. {agentic_devtools-0.2.53/tests/unit/context/models → agentic_devtools-0.2.55/tests/unit/cli/workflows/worktree_setup}/__init__.py +0 -0
  1576. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__cleanup_pending_auto_start_marker.py +0 -0
  1577. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__detect_git_root.py +0 -0
  1578. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__detect_python_scripts_dir.py +0 -0
  1579. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__maybe_inject_auto_start_before_vscode.py +0 -0
  1580. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__prompt_file_relative_path.py +0 -0
  1581. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__propagate_agdt_cache.py +0 -0
  1582. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__resolve_state_context_in_worktree.py +0 -0
  1583. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__setup_worktree_from_state.py +0 -0
  1584. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__shell_quote.py +0 -0
  1585. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_apply_pr_suggestions.py +0 -0
  1586. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_create_jira_epic.py +0 -0
  1587. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_create_jira_issue.py +0 -0
  1588. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_create_jira_subtask.py +0 -0
  1589. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_pr_review.py +0 -0
  1590. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_update_jira_issue.py +0 -0
  1591. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_work_on_jira_issue.py +0 -0
  1592. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__start_copilot_session_for_workflow.py +0 -0
  1593. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__wait_for_prompt_file.py +0 -0
  1594. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__workflow_start_prompts.py +0 -0
  1595. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test__write_pending_auto_start_marker.py +0 -0
  1596. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_check_worktree_exists.py +0 -0
  1597. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_create_placeholder_and_setup_worktree.py +0 -0
  1598. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_create_placeholder_issue.py +0 -0
  1599. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_create_worktree.py +0 -0
  1600. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_find_workspace_file.py +0 -0
  1601. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_generate_workflow_branch_name.py +0 -0
  1602. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_get_ai_agent_continuation_prompt.py +0 -0
  1603. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_get_current_branch.py +0 -0
  1604. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_get_main_repo_root.py +0 -0
  1605. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_get_repos_parent_dir.py +0 -0
  1606. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_get_worktree_continuation_prompt.py +0 -0
  1607. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_inject_git_path_settings.py +0 -0
  1608. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_inject_python_path_settings.py +0 -0
  1609. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_is_in_worktree.py +0 -0
  1610. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_is_vscode_available.py +0 -0
  1611. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_open_vscode_workspace.py +0 -0
  1612. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_placeholderissueresult.py +0 -0
  1613. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_run_worktree_setup_script.py +0 -0
  1614. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_switch_to_main_branch.py +0 -0
  1615. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_worktreesetupresult.py +0 -0
  1616. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/cli/workflows/worktree_setup/test_worktreestatecontext.py +0 -0
  1617. {agentic_devtools-0.2.53/tests/unit/context/nodes → agentic_devtools-0.2.55/tests/unit/config}/__init__.py +0 -0
  1618. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/config/test_load_platform_config.py +0 -0
  1619. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/config/test_load_repo_config.py +0 -0
  1620. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/config/test_load_review_focus_areas.py +0 -0
  1621. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/config/test_save_platform_config.py +0 -0
  1622. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/conftest.py +0 -0
  1623. {agentic_devtools-0.2.53/tests/unit/context/retriever → agentic_devtools-0.2.55/tests/unit/context}/__init__.py +0 -0
  1624. {agentic_devtools-0.2.53/tests/unit/file_locking → agentic_devtools-0.2.55/tests/unit/context/models}/__init__.py +0 -0
  1625. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/context/models/test_agentcontext.py +0 -0
  1626. {agentic_devtools-0.2.53/tests/unit/mcp → agentic_devtools-0.2.55/tests/unit/context/nodes}/__init__.py +0 -0
  1627. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/context/nodes/test_retrieve_context_node.py +0 -0
  1628. {agentic_devtools-0.2.53/tests/unit/mcp/server → agentic_devtools-0.2.55/tests/unit/context/retriever}/__init__.py +0 -0
  1629. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/context/retriever/test_issuecontextretriever.py +0 -0
  1630. {agentic_devtools-0.2.53/tests/unit/orchestration → agentic_devtools-0.2.55/tests/unit/file_locking}/__init__.py +0 -0
  1631. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_cross_platform_behavior.py +0 -0
  1632. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_file_lock_error.py +0 -0
  1633. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_lock_file.py +0 -0
  1634. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_lock_functions.py +0 -0
  1635. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_locked_file.py +0 -0
  1636. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_locked_file_edge_cases.py +0 -0
  1637. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_locked_state_file.py +0 -0
  1638. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_unix_file_locking.py +0 -0
  1639. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_unlock_file.py +0 -0
  1640. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/file_locking/test_windows_file_locking.py +0 -0
  1641. {agentic_devtools-0.2.53/tests/unit/orchestration/checkpointing → agentic_devtools-0.2.55/tests/unit/mcp}/__init__.py +0 -0
  1642. {agentic_devtools-0.2.53/tests/unit/orchestration/graph_builder → agentic_devtools-0.2.55/tests/unit/mcp/server}/__init__.py +0 -0
  1643. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/mcp/server/test__load_azure_devops_config.py +0 -0
  1644. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/mcp/server/test__load_jira_config.py +0 -0
  1645. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/mcp/server/test_create_mcp_server.py +0 -0
  1646. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/mcp/server/test_main.py +0 -0
  1647. {agentic_devtools-0.2.53/tests/unit/orchestration/pilot_workflow → agentic_devtools-0.2.55/tests/unit/orchestration}/__init__.py +0 -0
  1648. {agentic_devtools-0.2.53/tests/unit/orchestration/state_schema → agentic_devtools-0.2.55/tests/unit/orchestration/checkpointing}/__init__.py +0 -0
  1649. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/checkpointing/test_get_checkpointer.py +0 -0
  1650. {agentic_devtools-0.2.53/tests/unit/prompts → agentic_devtools-0.2.55/tests/unit/orchestration/graph_builder}/__init__.py +0 -0
  1651. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/graph_builder/test_build_work_on_issue_graph.py +0 -0
  1652. {agentic_devtools-0.2.53/tests/unit/prompts/loader → agentic_devtools-0.2.55/tests/unit/orchestration/pilot_workflow}/__init__.py +0 -0
  1653. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test__utc_now.py +0 -0
  1654. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_checklist_creation_node.py +0 -0
  1655. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_commit_node.py +0 -0
  1656. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_completion_node.py +0 -0
  1657. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_get_mermaid_diagram.py +0 -0
  1658. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_implementation_node.py +0 -0
  1659. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_implementation_review_node.py +0 -0
  1660. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_initiate_node.py +0 -0
  1661. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_planning_gate_node.py +0 -0
  1662. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_planning_node.py +0 -0
  1663. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_pull_request_node.py +0 -0
  1664. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_route_after_implementation.py +0 -0
  1665. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_route_after_initiate.py +0 -0
  1666. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_route_after_plan.py +0 -0
  1667. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_route_after_verify.py +0 -0
  1668. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_setup_node.py +0 -0
  1669. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/pilot_workflow/test_verification_node.py +0 -0
  1670. {agentic_devtools-0.2.53/tests/unit/skill_injector → agentic_devtools-0.2.55/tests/unit/orchestration/state_schema}/__init__.py +0 -0
  1671. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/state_schema/test_workonissueevent.py +0 -0
  1672. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/orchestration/state_schema/test_workonissuestate.py +0 -0
  1673. {agentic_devtools-0.2.53/tests/unit/state → agentic_devtools-0.2.55/tests/unit/prompts}/__init__.py +0 -0
  1674. {agentic_devtools-0.2.53/tests/unit/submission_manager → agentic_devtools-0.2.55/tests/unit/prompts/loader}/__init__.py +0 -0
  1675. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/conftest.py +0 -0
  1676. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_get_prompts_dir.py +0 -0
  1677. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_get_required_variables.py +0 -0
  1678. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_get_temp_output_dir.py +0 -0
  1679. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_get_template_filename.py +0 -0
  1680. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_get_template_path.py +0 -0
  1681. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_load_and_render_prompt.py +0 -0
  1682. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_load_prompt_template.py +0 -0
  1683. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_log_prompt_with_save_notice.py +0 -0
  1684. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_pr_review_file_review_prompt_rendering.py +0 -0
  1685. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_pr_review_pull_request_overview_prompt_rendering.py +0 -0
  1686. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_save_generated_prompt.py +0 -0
  1687. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_silentundefined.py +0 -0
  1688. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_substitute_variables.py +0 -0
  1689. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_substitute_variables_syntax_error.py +0 -0
  1690. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_template_validation_error.py +0 -0
  1691. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/prompts/loader/test_validate_template_variables.py +0 -0
  1692. {agentic_devtools-0.2.53/tests/unit/submission_processor → agentic_devtools-0.2.55/tests/unit/skill_injector}/__init__.py +0 -0
  1693. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__derive_fallback_description_from_markdown.py +0 -0
  1694. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__ensure_github_gitignore_unignores_agdt.py +0 -0
  1695. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__extract_description.py +0 -0
  1696. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__flatten_filename.py +0 -0
  1697. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__generate_readme.py +0 -0
  1698. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__get_source_dir.py +0 -0
  1699. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__list_md_files.py +0 -0
  1700. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test__parse_frontmatter.py +0 -0
  1701. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/skill_injector/test_inject_skills.py +0 -0
  1702. {agentic_devtools-0.2.53/tests/unit/task_state → agentic_devtools-0.2.55/tests/unit/state}/__init__.py +0 -0
  1703. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__get_git_email.py +0 -0
  1704. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__get_or_refresh_identity.py +0 -0
  1705. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__read_identity_cache.py +0 -0
  1706. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__resolve_identity.py +0 -0
  1707. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__sync_bootstrap_for_context_key.py +0 -0
  1708. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__update_bootstrap_worktree_key.py +0 -0
  1709. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test__write_identity_cache.py +0 -0
  1710. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_clear_state.py +0 -0
  1711. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_clear_workflow_state.py +0 -0
  1712. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_delete_value.py +0 -0
  1713. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_all_keys.py +0 -0
  1714. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_bootstrap_state.py +0 -0
  1715. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_pull_request_id.py +0 -0
  1716. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_pypi_dry_run.py +0 -0
  1717. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_pypi_package_name.py +0 -0
  1718. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_pypi_repository.py +0 -0
  1719. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_pypi_version.py +0 -0
  1720. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_state_dir.py +0 -0
  1721. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_state_file_path.py +0 -0
  1722. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_thread_id.py +0 -0
  1723. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_value.py +0 -0
  1724. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_get_workflow_state.py +0 -0
  1725. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_is_dry_run.py +0 -0
  1726. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_is_safe_dir_segment.py +0 -0
  1727. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_is_workflow_active.py +0 -0
  1728. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_load_state.py +0 -0
  1729. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_load_state_locked.py +0 -0
  1730. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_save_state.py +0 -0
  1731. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_save_state_locked.py +0 -0
  1732. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_bootstrap_state.py +0 -0
  1733. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_context_value.py +0 -0
  1734. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_dry_run.py +0 -0
  1735. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_pull_request_id.py +0 -0
  1736. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_pypi_dry_run.py +0 -0
  1737. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_pypi_package_name.py +0 -0
  1738. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_pypi_repository.py +0 -0
  1739. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_pypi_version.py +0 -0
  1740. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_resolve_thread.py +0 -0
  1741. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_thread_id.py +0 -0
  1742. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_value.py +0 -0
  1743. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_set_workflow_state.py +0 -0
  1744. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_should_resolve_thread.py +0 -0
  1745. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_update_workflow_context.py +0 -0
  1746. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_update_workflow_step.py +0 -0
  1747. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/state/test_workflow_state_integration.py +0 -0
  1748. {agentic_devtools-0.2.53/tests/unit/tools → agentic_devtools-0.2.55/tests/unit/submission_manager}/__init__.py +0 -0
  1749. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_create_submission_manager.py +0 -0
  1750. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_faileditemsummary.py +0 -0
  1751. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_failurereport.py +0 -0
  1752. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_submissionitem.py +0 -0
  1753. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_submissionmanager.py +0 -0
  1754. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_submissionstatus.py +0 -0
  1755. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_manager/test_transientsubmissionerror.py +0 -0
  1756. {agentic_devtools-0.2.53/tests/unit/tools/azure_devops → agentic_devtools-0.2.55/tests/unit/submission_processor}/__init__.py +0 -0
  1757. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_processor/conftest.py +0 -0
  1758. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_processor/test__get_attribution_params.py +0 -0
  1759. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_processor/test__validate_suggestions.py +0 -0
  1760. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_processor/test_create_review_processor.py +0 -0
  1761. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/submission_processor/test_process_submission.py +0 -0
  1762. {agentic_devtools-0.2.53/tests/unit/tools/git → agentic_devtools-0.2.55/tests/unit/task_state}/__init__.py +0 -0
  1763. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test__update_task_in_all_tasks.py +0 -0
  1764. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_add_task.py +0 -0
  1765. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_background_task.py +0 -0
  1766. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_cleanup_expired_tasks.py +0 -0
  1767. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_duration_seconds.py +0 -0
  1768. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_from_dict_invalid_status.py +0 -0
  1769. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_active_tasks.py +0 -0
  1770. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_all_tasks.py +0 -0
  1771. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_all_tasks_file_path.py +0 -0
  1772. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_background_tasks.py +0 -0
  1773. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_background_tasks_dir.py +0 -0
  1774. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_failed_most_recent_per_command.py +0 -0
  1775. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_incomplete_most_recent_per_command.py +0 -0
  1776. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_logs_dir.py +0 -0
  1777. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_most_recent_tasks_per_command.py +0 -0
  1778. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_other_incomplete_tasks.py +0 -0
  1779. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_recent_tasks.py +0 -0
  1780. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_task_by_id.py +0 -0
  1781. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_task_from_all_tasks.py +0 -0
  1782. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_get_tasks_by_status.py +0 -0
  1783. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_is_expired.py +0 -0
  1784. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_print_task_tracking_info.py +0 -0
  1785. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_remove_task.py +0 -0
  1786. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_save_background_tasks.py +0 -0
  1787. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_sort_tasks.py +0 -0
  1788. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_task_lifecycle.py +0 -0
  1789. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_task_status.py +0 -0
  1790. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/task_state/test_update_task.py +0 -0
  1791. {agentic_devtools-0.2.53/tests/unit/tools/jira → agentic_devtools-0.2.55/tests/unit/tools}/__init__.py +0 -0
  1792. {agentic_devtools-0.2.53/tests/workflows → agentic_devtools-0.2.55/tests/unit/tools/azure_devops}/__init__.py +0 -0
  1793. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test__escape_for_cmd.py +0 -0
  1794. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test__get_requests.py +0 -0
  1795. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test_add_pull_request_comment.py +0 -0
  1796. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test_add_reviewer.py +0 -0
  1797. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test_create_pull_request.py +0 -0
  1798. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test_reply_to_pull_request_thread.py +0 -0
  1799. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/azure_devops/test_update_review_narrative.py +0 -0
  1800. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test__capture.py +0 -0
  1801. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test__run_op.py +0 -0
  1802. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_amend_commit.py +0 -0
  1803. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_create_commit.py +0 -0
  1804. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_force_push.py +0 -0
  1805. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_get_recent_changes.py +0 -0
  1806. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_publish_branch.py +0 -0
  1807. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_push.py +0 -0
  1808. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_save_work.py +0 -0
  1809. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/git/test_stage_changes.py +0 -0
  1810. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test__fetch_remote_links.py +0 -0
  1811. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test_add_comment.py +0 -0
  1812. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test_create_epic.py +0 -0
  1813. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test_create_issue.py +0 -0
  1814. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test_create_subtask.py +0 -0
  1815. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/unit/tools/jira/test_fetch_issue_context.py +0 -0
  1816. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/vpn/test_vpn_commands.py +0 -0
  1817. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/vpn/test_vpn_runner.py +0 -0
  1818. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/workflows/conftest.py +0 -0
  1819. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/workflows/test_copilot_generate.py +0 -0
  1820. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/tests/workflows/test_workflow_end_to_end.py +0 -0
  1821. {agentic_devtools-0.2.53 → agentic_devtools-0.2.55}/trigger.txt +0 -0
@@ -149,6 +149,8 @@ Using raw commands (e.g., `git`, raw REST API calls, `pytest`) bypasses:
149
149
  | Raw Azure DevOps REST API calls | `agdt-create-pull-request`, `agdt-add-pull-request-comment`, etc. |
150
150
  | Raw Jira REST API calls | `agdt-add-jira-comment`, `agdt-get-jira-issue`, etc. |
151
151
  | `gh issue create` (for this repo) | `agdt-create-agdt-feature-issue`, `agdt-create-agdt-bug-issue`, etc. |
152
+ | `gh pr view ... --json` | `agdt-gh-pr-state` |
153
+ | `gh pr checks` + `gh api check-suites` | `agdt-gh-pr-checks-status` |
152
154
 
153
155
  #### Exceptions — Raw Commands Still Required
154
156
 
@@ -160,6 +162,28 @@ Using raw commands (e.g., `git`, raw REST API calls, `pytest`) bypasses:
160
162
  | `gh pr review`, `gh pr comment` for external repos | No agdt support yet for general GitHub PR reviews |
161
163
  | Other `gh` operations not listed in the command mapping above | No agdt equivalent exists |
162
164
 
165
+ ### GitHub PR Actions (Synchronous)
166
+
167
+ | Command | Purpose | Required State / CLI Args |
168
+ |---------|---------|---------------------------|
169
+ | `agdt-gh-pr-state` | Fetch structured GitHub PR state | `--pr` (int) and optionally `--repo` (owner/repo); falls back to `github.pull_request_number` and `github.repo` state keys or git remote auto-detection |
170
+
171
+ **State keys written by `agdt-gh-pr-state`:**
172
+ `github.pull_request_number`, `github.repo`, `github.pr_state`,
173
+ `github.head_ref_oid`, `github.head_ref_oid_short`, `github.mergeable`,
174
+ `github.merge_state_status`, `github.is_draft`, `github.is_terminal`
175
+
176
+ **Usage:**
177
+
178
+ ```bash
179
+ # With explicit args
180
+ agdt-gh-pr-state --pr 1115 --repo ayaiayorg/agentic-devtools
181
+
182
+ # With state (repo auto-detected from git remote)
183
+ agdt-set github.pull_request_number 1115
184
+ agdt-gh-pr-state
185
+ ```
186
+
163
187
  ## 2. Package Structure
164
188
 
165
189
  ```text
@@ -243,6 +267,8 @@ agentic_devtools/
243
267
  | `github/state_helpers.py` | `get_issue_value()` and `set_issue_value()` for the `issue.*` state namespace |
244
268
  | `github/issue_commands.py` | Sync implementations: `create_agdt_issue`, `create_agdt_bug_issue`, `create_agdt_feature_issue`, `create_agdt_documentation_issue`, `create_agdt_task_issue` |
245
269
  | `github/async_commands.py` | Async wrappers (background tasks) and argparse CLI entry points for all `agdt-create-agdt-*` commands |
270
+ | `github/repo_resolution.py` | `resolve_github_repo()` for resolving `owner/repo` from CLI args or git remote |
271
+ | `github/pr_checks_status.py` | Dual-source CI check verification: `get_pr_checks_status()`, `pr_checks_status_command()` |
246
272
  | `prompts/loader.py` | Template loading, variable extraction, validation, substitution, and output saving |
247
273
  | `cli/workflows/base.py` | Base workflow utilities: `validate_required_state`, `initiate_workflow`, `advance_workflow_step` |
248
274
  | `cli/workflows/commands.py` | Workflow initiation CLI commands for each workflow type |
@@ -454,6 +480,29 @@ All file review commands automatically:
454
480
  3. Update the hierarchical review threads in Azure DevOps via PATCH requests (file, folder, and overall summary threads), then save the refreshed state to `review-state.json`
455
481
  4. Print next steps (continue with next file or advance to summary step)
456
482
 
483
+ ### GitHub PR Actions (Synchronous)
484
+
485
+ These commands interact with GitHub PRs via the `gh` CLI and return results directly (not background tasks).
486
+
487
+ | Command | Purpose | Required State / CLI Args |
488
+ |---------|---------|---------------------------|
489
+ | `agdt-gh-pr-checks-status` | Dual-source CI check verification | `--pr` or `github.pull_request_number`; `--repo` or git remote; optional `--head-sha` or `github.head_ref_oid` |
490
+
491
+ **`agdt-gh-pr-checks-status`** performs dual verification:
492
+
493
+ 1. Fetches structured check results via `gh pr checks --json`
494
+ 2. Verifies check-suite completion via `gh api` check-suites endpoint (when `head_sha` is available)
495
+
496
+ State keys written: `github.pr_checks_status`, `github.pr_checks_failed`, `github.pr_checks_pending`.
497
+
498
+ ```bash
499
+ # With CLI parameters
500
+ agdt-gh-pr-checks-status --pr 1115 --repo ayaiayorg/agentic-devtools --head-sha abc123
501
+
502
+ # Using state (set via agdt-set)
503
+ agdt-gh-pr-checks-status
504
+ ```
505
+
457
506
  ### Git Workflow Actions (Background Tasks)
458
507
 
459
508
  All Git workflow commands spawn background tasks:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-devtools
3
- Version: 0.2.53
3
+ Version: 0.2.55
4
4
  Summary: Agentic devtools integrate Jira, DevOps & more
5
5
  Author: ayaiayorg
6
6
  License-Expression: MIT
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.2.53'
22
- __version_tuple__ = version_tuple = (0, 2, 53)
21
+ __version__ = version = '0.2.55'
22
+ __version_tuple__ = version_tuple = (0, 2, 55)
23
23
 
24
24
  __commit_id__ = commit_id = None
@@ -494,3 +494,145 @@ def copilot_auto_start_cmd(argv: list[str] | None = None) -> None:
494
494
 
495
495
  _cleanup_pending_auto_start_marker(worktree_path)
496
496
  sys.exit(0)
497
+
498
+
499
+ def retry_autostart_cmd(argv: list[str] | None = None) -> None:
500
+ """Entry point for the ``agdt-retry-autostart`` CLI command.
501
+
502
+ Reads the ``pending-auto-start.json`` marker file from the target
503
+ worktree's ``.vscode/`` directory and re-invokes
504
+ :func:`copilot_auto_start_cmd` with the stored parameters, providing
505
+ a simple single-command retry path when the primary autostart
506
+ mechanisms fail.
507
+
508
+ Steps
509
+ -----
510
+ 1. Parse ``--worktree-path`` (default: CWD) and ``--force``.
511
+ 2. Read and validate ``<worktree_path>/.vscode/pending-auto-start.json``.
512
+ 3. Unless ``--force``, check the marker's ``run_id`` against the
513
+ current ``agdt_run_id`` in state; exit 1 on mismatch.
514
+ 4. Call ``_unmark_run_triggered`` to clear the deduplication guard.
515
+ 5. Delegate to ``copilot_auto_start_cmd`` with the stored parameters.
516
+ """
517
+ from agentic_devtools.cli.workflows.worktree_setup import (
518
+ _PENDING_AUTO_START_FILENAME,
519
+ _resolve_state_context_in_worktree,
520
+ )
521
+
522
+ parser = argparse.ArgumentParser(
523
+ prog="agdt-retry-autostart",
524
+ description="Retry a failed Copilot autostart using the pending marker file.",
525
+ )
526
+ parser.add_argument(
527
+ "--worktree-path",
528
+ default=None,
529
+ help="Path to the worktree directory (default: current working directory).",
530
+ )
531
+ parser.add_argument(
532
+ "--force",
533
+ action="store_true",
534
+ help="Skip stale-marker check and proceed with retry regardless.",
535
+ )
536
+
537
+ args = parser.parse_args(argv if argv is not None else sys.argv[1:])
538
+
539
+ worktree_path: str = args.worktree_path if args.worktree_path else os.getcwd()
540
+ force: bool = args.force
541
+
542
+ # --- Read the marker file ------------------------------------------------
543
+ marker_path = os.path.join(worktree_path, ".vscode", _PENDING_AUTO_START_FILENAME)
544
+
545
+ if not os.path.isfile(marker_path):
546
+ print(
547
+ f"agdt-retry-autostart: error: no pending auto-start marker found at {marker_path}. No autostart to retry.",
548
+ file=sys.stderr,
549
+ )
550
+ sys.exit(1)
551
+
552
+ try:
553
+ with open(marker_path, encoding="utf-8") as fh:
554
+ marker = json.load(fh)
555
+ except (json.JSONDecodeError, ValueError) as exc:
556
+ print(
557
+ f"agdt-retry-autostart: error: could not parse pending auto-start marker at {marker_path}: {exc}",
558
+ file=sys.stderr,
559
+ )
560
+ sys.exit(1)
561
+ except OSError as exc:
562
+ print(
563
+ f"agdt-retry-autostart: error: could not read pending auto-start marker at {marker_path}: {exc}",
564
+ file=sys.stderr,
565
+ )
566
+ sys.exit(1)
567
+
568
+ if not isinstance(marker, dict):
569
+ print(
570
+ f"agdt-retry-autostart: error: pending auto-start marker at {marker_path} "
571
+ f"has invalid format (expected JSON object).",
572
+ file=sys.stderr,
573
+ )
574
+ sys.exit(1)
575
+
576
+ # --- Validate required fields -------------------------------------------
577
+ for field in ("run_id", "start_prompt"):
578
+ value = marker.get(field)
579
+ if not isinstance(value, str) or not value.strip():
580
+ print(
581
+ f"agdt-retry-autostart: error: pending auto-start marker at "
582
+ f"{marker_path} is missing required field '{field}'.",
583
+ file=sys.stderr,
584
+ )
585
+ sys.exit(1)
586
+
587
+ # --- Validate worktree_path from marker ----------------------------------
588
+ marker_wt = marker.get("worktree_path", "")
589
+ effective_wt = args.worktree_path if args.worktree_path else marker_wt
590
+ if not isinstance(effective_wt, str) or not effective_wt or not os.path.isdir(effective_wt):
591
+ print(
592
+ f"agdt-retry-autostart: error: worktree path does not exist or is not a directory: {effective_wt!r}",
593
+ file=sys.stderr,
594
+ )
595
+ sys.exit(1)
596
+
597
+ run_id: str = marker["run_id"]
598
+
599
+ # --- Stale-marker check (unless --force) ---------------------------------
600
+ state_file_path: Path | None = None
601
+ if not force:
602
+ state_file_path, state_run_id = _resolve_state_context_in_worktree(effective_wt, include_run_id=True)
603
+ if state_file_path is None:
604
+ # State unreadable — warn but proceed (lenient approach per spec).
605
+ print(
606
+ "agdt-retry-autostart: warning: could not read state in worktree; skipping stale-marker check.",
607
+ file=sys.stderr,
608
+ )
609
+ elif state_run_id and state_run_id != run_id:
610
+ print(
611
+ f"agdt-retry-autostart: error: marker run_id ({run_id}) does not "
612
+ f"match current state run_id ({state_run_id}). Use --force to retry "
613
+ f"anyway.",
614
+ file=sys.stderr,
615
+ )
616
+ sys.exit(1)
617
+
618
+ # --- Resolve state file for _unmark_run_triggered ------------------------
619
+ if state_file_path is None:
620
+ state_file_path, _ = _resolve_state_context_in_worktree(effective_wt)
621
+ if state_file_path is not None:
622
+ _unmark_run_triggered(state_file_path, run_id)
623
+
624
+ # --- Delegate to copilot_auto_start_cmd ----------------------------------
625
+ constructed_argv: list[str] = [
626
+ "--worktree-path",
627
+ effective_wt,
628
+ "--start-prompt",
629
+ marker["start_prompt"],
630
+ "--run-id",
631
+ run_id,
632
+ ]
633
+
634
+ model = marker.get("model")
635
+ if isinstance(model, str) and model.strip():
636
+ constructed_argv.extend(["--model", model])
637
+
638
+ copilot_auto_start_cmd(argv=constructed_argv)
@@ -20,6 +20,9 @@ from .issue_commands import (
20
20
  create_agdt_issue,
21
21
  create_agdt_task_issue,
22
22
  )
23
+ from .pr_checks_status import get_pr_checks_status, pr_checks_status_command
24
+ from .pr_state import get_pr_state, pr_state_command
25
+ from .repo_resolution import resolve_github_repo
23
26
  from .state_helpers import (
24
27
  GITHUB_ISSUE_STATE_NAMESPACE,
25
28
  get_issue_value,
@@ -45,5 +48,10 @@ __all__ = [
45
48
  "create_agdt_task_issue_async",
46
49
  "create_agdt_task_issue_async_cli",
47
50
  "get_issue_value",
51
+ "get_pr_checks_status",
52
+ "get_pr_state",
53
+ "pr_checks_status_command",
54
+ "pr_state_command",
55
+ "resolve_github_repo",
48
56
  "set_issue_value",
49
57
  ]
@@ -0,0 +1,396 @@
1
+ """
2
+ PR CI/status check verification via dual-source: ``gh pr checks`` + check-suites API.
3
+
4
+ Provides ``get_pr_checks_status()`` for programmatic use and
5
+ ``pr_checks_status_command()`` as the CLI entry point for
6
+ ``agdt-gh-pr-checks-status``.
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ import argparse
12
+ import json
13
+ import sys
14
+ import time
15
+
16
+ from ...state import get_value, set_value
17
+ from ..subprocess_utils import run_safe
18
+ from .repo_resolution import resolve_github_repo
19
+
20
+ _GH_PR_CHECKS_JSON_FIELDS = "name,state,bucket,workflow,completedAt,description"
21
+ _CHECK_SUITE_GREEN_CONCLUSIONS = frozenset(["success", "neutral", "skipped"])
22
+ _MAX_RETRIES = 2
23
+ _RETRY_DELAY_SECONDS = 10.0
24
+
25
+
26
+ # ---------------------------------------------------------------------------
27
+ # Internal helpers
28
+ # ---------------------------------------------------------------------------
29
+
30
+
31
+ def _fetch_pr_checks(pr_number: int, repo: str) -> list[dict]:
32
+ """Fetch structured check results via ``gh pr checks --json``.
33
+
34
+ Retries up to *_MAX_RETRIES* times on failure. Calls ``sys.exit(1)``
35
+ when all retries are exhausted.
36
+ """
37
+ cmd = [
38
+ "gh",
39
+ "pr",
40
+ "checks",
41
+ str(pr_number),
42
+ "--repo",
43
+ repo,
44
+ "--json",
45
+ _GH_PR_CHECKS_JSON_FIELDS,
46
+ ]
47
+
48
+ last_error = ""
49
+ for attempt in range(_MAX_RETRIES + 1):
50
+ try:
51
+ result = run_safe(cmd, capture_output=True, text=True, shell=False)
52
+ except FileNotFoundError:
53
+ print(
54
+ "Error: 'gh' CLI is not installed or not on PATH. "
55
+ "Install from https://cli.github.com/",
56
+ file=sys.stderr,
57
+ )
58
+ sys.exit(1)
59
+ if result.returncode == 0:
60
+ try:
61
+ data = json.loads(result.stdout)
62
+ if isinstance(data, list):
63
+ return data
64
+ last_error = f"Unexpected JSON type: {type(data).__name__}"
65
+ except json.JSONDecodeError as exc:
66
+ last_error = f"JSON parse error: {exc}"
67
+ else:
68
+ last_error = (result.stderr or "").strip() or f"exit code {result.returncode}"
69
+
70
+ if attempt < _MAX_RETRIES:
71
+ print(
72
+ f"Warning: gh pr checks failed (attempt {attempt + 1}/{_MAX_RETRIES + 1}): "
73
+ f"{last_error}. Retrying in {_RETRY_DELAY_SECONDS}s …",
74
+ file=sys.stderr,
75
+ )
76
+ time.sleep(_RETRY_DELAY_SECONDS)
77
+
78
+ print(
79
+ f"Error: gh pr checks failed after {_MAX_RETRIES + 1} attempts: {last_error}",
80
+ file=sys.stderr,
81
+ )
82
+ sys.exit(1)
83
+
84
+
85
+ def _classify_checks(checks: list[dict]) -> dict:
86
+ """Classify checks by their ``bucket`` field.
87
+
88
+ Returns a dict with counts and lists of failed/pending check names.
89
+ """
90
+ passed = 0
91
+ failed = 0
92
+ pending = 0
93
+ skipped = 0
94
+ cancelled = 0
95
+ failed_checks: list[str] = []
96
+ pending_checks: list[str] = []
97
+
98
+ for check in checks:
99
+ bucket = check.get("bucket", "")
100
+ name = check.get("name", "unknown")
101
+ if bucket == "pass":
102
+ passed += 1
103
+ elif bucket == "fail":
104
+ failed += 1
105
+ failed_checks.append(name)
106
+ elif bucket == "pending":
107
+ pending += 1
108
+ pending_checks.append(name)
109
+ elif bucket == "skipping":
110
+ skipped += 1
111
+ elif bucket == "cancel":
112
+ cancelled += 1
113
+ # Unknown bucket values are silently ignored (not counted)
114
+
115
+ return {
116
+ "passed": passed,
117
+ "failed": failed,
118
+ "pending": pending,
119
+ "skipped": skipped,
120
+ "cancelled": cancelled,
121
+ "total": len(checks),
122
+ "failedChecks": failed_checks,
123
+ "pendingChecks": pending_checks,
124
+ }
125
+
126
+
127
+ def _normalize_repo(repo: str) -> str:
128
+ """Validate and normalize a *owner/repo* string.
129
+
130
+ Strips whitespace and a trailing ``.git`` suffix, then verifies the
131
+ value contains exactly one ``/`` separator. Calls ``sys.exit(1)``
132
+ with a user-facing message when the format is invalid.
133
+ """
134
+ repo = repo.strip()
135
+ if repo.endswith(".git"):
136
+ repo = repo[: -len(".git")]
137
+ if "/" not in repo or repo.count("/") != 1:
138
+ print(
139
+ f"Error: invalid repo format '{repo}'. Expected 'owner/repo' "
140
+ "(for example: agdt-set github.repo myorg/myrepo).",
141
+ file=sys.stderr,
142
+ )
143
+ sys.exit(1)
144
+ owner, name = repo.split("/", 1)
145
+ if not owner or not name:
146
+ print(
147
+ f"Error: invalid repo format '{repo}'. Both owner and repo name "
148
+ "must be non-empty (for example: agdt-set github.repo myorg/myrepo).",
149
+ file=sys.stderr,
150
+ )
151
+ sys.exit(1)
152
+ return repo
153
+
154
+
155
+ def _fetch_check_suites(repo: str, head_sha: str) -> list[dict]:
156
+ """Fetch check-suite data via ``gh api`` with pagination.
157
+
158
+ Returns an empty list on persistent failure (graceful degradation).
159
+ """
160
+ owner, repo_name = repo.split("/", 1)
161
+ cmd = [
162
+ "gh",
163
+ "api",
164
+ f"repos/{owner}/{repo_name}/commits/{head_sha}/check-suites?per_page=100",
165
+ "--paginate",
166
+ "--jq",
167
+ ".check_suites[]",
168
+ ]
169
+
170
+ last_error = ""
171
+ for attempt in range(_MAX_RETRIES + 1):
172
+ try:
173
+ result = run_safe(cmd, capture_output=True, text=True, shell=False)
174
+ except FileNotFoundError:
175
+ print(
176
+ "Warning: 'gh' CLI is not installed or not on PATH. "
177
+ "Skipping check-suite verification. "
178
+ "Install from https://cli.github.com/",
179
+ file=sys.stderr,
180
+ )
181
+ return []
182
+ if result.returncode == 0:
183
+ stdout = result.stdout.strip()
184
+ if not stdout:
185
+ return []
186
+ try:
187
+ suites = [json.loads(line) for line in stdout.splitlines() if line.strip()]
188
+ return suites
189
+ except json.JSONDecodeError as exc:
190
+ last_error = f"JSON parse error: {exc}"
191
+ else:
192
+ last_error = (result.stderr or "").strip() or f"exit code {result.returncode}"
193
+
194
+ if attempt < _MAX_RETRIES:
195
+ print(
196
+ f"Warning: check-suites API failed (attempt {attempt + 1}/{_MAX_RETRIES + 1}): "
197
+ f"{last_error}. Retrying in {_RETRY_DELAY_SECONDS}s …",
198
+ file=sys.stderr,
199
+ )
200
+ time.sleep(_RETRY_DELAY_SECONDS)
201
+
202
+ print(
203
+ f"Warning: check-suites API failed after {_MAX_RETRIES + 1} attempts: {last_error}. "
204
+ "Skipping check-suite verification.",
205
+ file=sys.stderr,
206
+ )
207
+ return []
208
+
209
+
210
+ def _verify_check_suites(suites: list[dict]) -> tuple[bool, list[dict]]:
211
+ """Verify that all check suites are green.
212
+
213
+ Returns ``(all_verified, discrepancies)`` where each discrepancy is a
214
+ dict with ``suiteId``, ``app``, ``status``, and ``conclusion``.
215
+ """
216
+ discrepancies: list[dict] = []
217
+ for suite in suites:
218
+ status = suite.get("status", "")
219
+ conclusion = suite.get("conclusion") or ""
220
+ app_raw = suite.get("app")
221
+ if isinstance(app_raw, dict):
222
+ app_slug = app_raw.get("slug", "unknown")
223
+ else:
224
+ app_slug = str(app_raw) if app_raw else "unknown"
225
+
226
+ if status != "completed" or conclusion not in _CHECK_SUITE_GREEN_CONCLUSIONS:
227
+ discrepancies.append(
228
+ {
229
+ "suiteId": suite.get("id"),
230
+ "app": app_slug,
231
+ "status": status,
232
+ "conclusion": conclusion,
233
+ }
234
+ )
235
+ return (len(discrepancies) == 0, discrepancies)
236
+
237
+
238
+ def _reconcile_results(
239
+ classification: dict,
240
+ suites_verified: bool,
241
+ discrepancies: list[dict],
242
+ head_sha_available: bool,
243
+ ) -> dict:
244
+ """Determine final status and build output dict."""
245
+ # Base status from classification
246
+ if classification["pending"] > 0:
247
+ status = "pending"
248
+ elif classification["failed"] > 0:
249
+ status = "failed"
250
+ elif classification["cancelled"] > 0:
251
+ status = "cancelled"
252
+ else:
253
+ status = "all-pass"
254
+
255
+ check_suites_verified = False
256
+
257
+ if head_sha_available:
258
+ if status == "all-pass" and not suites_verified:
259
+ # Override based on discrepancies
260
+ for d in discrepancies:
261
+ if d.get("status") != "completed":
262
+ status = "pending"
263
+ break
264
+ # Any completed suite with a non-green conclusion
265
+ # (cancelled, timed_out, action_required, etc.) is a failure.
266
+ if d.get("conclusion") not in _CHECK_SUITE_GREEN_CONCLUSIONS:
267
+ status = "failed"
268
+ break
269
+ check_suites_verified = suites_verified
270
+ # else: head_sha not available → checkSuitesVerified stays False
271
+
272
+ return {
273
+ "status": status,
274
+ "totalChecks": classification["total"],
275
+ "passed": classification["passed"],
276
+ "failed": classification["failed"],
277
+ "pending": classification["pending"],
278
+ "skipped": classification["skipped"],
279
+ "cancelled": classification["cancelled"],
280
+ "failedChecks": classification["failedChecks"],
281
+ "pendingChecks": classification["pendingChecks"],
282
+ "checkSuitesVerified": check_suites_verified,
283
+ "checkSuiteDiscrepancies": discrepancies if head_sha_available else [],
284
+ }
285
+
286
+
287
+ # ---------------------------------------------------------------------------
288
+ # Public API
289
+ # ---------------------------------------------------------------------------
290
+
291
+
292
+ def get_pr_checks_status(
293
+ pr_number: int,
294
+ repo: str,
295
+ head_sha: str | None = None,
296
+ ) -> dict:
297
+ """Fetch, classify, verify, and reconcile PR check status.
298
+
299
+ Writes ``github.pr_checks_status``, ``github.pr_checks_failed``, and
300
+ ``github.pr_checks_pending`` to state.
301
+
302
+ Returns the full structured result dict.
303
+ """
304
+ repo = _normalize_repo(repo)
305
+ checks = _fetch_pr_checks(pr_number, repo)
306
+ classification = _classify_checks(checks)
307
+
308
+ if head_sha is not None:
309
+ suites = _fetch_check_suites(repo, head_sha)
310
+ if suites:
311
+ suites_verified, discrepancies = _verify_check_suites(suites)
312
+ else:
313
+ suites_verified = False
314
+ discrepancies = []
315
+ head_sha_available = True
316
+ else:
317
+ suites_verified = False
318
+ discrepancies = []
319
+ head_sha_available = False
320
+
321
+ result = _reconcile_results(classification, suites_verified, discrepancies, head_sha_available)
322
+ result["prNumber"] = pr_number
323
+ result["repo"] = repo
324
+
325
+ # Persist to state for downstream commands
326
+ set_value("github.pr_checks_status", result["status"])
327
+ set_value("github.pr_checks_failed", result["failedChecks"])
328
+ set_value("github.pr_checks_pending", result["pendingChecks"])
329
+
330
+ return result
331
+
332
+
333
+ # ---------------------------------------------------------------------------
334
+ # CLI entry point
335
+ # ---------------------------------------------------------------------------
336
+
337
+
338
+ def pr_checks_status_command() -> None:
339
+ """CLI entry point for ``agdt-gh-pr-checks-status``."""
340
+ parser = argparse.ArgumentParser(
341
+ description="Check CI/status check results for a GitHub PR.",
342
+ )
343
+ parser.add_argument("--pr", type=int, default=None, help="Pull request number")
344
+ parser.add_argument(
345
+ "--repo",
346
+ type=str,
347
+ default=None,
348
+ help="Repository in owner/repo format",
349
+ )
350
+ parser.add_argument(
351
+ "--head-sha",
352
+ type=str,
353
+ default=None,
354
+ help="Head commit SHA for check-suite verification",
355
+ )
356
+ args = parser.parse_args()
357
+
358
+ # Resolve PR number
359
+ pr_number = args.pr
360
+ if pr_number is None:
361
+ pr_number = get_value("github.pull_request_number")
362
+ if pr_number is None:
363
+ print(
364
+ "Error: PR number required. Provide --pr or set github.pull_request_number in state (via agdt-set).",
365
+ file=sys.stderr,
366
+ )
367
+ sys.exit(1)
368
+ try:
369
+ pr_number = int(pr_number)
370
+ except (TypeError, ValueError):
371
+ print(
372
+ "Error: PR number must be an integer. Provide --pr <number> or set "
373
+ "github.pull_request_number to a valid integer (for example: "
374
+ "agdt-set github.pull_request_number 123).",
375
+ file=sys.stderr,
376
+ )
377
+ sys.exit(1)
378
+
379
+ # Resolve repo
380
+ repo = resolve_github_repo(args.repo)
381
+
382
+ # Resolve head SHA (optional — graceful degradation)
383
+ head_sha = args.head_sha
384
+ if head_sha is None:
385
+ head_sha = get_value("github.head_ref_oid")
386
+ if head_sha is not None:
387
+ head_sha = str(head_sha)
388
+ if head_sha is None:
389
+ print(
390
+ "Notice: head_ref_oid not available — skipping check-suite verification. "
391
+ "Provide --head-sha or set github.head_ref_oid in state for dual verification.",
392
+ file=sys.stderr,
393
+ )
394
+
395
+ result = get_pr_checks_status(pr_number, repo, head_sha)
396
+ print(json.dumps(result, indent=2))