shotgun-sh 0.4.3.dev1__tar.gz → 0.4.3.dev2__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.
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/PKG-INFO +1 -1
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/pyproject.toml +1 -1
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/router.j2 +23 -7
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/.gitignore +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/LICENSE +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/README.md +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/hatch_build.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/agent_manager.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/common.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/README.md +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/manager.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/provider.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/config/streaming_test.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/analyzer.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/formatter.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/filters.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/chunking.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/compaction.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/context_extraction.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/file_content_deduplication.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/history_building.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/history_processors.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/message_utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/anthropic.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/base.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/openai.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/sentencepiece_counter.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/tokenizer_cache.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_counting/utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/token_estimation.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/manager.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/error/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/error/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/export.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/llm.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/messages.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/plan.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/research.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/router.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/tools/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/tools/delegation_tools.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/tools/plan_tools.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/runner.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/specify.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tasks.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/codebase_shell.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/directory_lister.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/file_read.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/query_graph.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/retrieve_code.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/file_management.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/registry.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/anthropic.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/gemini.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/openai.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/usage_manager.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/api_endpoints.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/build_constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/clear.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/codebase/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/codebase/commands.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/codebase/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/compact.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/config.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/context.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/error_handler.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/export.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/feedback.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/plan.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/research.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/spec/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/spec/backup.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/spec/commands.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/spec/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/spec/pull_service.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/specify.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/tasks.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/update.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/cli/utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/change_detector.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/code_retrieval.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/cypher_models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/ingestor.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/language_config.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/manager.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/nl_query.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/parser_loader.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/service.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/exceptions.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/llm_proxy/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/llm_proxy/client.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/llm_proxy/clients.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/llm_proxy/constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/llm_proxy/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/logging_config.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/main.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/posthog_telemetry.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/export.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/partials/codebase_understanding.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/partials/common_agent_system_prompt.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/partials/content_formatting.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/partials/interactive_mode.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/partials/router_delegation_mode.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/plan.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/research.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/specify.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/state/codebase/codebase_graphs_available.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/state/system_state.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/tasks.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/cypher_query_patterns.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/cypher_system.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/enhanced_query_context.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/partials/cypher_rules.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/partials/graph_schema.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/partials/temporal_context.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/chunk_summarization.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/combine_summaries.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/incremental_summarization.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/summarization.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/loader.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/tools/web_search.j2 +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/py.typed +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sdk/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sdk/codebase.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sdk/exceptions.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sdk/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sdk/services.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/sentry_telemetry.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/settings.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/client.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/constants.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/exceptions.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/file_scanner.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/hasher.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/upload_pipeline.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/specs_client.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/supabase_client.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/telemetry.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/app.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/commands/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/context_indicator.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/mode_indicator.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/prompt_input.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/spinner.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/splash.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/status_bar.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/vertical_tail.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/containers.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/dependencies.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/filtered_codebase_service.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/layout.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/protocols.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/chat.tcss +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/chat_screen.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/codebase_index_prompt_screen.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/codebase_index_selection.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/help_text.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/prompt_history.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat.tcss +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/command_providers.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/hint_message.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/agent_response.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/chat_history.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/formatters.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/partial_response.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/history/user_question.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/messages.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/confirmation_dialog.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/directory_setup.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/feedback.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/github_issue.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/model_picker.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/pipx_migration.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/provider_config.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/create_spec_dialog.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/models.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/share_specs_dialog.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/upload_progress_screen.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shotgun_auth.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/spec_pull.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/splash.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/welcome.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/services/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/services/conversation_service.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/state/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/state/processing_state.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/styles.tcss +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/utils/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/utils/mode_progress.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/approval_widget.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/cascade_confirmation_widget.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/plan_panel.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/step_checkpoint_widget.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/widget_coordinator.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/__init__.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/datetime_utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/env_utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/file_system_utils.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/marketing.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/source_detection.py +0 -0
- {shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/utils/update_checker.py +0 -0
|
@@ -178,7 +178,7 @@ You: "What specifically would you like to update in the specification?
|
|
|
178
178
|
|
|
179
179
|
<GOOD_EXAMPLE name="Clear request - create plan">
|
|
180
180
|
User: "Add OAuth2 authentication to the spec with Google and GitHub providers"
|
|
181
|
-
You: *calls create_plan with goal="Add OAuth2 to specification" and steps=["
|
|
181
|
+
You: *calls create_plan with goal="Add OAuth2 to specification" and steps=["Research existing auth patterns in codebase", "Write OAuth2 specification with Google/GitHub providers"]*
|
|
182
182
|
"Here's my plan: [shows plan]. Ready to proceed?"
|
|
183
183
|
</GOOD_EXAMPLE>
|
|
184
184
|
|
|
@@ -309,14 +309,30 @@ Do not create a plan for:
|
|
|
309
309
|
</PLAN_MANAGEMENT>
|
|
310
310
|
|
|
311
311
|
<PIPELINE_ORDER>
|
|
312
|
-
When
|
|
312
|
+
When creating a plan for a new feature or integration, include steps in this order:
|
|
313
313
|
|
|
314
|
-
1. Research first
|
|
315
|
-
2.
|
|
316
|
-
3.
|
|
317
|
-
4.
|
|
314
|
+
1. Research existing codebase patterns first (delegate_to_research)
|
|
315
|
+
2. Write specification second (delegate_to_specification)
|
|
316
|
+
3. Create implementation plan third (delegate_to_plan)
|
|
317
|
+
4. Generate tasks last (delegate_to_tasks)
|
|
318
318
|
|
|
319
|
-
This order ensures each stage has context from previous stages.
|
|
319
|
+
This order ensures each stage has context from previous stages. The research step is critical - you cannot write a good spec without understanding the existing codebase architecture.
|
|
320
|
+
|
|
321
|
+
<BAD_EXAMPLE name="Plan skips research">
|
|
322
|
+
Goal: "Add WebSocket support"
|
|
323
|
+
Steps:
|
|
324
|
+
1. Write specification for WebSocket integration
|
|
325
|
+
2. Create implementation plan
|
|
326
|
+
WRONG - skipped research. How can you spec an integration without understanding the existing code?
|
|
327
|
+
</BAD_EXAMPLE>
|
|
328
|
+
|
|
329
|
+
<GOOD_EXAMPLE name="Plan starts with research">
|
|
330
|
+
Goal: "Add WebSocket support"
|
|
331
|
+
Steps:
|
|
332
|
+
1. Research existing real-time/connection patterns in codebase
|
|
333
|
+
2. Write specification for WebSocket integration
|
|
334
|
+
3. Create implementation plan
|
|
335
|
+
</GOOD_EXAMPLE>
|
|
320
336
|
|
|
321
337
|
Be minimal:
|
|
322
338
|
- Do the minimum research necessary - don't over-research
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/analyzer.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/constants.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/formatter.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/context_analyzer/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/chunking.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/conversation/history/constants.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/tools/delegation_tools.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/router/tools/plan_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/codebase_shell.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/file_read.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/query_graph.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/codebase/retrieve_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/anthropic.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/gemini.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/openai.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/agents/tools/web_search/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/change_detector.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/codebase/core/language_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/agents/state/system_state.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/codebase/cypher_system.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/chunk_summarization.j2
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/combine_summaries.j2
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/prompts/history/summarization.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/file_scanner.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/hasher.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/models.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/shotgun_web/shared_specs/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/context_indicator.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/components/mode_indicator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/filtered_codebase_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat/prompt_history.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/hint_message.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/chat_screen/messages.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/confirmation_dialog.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/screens/shared_specs/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/services/conversation_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/step_checkpoint_widget.py
RENAMED
|
File without changes
|
{shotgun_sh-0.4.3.dev1 → shotgun_sh-0.4.3.dev2}/src/shotgun/tui/widgets/widget_coordinator.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|