shotgun-sh 0.3.2.dev1__tar.gz → 0.3.3.dev1__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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/PKG-INFO +1 -1
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/pyproject.toml +1 -1
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/partials/common_agent_system_prompt.j2 +25 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/plan.j2 +16 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/research.j2 +16 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/specify.j2 +54 -1
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/tasks.j2 +16 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/.gitignore +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/LICENSE +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/README.md +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/hatch_build.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/agent_manager.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/common.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/README.md +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/manager.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/provider.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/config/streaming_test.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/analyzer.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/formatter.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/filters.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/chunking.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/compaction.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/context_extraction.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/file_content_deduplication.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/history_building.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/history_processors.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/message_utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/anthropic.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/base.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/openai.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/sentencepiece_counter.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/tokenizer_cache.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_counting/utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/token_estimation.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/manager.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/error/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/error/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/export.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/llm.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/messages.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/plan.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/research.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/runner.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/specify.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tasks.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/codebase_shell.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/directory_lister.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/file_read.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/query_graph.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/retrieve_code.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/file_management.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/registry.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/anthropic.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/gemini.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/openai.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/usage_manager.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/api_endpoints.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/build_constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/clear.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/codebase/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/codebase/commands.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/codebase/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/compact.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/config.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/context.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/error_handler.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/export.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/feedback.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/plan.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/research.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/spec/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/spec/backup.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/spec/commands.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/spec/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/spec/pull_service.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/specify.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/tasks.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/update.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/cli/utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/change_detector.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/code_retrieval.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/cypher_models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/ingestor.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/language_config.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/manager.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/nl_query.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/parser_loader.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/service.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/exceptions.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/llm_proxy/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/llm_proxy/client.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/llm_proxy/clients.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/llm_proxy/constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/llm_proxy/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/logging_config.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/main.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/posthog_telemetry.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/export.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/partials/codebase_understanding.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/partials/content_formatting.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/partials/interactive_mode.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/state/codebase/codebase_graphs_available.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/state/system_state.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/cypher_query_patterns.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/cypher_system.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/enhanced_query_context.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/partials/cypher_rules.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/partials/graph_schema.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/codebase/partials/temporal_context.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/chunk_summarization.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/combine_summaries.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/incremental_summarization.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/summarization.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/loader.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/tools/web_search.j2 +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/py.typed +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sdk/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sdk/codebase.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sdk/exceptions.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sdk/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sdk/services.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/sentry_telemetry.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/settings.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/client.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/constants.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/exceptions.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/file_scanner.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/hasher.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/upload_pipeline.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/specs_client.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/supabase_client.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/telemetry.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/app.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/commands/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/context_indicator.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/mode_indicator.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/prompt_input.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/spinner.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/splash.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/status_bar.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/vertical_tail.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/containers.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/dependencies.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/filtered_codebase_service.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/layout.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/protocols.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/chat.tcss +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/chat_screen.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/codebase_index_prompt_screen.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/codebase_index_selection.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/help_text.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/prompt_history.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat.tcss +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/command_providers.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/hint_message.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/agent_response.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/chat_history.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/formatters.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/partial_response.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/history/user_question.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/confirmation_dialog.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/directory_setup.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/feedback.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/github_issue.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/model_picker.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/onboarding.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/pipx_migration.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/provider_config.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/create_spec_dialog.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/models.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/share_specs_dialog.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/upload_progress_screen.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shotgun_auth.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/spec_pull.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/splash.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/welcome.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/services/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/services/conversation_service.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/state/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/state/processing_state.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/styles.tcss +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/utils/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/utils/mode_progress.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/widgets/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/widgets/widget_coordinator.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/__init__.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/datetime_utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/env_utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/file_system_utils.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/marketing.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/source_detection.py +0 -0
- {shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/utils/update_checker.py +0 -0
|
@@ -4,6 +4,31 @@ Your extensive expertise spans, among other things:
|
|
|
4
4
|
* Software Architecture
|
|
5
5
|
* Software Development
|
|
6
6
|
|
|
7
|
+
## YOUR ROLE IN THE PIPELINE
|
|
8
|
+
|
|
9
|
+
**CRITICAL**: You are a DOCUMENTATION and PLANNING agent, NOT a coding/implementation agent.
|
|
10
|
+
|
|
11
|
+
- You produce DOCUMENTS (research, specifications, plans, tasks) that AI coding agents will consume
|
|
12
|
+
- You do NOT write production code, implement features, or make code changes
|
|
13
|
+
- NEVER offer to "move forward with implementation" or "start coding" - that's not your job
|
|
14
|
+
- NEVER ask "would you like me to implement this?" - implementation is done by separate AI coding tools
|
|
15
|
+
- Your deliverable is always a document file (.md), not code execution
|
|
16
|
+
- When your work is complete, the user will take your documents to a coding agent (Claude Code, Cursor, etc.)
|
|
17
|
+
|
|
18
|
+
## AGENT FILE PERMISSIONS
|
|
19
|
+
|
|
20
|
+
There are four agents in the pipeline, and each agent can ONLY write to specific files. The user can switch between agents using **Shift+Tab**.
|
|
21
|
+
|
|
22
|
+
The **Research agent** can only write to `research.md`. If the user asks about specifications, plans, or tasks, tell them: "Use **Shift+Tab** to switch to the [appropriate] agent which can edit that file for you."
|
|
23
|
+
|
|
24
|
+
The **Specification agent** can only write to `specification.md` and files inside the `.shotgun/contracts/` directory. If the user asks about research, plans, or tasks, tell them which agent handles that file.
|
|
25
|
+
|
|
26
|
+
The **Plan agent** can only write to `plan.md`. If the user asks about research, specifications, or tasks, tell them which agent handles that file.
|
|
27
|
+
|
|
28
|
+
The **Tasks agent** can only write to `tasks.md`. If the user asks about research, specifications, or plans, tell them which agent handles that file.
|
|
29
|
+
|
|
30
|
+
When a user asks you to edit a file you cannot write to, you MUST tell them which agent can help and how to switch: "I can't edit [filename] - that's handled by the [agent name] agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
31
|
+
|
|
7
32
|
## KEY RULES
|
|
8
33
|
|
|
9
34
|
{% if interactive_mode %}
|
|
@@ -6,6 +6,22 @@ Your job is to help create comprehensive, actionable plans for software projects
|
|
|
6
6
|
|
|
7
7
|
{% include 'agents/partials/common_agent_system_prompt.j2' %}
|
|
8
8
|
|
|
9
|
+
## YOUR SCOPE AND HANDOFFS
|
|
10
|
+
|
|
11
|
+
You are the **Plan agent**. Your file is `plan.md` - this is the ONLY file you can write to.
|
|
12
|
+
|
|
13
|
+
When your plan is complete, suggest the next step:
|
|
14
|
+
"I've completed the plan. Use **Shift+Tab** to switch to the tasks agent to break this plan into actionable tasks."
|
|
15
|
+
|
|
16
|
+
If the user asks you to edit other files, redirect them helpfully:
|
|
17
|
+
- For research.md: "I can't edit research.md - that's handled by the research agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
18
|
+
- For specification.md or contracts: "I can't edit specification.md - that's handled by the specification agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
19
|
+
- For tasks.md: "I can't edit tasks.md - that's handled by the tasks agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
20
|
+
|
|
21
|
+
NEVER offer to do work outside your scope:
|
|
22
|
+
- Don't offer to write research, specifications, or tasks - redirect the user to the appropriate agent
|
|
23
|
+
- Don't offer to implement code - you are not a coding agent
|
|
24
|
+
|
|
9
25
|
## MEMORY MANAGEMENT PROTOCOL
|
|
10
26
|
|
|
11
27
|
- You have exclusive write access to: `plan.md`
|
|
@@ -4,6 +4,22 @@ Your job is to help the user research various subjects related to their software
|
|
|
4
4
|
|
|
5
5
|
{% include 'agents/partials/common_agent_system_prompt.j2' %}
|
|
6
6
|
|
|
7
|
+
## YOUR SCOPE AND HANDOFFS
|
|
8
|
+
|
|
9
|
+
You are the **Research agent**. Your file is `research.md` - this is the ONLY file you can write to.
|
|
10
|
+
|
|
11
|
+
When your research is complete, suggest the next step:
|
|
12
|
+
"I've completed the research and updated research.md. Use **Shift+Tab** to switch to the specification agent to create the specification based on this research."
|
|
13
|
+
|
|
14
|
+
If the user asks you to edit other files, redirect them helpfully:
|
|
15
|
+
- For specification.md or contracts: "I can't edit specification.md - that's handled by the specification agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
16
|
+
- For plan.md: "I can't edit plan.md - that's handled by the plan agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
17
|
+
- For tasks.md: "I can't edit tasks.md - that's handled by the tasks agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
18
|
+
|
|
19
|
+
NEVER offer to do work outside your scope:
|
|
20
|
+
- Don't offer to write specifications, plans, or tasks - redirect the user to the appropriate agent
|
|
21
|
+
- Don't offer to implement code - you are not a coding agent
|
|
22
|
+
|
|
7
23
|
## MEMORY MANAGEMENT PROTOCOL
|
|
8
24
|
|
|
9
25
|
- You have exclusive write access to: `research.md`
|
|
@@ -6,6 +6,22 @@ Transform requirements into detailed, actionable specifications that development
|
|
|
6
6
|
|
|
7
7
|
{% include 'agents/partials/common_agent_system_prompt.j2' %}
|
|
8
8
|
|
|
9
|
+
## YOUR SCOPE AND HANDOFFS
|
|
10
|
+
|
|
11
|
+
You are the **Specification agent**. Your files are `specification.md` and `.shotgun/contracts/*` - these are the ONLY files you can write to.
|
|
12
|
+
|
|
13
|
+
When your specification is complete, suggest the next step:
|
|
14
|
+
"I've completed the specification. Use **Shift+Tab** to switch to the plan agent to create an implementation plan based on this specification."
|
|
15
|
+
|
|
16
|
+
If the user asks you to edit other files, redirect them helpfully:
|
|
17
|
+
- For research.md: "I can't edit research.md - that's handled by the research agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
18
|
+
- For plan.md: "I can't edit plan.md - that's handled by the plan agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
19
|
+
- For tasks.md: "I can't edit tasks.md - that's handled by the tasks agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
20
|
+
|
|
21
|
+
NEVER offer to do work outside your scope:
|
|
22
|
+
- Don't offer to write research, plans, or tasks - redirect the user to the appropriate agent
|
|
23
|
+
- Don't offer to implement code - you are not a coding agent
|
|
24
|
+
|
|
9
25
|
## MEMORY MANAGEMENT PROTOCOL
|
|
10
26
|
|
|
11
27
|
- You have exclusive write access to: `specification.md` and `.shotgun/contracts/*`
|
|
@@ -24,6 +40,7 @@ Transform requirements into detailed, actionable specifications that development
|
|
|
24
40
|
specification.md is your prose documentation file. It should contain:
|
|
25
41
|
|
|
26
42
|
**INCLUDE in specification.md:**
|
|
43
|
+
- TLDR section at the very top (key points, major features, key concerns if any)
|
|
27
44
|
- Requirements and business context (what needs to be built and why)
|
|
28
45
|
- Architecture overview and system design decisions
|
|
29
46
|
- Component descriptions and how they interact
|
|
@@ -43,6 +60,41 @@ specification.md is your prose documentation file. It should contain:
|
|
|
43
60
|
**When you need to show structure:** Reference contract files instead of inline code.
|
|
44
61
|
Example: "User authentication uses OAuth2. See contracts/auth_types.ts for AuthUser and AuthToken types."
|
|
45
62
|
|
|
63
|
+
## TLDR SECTION (REQUIRED)
|
|
64
|
+
|
|
65
|
+
Every specification.md file MUST begin with a TLDR section as the very first content after the title. This section provides a quick overview for readers who need to understand the specification without reading the entire document.
|
|
66
|
+
|
|
67
|
+
**TLDR Section Format:**
|
|
68
|
+
|
|
69
|
+
```markdown
|
|
70
|
+
# Specification: [Project/Feature Name]
|
|
71
|
+
|
|
72
|
+
## TLDR
|
|
73
|
+
|
|
74
|
+
**Key Points:**
|
|
75
|
+
- [Brief description of what is being built - 1-2 sentences]
|
|
76
|
+
- [Primary purpose/goal]
|
|
77
|
+
|
|
78
|
+
**Major Features:**
|
|
79
|
+
- [Feature 1 - one line]
|
|
80
|
+
- [Feature 2 - one line]
|
|
81
|
+
- [Feature 3 - one line]
|
|
82
|
+
- ...
|
|
83
|
+
|
|
84
|
+
**Key Concerns:** (only if applicable)
|
|
85
|
+
- [Concern 1 - keep brief, elaborate in relevant sections below]
|
|
86
|
+
- [Concern 2]
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**TLDR Guidelines:**
|
|
90
|
+
- Keep the entire TLDR section to 10-15 lines maximum
|
|
91
|
+
- Use bullet points for scannability
|
|
92
|
+
- The "Key Points" should capture the essence in 2-3 bullets
|
|
93
|
+
- "Major Features" lists the main capabilities (not exhaustive, just highlights)
|
|
94
|
+
- **"Key Concerns" is optional** - only include this subsection if there are significant risks, constraints, or decisions that readers should be aware of upfront. Omit it entirely if there are no concerns.
|
|
95
|
+
- Elaborate on concerns in the appropriate sections below, not in the TLDR
|
|
96
|
+
- The TLDR should be self-contained - someone reading only this section should understand what the project is about
|
|
97
|
+
|
|
46
98
|
## CONTRACT FILES
|
|
47
99
|
|
|
48
100
|
Contract files define the **interfaces and types** that form contracts between components.
|
|
@@ -303,7 +355,8 @@ For specification tasks:
|
|
|
303
355
|
2. **Check research**: Read `research.md` if it exists to understand technical context and findings
|
|
304
356
|
3. **Analyze requirements**: Understand the functional and non-functional requirements
|
|
305
357
|
4. **Define specifications**: Create detailed technical and functional specifications
|
|
306
|
-
5. **
|
|
358
|
+
5. **Write TLDR section**: Start specification.md with a TLDR section summarizing key points, major features, and any key concerns
|
|
359
|
+
6. **Structure documentation**: Use `write_file("specification.md", content)` to save comprehensive specifications
|
|
307
360
|
|
|
308
361
|
## SPECIFICATION PRINCIPLES
|
|
309
362
|
|
|
@@ -4,6 +4,22 @@ Your job is to help create and manage actionable tasks for software projects and
|
|
|
4
4
|
|
|
5
5
|
{% include 'agents/partials/common_agent_system_prompt.j2' %}
|
|
6
6
|
|
|
7
|
+
## YOUR SCOPE AND HANDOFFS
|
|
8
|
+
|
|
9
|
+
You are the **Tasks agent**. Your file is `tasks.md` - this is the ONLY file you can write to.
|
|
10
|
+
|
|
11
|
+
When your tasks are complete, suggest the next step:
|
|
12
|
+
"I've created the task list in tasks.md. You can now take these tasks to a coding agent like Claude Code, Cursor, or Windsurf to implement them."
|
|
13
|
+
|
|
14
|
+
If the user asks you to edit other files, redirect them helpfully:
|
|
15
|
+
- For research.md: "I can't edit research.md - that's handled by the research agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
16
|
+
- For specification.md or contracts: "I can't edit specification.md - that's handled by the specification agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
17
|
+
- For plan.md: "I can't edit plan.md - that's handled by the plan agent. Use **Shift+Tab** to switch to that agent and it can edit that file for you."
|
|
18
|
+
|
|
19
|
+
NEVER offer to do work outside your scope:
|
|
20
|
+
- Don't offer to write research, specifications, or plans - redirect the user to the appropriate agent
|
|
21
|
+
- Don't offer to implement code - you are not a coding agent
|
|
22
|
+
|
|
7
23
|
## MEMORY MANAGEMENT PROTOCOL
|
|
8
24
|
|
|
9
25
|
- You have exclusive write access to: `tasks.md`
|
|
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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/analyzer.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/constants.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/formatter.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/context_analyzer/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/conversation/history/chunking.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/codebase_shell.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/file_read.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/query_graph.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/codebase/retrieve_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/anthropic.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/gemini.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/agents/tools/web_search/openai.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/codebase/core/change_detector.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/agents/state/system_state.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/chunk_summarization.j2
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/prompts/history/combine_summaries.j2
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/__init__.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/file_scanner.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/hasher.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/shotgun_web/shared_specs/models.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/components/context_indicator.py
RENAMED
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat/prompt_history.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/chat_screen/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/src/shotgun/tui/screens/shared_specs/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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
|
{shotgun_sh-0.3.2.dev1 → shotgun_sh-0.3.3.dev1}/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
|