shotgun-sh 0.2.6.dev3__tar.gz → 0.2.6.dev5__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.

Potentially problematic release.


This version of shotgun-sh might be problematic. Click here for more details.

Files changed (156) hide show
  1. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/PKG-INFO +1 -1
  2. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/pyproject.toml +1 -1
  3. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/config/manager.py +4 -0
  4. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/export.j2 +17 -0
  5. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/welcome.py +10 -2
  6. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/.gitignore +0 -0
  7. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/LICENSE +0 -0
  8. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/README.md +0 -0
  9. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/hatch_build.py +0 -0
  10. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/__init__.py +0 -0
  11. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/__init__.py +0 -0
  12. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/agent_manager.py +0 -0
  13. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/common.py +0 -0
  14. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/config/__init__.py +0 -0
  15. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/config/constants.py +0 -0
  16. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/config/models.py +0 -0
  17. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/config/provider.py +0 -0
  18. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/conversation_history.py +0 -0
  19. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/conversation_manager.py +0 -0
  20. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/export.py +0 -0
  21. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/__init__.py +0 -0
  22. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/compaction.py +0 -0
  23. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/constants.py +0 -0
  24. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/context_extraction.py +0 -0
  25. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/history_building.py +0 -0
  26. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/history_processors.py +0 -0
  27. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/message_utils.py +0 -0
  28. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/__init__.py +0 -0
  29. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/anthropic.py +0 -0
  30. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/base.py +0 -0
  31. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/openai.py +0 -0
  32. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/sentencepiece_counter.py +0 -0
  33. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/tokenizer_cache.py +0 -0
  34. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_counting/utils.py +0 -0
  35. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/history/token_estimation.py +0 -0
  36. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/llm.py +0 -0
  37. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/messages.py +0 -0
  38. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/models.py +0 -0
  39. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/plan.py +0 -0
  40. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/research.py +0 -0
  41. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/specify.py +0 -0
  42. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tasks.py +0 -0
  43. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/__init__.py +0 -0
  44. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/__init__.py +0 -0
  45. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/codebase_shell.py +0 -0
  46. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/directory_lister.py +0 -0
  47. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/file_read.py +0 -0
  48. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/models.py +0 -0
  49. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/query_graph.py +0 -0
  50. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/codebase/retrieve_code.py +0 -0
  51. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/file_management.py +0 -0
  52. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/web_search/__init__.py +0 -0
  53. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/web_search/anthropic.py +0 -0
  54. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/web_search/gemini.py +0 -0
  55. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/web_search/openai.py +0 -0
  56. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/tools/web_search/utils.py +0 -0
  57. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/agents/usage_manager.py +0 -0
  58. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/api_endpoints.py +0 -0
  59. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/build_constants.py +0 -0
  60. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/__init__.py +0 -0
  61. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/codebase/__init__.py +0 -0
  62. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/codebase/commands.py +0 -0
  63. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/codebase/models.py +0 -0
  64. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/config.py +0 -0
  65. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/export.py +0 -0
  66. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/feedback.py +0 -0
  67. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/models.py +0 -0
  68. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/plan.py +0 -0
  69. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/research.py +0 -0
  70. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/specify.py +0 -0
  71. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/tasks.py +0 -0
  72. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/update.py +0 -0
  73. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/cli/utils.py +0 -0
  74. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/__init__.py +0 -0
  75. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/__init__.py +0 -0
  76. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/change_detector.py +0 -0
  77. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/code_retrieval.py +0 -0
  78. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/cypher_models.py +0 -0
  79. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/ingestor.py +0 -0
  80. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/language_config.py +0 -0
  81. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/manager.py +0 -0
  82. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/nl_query.py +0 -0
  83. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/core/parser_loader.py +0 -0
  84. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/models.py +0 -0
  85. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/codebase/service.py +0 -0
  86. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/llm_proxy/__init__.py +0 -0
  87. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/llm_proxy/clients.py +0 -0
  88. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/llm_proxy/constants.py +0 -0
  89. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/logging_config.py +0 -0
  90. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/main.py +0 -0
  91. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/posthog_telemetry.py +0 -0
  92. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/__init__.py +0 -0
  93. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/__init__.py +0 -0
  94. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/partials/codebase_understanding.j2 +0 -0
  95. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/partials/common_agent_system_prompt.j2 +0 -0
  96. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/partials/content_formatting.j2 +0 -0
  97. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/partials/interactive_mode.j2 +0 -0
  98. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/plan.j2 +0 -0
  99. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/research.j2 +0 -0
  100. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/specify.j2 +0 -0
  101. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/state/codebase/codebase_graphs_available.j2 +0 -0
  102. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/state/system_state.j2 +0 -0
  103. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/agents/tasks.j2 +0 -0
  104. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/__init__.py +0 -0
  105. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/cypher_query_patterns.j2 +0 -0
  106. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/cypher_system.j2 +0 -0
  107. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/enhanced_query_context.j2 +0 -0
  108. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/partials/cypher_rules.j2 +0 -0
  109. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/partials/graph_schema.j2 +0 -0
  110. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/codebase/partials/temporal_context.j2 +0 -0
  111. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/history/__init__.py +0 -0
  112. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/history/incremental_summarization.j2 +0 -0
  113. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/history/summarization.j2 +0 -0
  114. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/loader.py +0 -0
  115. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/prompts/tools/web_search.j2 +0 -0
  116. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/py.typed +0 -0
  117. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sdk/__init__.py +0 -0
  118. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sdk/codebase.py +0 -0
  119. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sdk/exceptions.py +0 -0
  120. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sdk/models.py +0 -0
  121. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sdk/services.py +0 -0
  122. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/sentry_telemetry.py +0 -0
  123. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/shotgun_web/__init__.py +0 -0
  124. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/shotgun_web/client.py +0 -0
  125. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/shotgun_web/constants.py +0 -0
  126. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/shotgun_web/models.py +0 -0
  127. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/telemetry.py +0 -0
  128. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/__init__.py +0 -0
  129. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/app.py +0 -0
  130. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/commands/__init__.py +0 -0
  131. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/components/prompt_input.py +0 -0
  132. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/components/spinner.py +0 -0
  133. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/components/splash.py +0 -0
  134. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/components/vertical_tail.py +0 -0
  135. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/filtered_codebase_service.py +0 -0
  136. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat.py +0 -0
  137. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat.tcss +0 -0
  138. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat_screen/__init__.py +0 -0
  139. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat_screen/command_providers.py +0 -0
  140. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat_screen/hint_message.py +0 -0
  141. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/chat_screen/history.py +0 -0
  142. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/directory_setup.py +0 -0
  143. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/feedback.py +0 -0
  144. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/model_picker.py +0 -0
  145. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/provider_config.py +0 -0
  146. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/shotgun_auth.py +0 -0
  147. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/screens/splash.py +0 -0
  148. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/styles.tcss +0 -0
  149. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/utils/__init__.py +0 -0
  150. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/tui/utils/mode_progress.py +0 -0
  151. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/__init__.py +0 -0
  152. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/datetime_utils.py +0 -0
  153. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/env_utils.py +0 -0
  154. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/file_system_utils.py +0 -0
  155. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/source_detection.py +0 -0
  156. {shotgun_sh-0.2.6.dev3 → shotgun_sh-0.2.6.dev5}/src/shotgun/utils/update_checker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shotgun-sh
3
- Version: 0.2.6.dev3
3
+ Version: 0.2.6.dev5
4
4
  Summary: AI-powered research, planning, and task management CLI tool
5
5
  Project-URL: Homepage, https://shotgun.sh/
6
6
  Project-URL: Repository, https://github.com/shotgun-sh/shotgun
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "shotgun-sh"
3
- version = "0.2.6.dev3"
3
+ version = "0.2.6.dev5"
4
4
  description = "AI-powered research, planning, and task management CLI tool"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -249,6 +249,10 @@ class ConfigManager:
249
249
  if provider_enum in provider_models:
250
250
  config.selected_model = provider_models[provider_enum]
251
251
 
252
+ # Mark welcome screen as shown when BYOK provider is configured
253
+ # This prevents the welcome screen from showing again after user has made their choice
254
+ config.shown_welcome_screen = True
255
+
252
256
  self.save(config)
253
257
 
254
258
  def clear_provider_key(self, provider: ProviderType | str) -> None:
@@ -124,6 +124,7 @@ content_tasks = read_file('tasks.md') # Read implementation details
124
124
  - `plan.md` - Extract development approach and stages
125
125
  - `tasks.md` - Understand implementation tasks and structure
126
126
  2. **Map content to agents.md standard sections**:
127
+ - **Research, Specifications, and Planning**: ALWAYS include this section first. Check which pipeline files exist in `.shotgun/` (research.md, specification.md, plan.md, tasks.md) and list only the ones that exist. If none exist, omit this section.
127
128
  - **Project Overview**: Brief description and key technologies from specification.md
128
129
  - **Dev Environment Setup**: Installation, dependencies, dev server commands
129
130
  - **Code Style Guidelines**: Coding conventions and patterns from research.md
@@ -170,6 +171,14 @@ For additional specialized exports (only if specifically requested):
170
171
  <CORRECT_CONTENT_TEMPLATE>
171
172
  # Agents.md - [Project Name]
172
173
 
174
+ ## Research, Specifications, and Planning
175
+
176
+ The `.shotgun/` folder contains background research, specifications, and implementation planning files. Refer to these files for additional context:
177
+ - `research.md` - Codebase analysis and research findings
178
+ - `specification.md` - Project requirements and specifications
179
+ - `plan.md` - Development plan and implementation approach
180
+ - `tasks.md` - Task breakdown and implementation progress
181
+
173
182
  ## Project Overview
174
183
  - Brief description of what the project does
175
184
  - Key technologies and frameworks used
@@ -253,6 +262,14 @@ This project is about [making assumptions without reading files]...
253
262
  <GOOD_CONTENT_EXAMPLE>
254
263
  # Agents.md - E-commerce API Project
255
264
 
265
+ ## Research, Specifications, and Planning
266
+
267
+ The `.shotgun/` folder contains background research, specifications, and implementation planning files. Refer to these files for additional context:
268
+ - `research.md` - Codebase analysis and research findings
269
+ - `specification.md` - Project requirements and specifications
270
+ - `plan.md` - Development plan and implementation approach
271
+ - `tasks.md` - Task breakdown and implementation progress
272
+
256
273
  ## Project Overview
257
274
  - REST API for product catalog management with authentication
258
275
  - Built with Python/FastAPI for high performance async operations
@@ -152,6 +152,10 @@ class WelcomeScreen(Screen[None]):
152
152
  @on(Button.Pressed, "#byok-button")
153
153
  def _on_byok_pressed(self) -> None:
154
154
  """Handle BYOK button press."""
155
+ self.run_worker(self._start_byok_config(), exclusive=True)
156
+
157
+ async def _start_byok_config(self) -> None:
158
+ """Launch BYOK provider configuration flow."""
155
159
  self._mark_welcome_shown()
156
160
 
157
161
  app = cast("ShotgunApp", self.app)
@@ -161,10 +165,14 @@ class WelcomeScreen(Screen[None]):
161
165
  self.dismiss()
162
166
  return
163
167
 
164
- # Otherwise, push provider config screen
168
+ # Otherwise, push provider config screen and wait for result
165
169
  from .provider_config import ProviderConfigScreen
166
170
 
167
- self.app.push_screen(ProviderConfigScreen())
171
+ await self.app.push_screen_wait(ProviderConfigScreen())
172
+
173
+ # Dismiss welcome screen after config if providers are now configured
174
+ if app.config_manager.has_any_provider_key():
175
+ self.dismiss()
168
176
 
169
177
  async def _start_shotgun_auth(self) -> None:
170
178
  """Launch Shotgun Account authentication flow."""
File without changes