shotgun-sh 0.2.11.dev7__py3-none-any.whl → 0.2.23.dev1__py3-none-any.whl

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 (51) hide show
  1. shotgun/agents/agent_manager.py +25 -11
  2. shotgun/agents/config/README.md +89 -0
  3. shotgun/agents/config/__init__.py +10 -1
  4. shotgun/agents/config/manager.py +287 -32
  5. shotgun/agents/config/models.py +26 -1
  6. shotgun/agents/config/provider.py +27 -0
  7. shotgun/agents/config/streaming_test.py +119 -0
  8. shotgun/agents/error/__init__.py +11 -0
  9. shotgun/agents/error/models.py +19 -0
  10. shotgun/agents/history/token_counting/anthropic.py +8 -0
  11. shotgun/agents/runner.py +230 -0
  12. shotgun/build_constants.py +1 -1
  13. shotgun/cli/context.py +43 -0
  14. shotgun/cli/error_handler.py +24 -0
  15. shotgun/cli/export.py +34 -34
  16. shotgun/cli/plan.py +34 -34
  17. shotgun/cli/research.py +17 -9
  18. shotgun/cli/specify.py +20 -19
  19. shotgun/cli/tasks.py +34 -34
  20. shotgun/exceptions.py +323 -0
  21. shotgun/llm_proxy/__init__.py +17 -0
  22. shotgun/llm_proxy/client.py +215 -0
  23. shotgun/llm_proxy/models.py +137 -0
  24. shotgun/logging_config.py +42 -0
  25. shotgun/main.py +2 -0
  26. shotgun/posthog_telemetry.py +18 -25
  27. shotgun/prompts/agents/partials/common_agent_system_prompt.j2 +3 -2
  28. shotgun/sdk/codebase.py +14 -3
  29. shotgun/sentry_telemetry.py +140 -2
  30. shotgun/settings.py +5 -0
  31. shotgun/tui/app.py +35 -10
  32. shotgun/tui/screens/chat/chat_screen.py +192 -91
  33. shotgun/tui/screens/chat/codebase_index_prompt_screen.py +62 -11
  34. shotgun/tui/screens/chat_screen/command_providers.py +3 -2
  35. shotgun/tui/screens/chat_screen/hint_message.py +76 -1
  36. shotgun/tui/screens/chat_screen/history/chat_history.py +37 -2
  37. shotgun/tui/screens/directory_setup.py +45 -41
  38. shotgun/tui/screens/feedback.py +10 -3
  39. shotgun/tui/screens/github_issue.py +11 -2
  40. shotgun/tui/screens/model_picker.py +8 -1
  41. shotgun/tui/screens/pipx_migration.py +12 -6
  42. shotgun/tui/screens/provider_config.py +25 -8
  43. shotgun/tui/screens/shotgun_auth.py +0 -10
  44. shotgun/tui/screens/welcome.py +32 -0
  45. shotgun/tui/widgets/widget_coordinator.py +3 -2
  46. shotgun_sh-0.2.23.dev1.dist-info/METADATA +472 -0
  47. {shotgun_sh-0.2.11.dev7.dist-info → shotgun_sh-0.2.23.dev1.dist-info}/RECORD +50 -42
  48. shotgun_sh-0.2.11.dev7.dist-info/METADATA +0 -130
  49. {shotgun_sh-0.2.11.dev7.dist-info → shotgun_sh-0.2.23.dev1.dist-info}/WHEEL +0 -0
  50. {shotgun_sh-0.2.11.dev7.dist-info → shotgun_sh-0.2.23.dev1.dist-info}/entry_points.txt +0 -0
  51. {shotgun_sh-0.2.11.dev7.dist-info → shotgun_sh-0.2.23.dev1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,472 @@
1
+ Metadata-Version: 2.4
2
+ Name: shotgun-sh
3
+ Version: 0.2.23.dev1
4
+ Summary: AI-powered research, planning, and task management CLI tool
5
+ Project-URL: Homepage, https://shotgun.sh/
6
+ Project-URL: Repository, https://github.com/shotgun-sh/shotgun
7
+ Project-URL: Issues, https://github.com/shotgun-sh/shotgun-alpha/issues
8
+ Project-URL: Discord, https://discord.gg/5RmY6J2N7s
9
+ Author-email: "Proofs.io" <hello@proofs.io>
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: agent,ai,cli,llm,planning,productivity,pydantic-ai,research,task-management
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Topic :: Utilities
23
+ Requires-Python: >=3.11
24
+ Requires-Dist: aiofiles>=24.0.0
25
+ Requires-Dist: anthropic>=0.39.0
26
+ Requires-Dist: dependency-injector>=4.41.0
27
+ Requires-Dist: genai-prices>=0.0.27
28
+ Requires-Dist: httpx>=0.27.0
29
+ Requires-Dist: jinja2>=3.1.0
30
+ Requires-Dist: kuzu>=0.7.0
31
+ Requires-Dist: logfire>=2.0.0
32
+ Requires-Dist: openai>=1.0.0
33
+ Requires-Dist: packaging>=23.0
34
+ Requires-Dist: posthog>=3.0.0
35
+ Requires-Dist: pydantic-ai>=0.0.14
36
+ Requires-Dist: pydantic-settings>=2.0.0
37
+ Requires-Dist: pyperclip>=1.10.0
38
+ Requires-Dist: rich>=13.0.0
39
+ Requires-Dist: sentencepiece>=0.2.0
40
+ Requires-Dist: sentry-sdk[pure-eval]>=2.0.0
41
+ Requires-Dist: tenacity>=8.0.0
42
+ Requires-Dist: textual-dev>=1.7.0
43
+ Requires-Dist: textual-serve>=0.1.0
44
+ Requires-Dist: textual>=6.1.0
45
+ Requires-Dist: tiktoken>=0.7.0
46
+ Requires-Dist: tree-sitter-go>=0.23.0
47
+ Requires-Dist: tree-sitter-javascript>=0.23.0
48
+ Requires-Dist: tree-sitter-python>=0.23.0
49
+ Requires-Dist: tree-sitter-rust>=0.23.0
50
+ Requires-Dist: tree-sitter-typescript>=0.23.0
51
+ Requires-Dist: tree-sitter>=0.21.0
52
+ Requires-Dist: typer>=0.12.0
53
+ Requires-Dist: watchdog>=4.0.0
54
+ Provides-Extra: dev
55
+ Requires-Dist: commitizen>=3.13.0; extra == 'dev'
56
+ Requires-Dist: lefthook>=1.12.0; extra == 'dev'
57
+ Requires-Dist: mypy>=1.11.0; extra == 'dev'
58
+ Requires-Dist: ruff>=0.6.0; extra == 'dev'
59
+ Description-Content-Type: text/markdown
60
+
61
+ <div align="center">
62
+ <img width="400" height="150" alt="Shotgun logo transparent background" src="https://github.com/user-attachments/assets/08f9ccd5-f2e8-4bf4-9cb2-2f0de866a76a" />
63
+
64
+ ### Spec-Driven Development
65
+
66
+
67
+ **Write codebase-aware specs for AI coding agents (Codex, Cursor, Claude Code) so they don't derail.**
68
+ <p align="center">
69
+ <a href="https://github.com/shotgun-sh/shotgun">
70
+ <img src="https://img.shields.io/badge/python-3.11+-blue?style=flat&logo=python&logoColor=white" />
71
+ </a>
72
+ <a href="https://www.producthunt.com/products/shotgun-cli/launches/shotgun-cli">
73
+ <img src="https://img.shields.io/badge/Product%20Hunt-%237%20Product%20of%20the%20Day-FF6154?style=flat&logo=producthunt&logoColor=white" />
74
+ </a>
75
+ <a href="https://github.com/shotgun-sh/shotgun?tab=contributing-ov-file">
76
+ <img src="https://img.shields.io/badge/PRs-welcome-brightgreen?style=flat" />
77
+ </a>
78
+ <a href="https://github.com/shotgun-sh/shotgun?tab=MIT-1-ov-file">
79
+ <img src="https://img.shields.io/badge/license-MIT-blue?style=flat" />
80
+ </a>
81
+ <a href="https://discord.com/invite/5RmY6J2N7s">
82
+ <img src="https://img.shields.io/badge/discord-150+%20online-5865F2?style=flat&logo=discord&logoColor=white" />
83
+ </a>
84
+ </p>
85
+
86
+ [![Website](https://img.shields.io/badge/-shotgun.sh-5865F2?style=social&logo=safari&logoColor=5865F2)](https://shotgun.sh) [![Follow @ShotgunCLI](https://img.shields.io/badge/Follow%20@ShotgunCLI-1DA1F2?style=social&logo=x&logoColor=000000)](https://x.com/ShotgunCLI) [![YouTube](https://img.shields.io/badge/-@shotgunCLI-FF0000?style=social&logo=youtube&logoColor=red)](https://www.youtube.com/@shotgunCLI)
87
+
88
+ </div>
89
+
90
+ ---
91
+
92
+ <table>
93
+ <tr>
94
+ <td>
95
+
96
+ **Shotgun is a CLI tool** that generates codebase-aware specs for AI coding agents like Cursor, Claude Code, and Lovable. **It reads your entire repository**, researches how new features should fit your architecture, and produces technical specifications that keep AI agents on track—so they build what you actually want instead of derailing halfway through. **Bring your own key (BYOK) or use a Shotgun subscription — $10 for $10 in usage.**
97
+
98
+ It includes research on existing patterns, implementation plans that respect your architecture, and task breakdowns ready to export as **AGENTS.md** files. Each spec is complete enough that your AI agent can work longer and further without losing context or creating conflicts.
99
+
100
+ <p align="center">
101
+ <img src="https://github.com/user-attachments/assets/9c7ca014-1ed3-4935-b310-9147b275fdc7" alt="Shotgun Demo" />
102
+ </p>
103
+
104
+ </td>
105
+ </tr>
106
+ </table>
107
+
108
+ ---
109
+
110
+ # 📦 Installation
111
+
112
+ ### 1. Install uv
113
+
114
+ Shotgun runs via `uvx` or `uv tool install`. First, install `uv` for your platform:
115
+
116
+ <table>
117
+ <tr>
118
+ <th>Platform</th>
119
+ <th>Installation Command</th>
120
+ </tr>
121
+ <tr>
122
+ <td><strong>macOS</strong> (Homebrew)</td>
123
+ <td>
124
+
125
+ ```bash
126
+ brew install uv
127
+ ```
128
+ </td>
129
+ </tr>
130
+ <tr>
131
+ <td><strong>macOS/Linux</strong> (curl)</td>
132
+ <td>
133
+
134
+ ```bash
135
+ curl -LsSf https://astral.sh/uv/install.sh | sh
136
+ ```
137
+ </td>
138
+ </tr>
139
+ <tr>
140
+ <td><strong>Windows</strong> (PowerShell)</td>
141
+ <td>
142
+
143
+ ```powershell
144
+ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
145
+ ```
146
+ </td>
147
+ </tr>
148
+ </table>
149
+
150
+ _💡 Restart your terminal after installation_
151
+
152
+ ### 2. Run Shotgun
153
+
154
+ <table>
155
+ <tr>
156
+ <th>🚀 Try It Out (Ephemeral)</th>
157
+ <th>⚡ Regular Use (Permanent)</th>
158
+ </tr>
159
+ <tr>
160
+ <td>
161
+
162
+ **Best for:** Testing Shotgun first
163
+
164
+ ```bash
165
+ uvx shotgun-sh@latest
166
+ ```
167
+
168
+ No installation needed, runs immediately
169
+
170
+ </td>
171
+ <td>
172
+
173
+ **Best for:** Daily use
174
+
175
+ ```bash
176
+ uv tool install shotgun-sh
177
+ ```
178
+
179
+ Then run anywhere: ``` shotgun ```
180
+
181
+ </td>
182
+ </tr>
183
+ </table>
184
+
185
+ _**Why uv?** It's 10-100x faster than pip and handles binary wheels reliably—no cmake/build tool errors._
186
+
187
+ ### 3. Get Started
188
+
189
+ When you launch Shotgun, it will guide you through:
190
+
191
+ | Step | What Happens |
192
+ |------|--------------|
193
+ | **1. Codebase Indexing** | Builds a searchable graph of your entire repository |
194
+ | **2. LLM Setup** | Configure OpenAI, Anthropic, or Gemini |
195
+ | **3. First Research** | Start generating codebase-aware specs |
196
+
197
+ _**💡 Pro tip:** Run Shotgun in your IDE's terminal for the best experience._
198
+
199
+ > [!WARNING]
200
+ > **Upgrading from alpha?** Uninstall the old version first:
201
+ > ```bash
202
+ > npm uninstall -g @proofs-io/shotgun @proofs-io/shotgun-server
203
+ > ```
204
+
205
+ ---
206
+
207
+ # 🎥 Demo
208
+
209
+ <p align="center">
210
+ <a href="https://youtu.be/nR6iKbJ8l_I">
211
+ <img src="https://github.com/user-attachments/assets/37eae206-0d6f-4499-b980-2f33a5aed65d" alt="Watch the Shotgun demo" width="720" height="405">
212
+ </a>
213
+ </p>
214
+
215
+ _Click the image above to watch the full demo on YouTube_
216
+
217
+ ---
218
+
219
+ # 🎯 Usage
220
+
221
+ Shotgun's Terminal UI guides you through **5 specialized modes** — from research to export. Each mode has a dedicated AI agent optimized for that phase.
222
+
223
+ ### Launch Shotgun in your project directory:
224
+
225
+ | Already Installed | First Time / Try It Out |
226
+ |-------------------|------------------------|
227
+ | `shotgun` | `uvx shotgun-sh@latest` |
228
+
229
+ _The TUI opens automatically. **Press `Shift+Tab` to switch modes** or `Ctrl+P` for the command palette._
230
+
231
+ ### The 5-Phase Workflow
232
+
233
+ <table>
234
+ <tr>
235
+ <td align="center"><b>🔬 Research</b><br/>Explore & understand</td>
236
+ <td align="center">→</td>
237
+ <td align="center"><b>📝 Specify</b><br/>Define requirements</td>
238
+ <td align="center">→</td>
239
+ <td align="center"><b>📋 Plan</b><br/>Create roadmap</td>
240
+ <td align="center">→</td>
241
+ <td align="center"><b>✅ Tasks</b><br/>Break into steps</td>
242
+ <td align="center">→</td>
243
+ <td align="center"><b>📤 Export</b><br/>Format for AI</td>
244
+ </tr>
245
+ </table>
246
+
247
+ _Each phase builds on the previous one, creating a complete specification ready for AI coding agents._
248
+
249
+ ### Mode Reference
250
+
251
+ | Mode | What It Does | Example Prompt | Output |
252
+ |:-----|:-------------|:---------------|:-------|
253
+ | **🔬&nbsp;Research** | Searches codebase + web, identifies patterns | `How do we handle authentication in this codebase?` | `research.md` |
254
+ | **📝&nbsp;Specify** | Creates technical specs aware of architecture | `Add OAuth2 authentication with refresh token support` | `specification.md` |
255
+ | **📋&nbsp;Plan** | Generates implementation roadmap | `Create an implementation plan for the payment system` | `plan.md` |
256
+ | **✅&nbsp;Tasks** | Breaks plans into actionable items | `Break down the user dashboard plan into tasks` | `tasks.md` |
257
+ | **📤&nbsp;Export** | Formats for AI coding agents | `Export everything to AGENTS.md` | `AGENTS.md` |
258
+
259
+ _**Mode switching:** `Shift+Tab` cycles through modes_
260
+
261
+ _**Visual status:** See current mode and progress at bottom_
262
+
263
+ ### ⌨️ Keyboard Shortcuts
264
+
265
+ | Shortcut | Action |
266
+ |----------|--------|
267
+ | `Shift+Tab` | Switch modes |
268
+ | `Ctrl+P` | Open command palette |
269
+ | `Ctrl+C` | Cancel operation |
270
+ | `Escape` | Exit Q&A / stop agent |
271
+ | `Ctrl+U` | View usage stats |
272
+
273
+ ### Tips for Better Results
274
+
275
+ | Do This | Not This |
276
+ |---------|----------|
277
+ | ✅ `Research how we handle auth` | ❌ Jump straight to building |
278
+ | ✅ `Shotgun please ask me questions first` | ❌ Assume Shotgun knows your needs |
279
+ | ✅ `I'm working on payments, need refunds` | ❌ `Add refunds` (no context) |
280
+ | ✅ Follow Research → Specify → Plan → Tasks | ❌ Skip phases |
281
+
282
+ **Result:** Your AI coding agent gets complete context—what exists, why, and what to build.
283
+
284
+ **Note:** CLI available in [docs/CLI.md](docs/CLI.md), but TUI is recommended.
285
+
286
+ ---
287
+
288
+ # ✨ Features
289
+
290
+ ### What Makes Shotgun Different
291
+
292
+ <table>
293
+ <tr>
294
+ <th width="25%">Feature</th>
295
+ <th width="35%">Shotgun</th>
296
+ <th width="40%">Other Tools</th>
297
+ </tr>
298
+
299
+ <tr>
300
+ <td><strong>Codebase Understanding</strong></td>
301
+ <td>
302
+ Reads your <strong>entire repository</strong> before generating specs. Finds existing patterns, dependencies, and architecture.
303
+ </td>
304
+ <td>
305
+ Require manual context or search each time. No persistent understanding of your codebase structure.
306
+ </td>
307
+ </tr>
308
+
309
+ <tr>
310
+ <td><strong>Research Phase</strong></td>
311
+ <td>
312
+ Starts with research—discovers what you already have AND what exists externally before writing anything.
313
+ </td>
314
+ <td>
315
+ Start at specification. Build first, discover problems later.
316
+ </td>
317
+ </tr>
318
+
319
+ <tr>
320
+ <td><strong>Dedicated Agents Per Mode</strong></td>
321
+ <td>
322
+ Each mode (research, spec, plan, tasks, export) uses a <strong>separate specialized agent</strong> with prompts tailored specifically for that phase. 100% user-controllable via mode switching.
323
+ </td>
324
+ <td>
325
+ Single-agent or one-size-fits-all prompts.
326
+ </td>
327
+ </tr>
328
+
329
+ <tr>
330
+ <td><strong>Structured Workflow</strong></td>
331
+ <td>
332
+ 5-phase journey with checkpoints: Research → Spec → Plan → Tasks → Export
333
+ </td>
334
+ <td>
335
+ No structure. Just "prompt and hope."
336
+ </td>
337
+ </tr>
338
+
339
+ <tr>
340
+ <td><strong>Export Formats</strong></td>
341
+ <td>
342
+ <code>AGENTS.md</code> files ready for Cursor, Claude Code, Windsurf, Lovable—your choice of tool.
343
+ </td>
344
+ <td>
345
+ Locked into specific IDE or coding agent.
346
+ </td>
347
+ </tr>
348
+
349
+ </table>
350
+
351
+ ### Case Study - Real Example:
352
+
353
+ We had to implement payments. Cursor, Claude Code, and Copilot all suggested building a custom payment proxy — 3-4 weeks of development.
354
+
355
+ ⭐ Shotgun's research found [LiteLLM Proxy](https://docs.litellm.ai/docs/simple_proxy) instead—**30 minutes to discover, 5 days to deploy, first customer in 14 hours.**
356
+
357
+ ****80% less dev time. Near-zero technical debt.****
358
+
359
+ ### **[📖 Read the full case study](docs/CASE_STUDY.md)**
360
+
361
+ ---
362
+
363
+ # Use Cases
364
+
365
+ - **🚀 Onboarding** - New developer? Shotgun maps your entire architecture and generates docs that actually match the code
366
+ - **🔧 Refactoring** - Understand all dependencies before touching anything. Keep your refactor from becoming a rewrite
367
+ - **🌱 Greenfield Projects** - Research existing solutions globally before writing line one
368
+ - **➕ Adding Features** - Know exactly where your feature fits. Prevent duplicate functionality
369
+ - **📦 Migration** - Map the old, plan the new, track the delta. Break migration into safe stages
370
+
371
+ **📚 Want to see a detailed example?** Check out our [Case Study](docs/CASE_STUDY.md) showing Shotgun in action on a real-world project.
372
+
373
+ ---
374
+
375
+ # FAQ
376
+
377
+ **Q: Does Shotgun collect any stats or data?**
378
+
379
+ A: We only gather minimal, anonymous events (e.g., install, server start, tool call). We don't collect the content itself—only that an event occurred. We use Sentry for error reporting to improve stability.
380
+
381
+ **Q: Does my code leave my computer when indexing?**
382
+
383
+ A: No. When you index your codebase, all indexing happens locally on your machine. The index is stored in `~/.shotgun-sh/codebases/` and never sent to any server. Your code stays on your computer.
384
+
385
+ ![Indexing Privacy](docs/index_codebase_privacy.png)
386
+
387
+ **Q: Local LLMs?**
388
+
389
+ A: Planned. We'll publish compatibility notes and local provider integrations.
390
+
391
+ **Q: What LLM providers are supported?**
392
+
393
+ A: Currently OpenAI, Anthropic (Claude), and Google Gemini. Local LLM support is on the roadmap.
394
+
395
+ **Q: Can I use Shotgun offline?**
396
+
397
+ A: You need an internet connection for LLM API calls, but your codebase stays local.
398
+
399
+ **Q: How does the code graph work?**
400
+
401
+ A: Shotgun indexes your codebase using tree-sitter for accurate parsing and creates a searchable graph of your code structure, dependencies, and relationships.
402
+
403
+ ---
404
+ # Contributing
405
+
406
+ Shotgun is open-source and we welcome contributions. Whether you're fixing bugs, proposing features, improving docs, or spreading the word—we'd love to have you as part of the community.
407
+
408
+ ### Ways to contribute:
409
+
410
+ - **Bug Report:** Found an issue? [Create a bug report](https://github.com/shotgun-sh/shotgun/issues/new?template=bug_report.md)
411
+ - **Feature Request:** Have an idea to make Shotgun better? [Submit a feature request](https://github.com/shotgun-sh/shotgun/issues/new?template=feature_request.md)
412
+ - **Documentation:** See something missing in the docs? [Request documentation](https://github.com/shotgun-sh/shotgun/issues/new?template=documentation.md)
413
+
414
+ **Not sure where to start?** Join our Discord and we'll help you get started!
415
+
416
+ <div align="left">
417
+ <a href="https://discord.com/invite/5RmY6J2N7s">
418
+ <img src="https://img.shields.io/badge/Join%20our%20community-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join Discord" />
419
+ </a>
420
+ </div>
421
+
422
+ ### Development Resources
423
+
424
+ - **[Contributing Guide](docs/CONTRIBUTING.md)** - Setup, workflow, and guidelines
425
+ - **[Git Hooks](docs/GIT_HOOKS.md)** - Lefthook, trufflehog, and security scanning
426
+ - **[CI/CD](docs/CI_CD.md)** - GitHub Actions and automated testing
427
+ - **[Observability](docs/OBSERVABILITY.md)** - Telemetry, Logfire, and monitoring
428
+ - **[Docker](docs/DOCKER.md)** - Container setup and deployment
429
+
430
+ ---
431
+
432
+ <div align="center">
433
+
434
+ ## 🚀 Ready to Stop AI Agents from Derailing?
435
+
436
+ **Research → Specify → Plan → Tasks → Export** — Five phases that give AI agents the full picture.
437
+
438
+ ```bash
439
+ uvx shotgun-sh@latest
440
+ ```
441
+
442
+
443
+ ### ⭐ Star us on GitHub
444
+
445
+
446
+ <a href="https://github.com/shotgun-sh/shotgun">
447
+ <img src="https://img.shields.io/badge/⭐%20Star%20on%20GitHub-181717?style=for-the-badge&logo=github&logoColor=white" alt="Star Shotgun Repo" />
448
+ </a>
449
+
450
+ ### Star History
451
+
452
+ <a href="https://www.star-history.com/#shotgun-sh/shotgun&type=date&legend=bottom-right">
453
+ <picture>
454
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=shotgun-sh/shotgun&type=date&theme=dark&legend=bottom-right" />
455
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=shotgun-sh/shotgun&type=date&legend=bottom-right" />
456
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=shotgun-sh/shotgun&type=date&legend=bottom-right" />
457
+ </picture>
458
+ </a>
459
+
460
+ </div>
461
+
462
+ ---
463
+
464
+ **License:** MIT | **Python:** 3.11+ | **Homepage:** [shotgun.sh](https://shotgun.sh/)
465
+
466
+ ---
467
+
468
+ ## Uninstall
469
+
470
+ ```bash
471
+ uv tool uninstall shotgun-sh
472
+ ```
@@ -1,16 +1,16 @@
1
1
  shotgun/__init__.py,sha256=P40K0fnIsb7SKcQrFnXZ4aREjpWchVDhvM1HxI4cyIQ,104
2
2
  shotgun/api_endpoints.py,sha256=cHNkXbaxMOw6t9M7_SGHwEkz9bL1CH_kw8qIhgdXfi0,630
3
- shotgun/build_constants.py,sha256=ffbErQTMR15TUKFFx5FYu5pji3Pr7UwTskgnAZsMswM,713
4
- shotgun/exceptions.py,sha256=qSt4_ZWBZ_DtDxMlZIFfdwyXRkGdCfG9dic_O-5QEKA,1102
5
- shotgun/logging_config.py,sha256=fMnO0Ep76PIRxr0AqLcgE5QxUl4-WfqwLkMKCA2OVRc,7110
6
- shotgun/main.py,sha256=XSb7ZeOxMXyZuQMxVGD6aCKl5DCgNKfYmXbZXtZBTMI,7072
7
- shotgun/posthog_telemetry.py,sha256=0ZLEjQKfjnSel935mgPBH3BKrBT5QzEV45w28cq9Ldw,6617
3
+ shotgun/build_constants.py,sha256=trtP6Yz4N9fntWVWrRlSicQxahOoImwNnAnz5Laeq00,760
4
+ shotgun/exceptions.py,sha256=xGQ8yfp1QvHrnmcdIXofHs8pZvgn0nBMFr_2VWfxZrk,12404
5
+ shotgun/logging_config.py,sha256=o9erNhWl5CvXpgEIzdpm9BmVwO1PBVm1VmgTPjpm8OI,8460
6
+ shotgun/main.py,sha256=nDGVisdpxot95cdiWdSlA0CPQffGhWQK4BorOP5yay0,7205
7
+ shotgun/posthog_telemetry.py,sha256=uE8JeAL2wlf3kG0lA7hylcEPYpDRrzQ-Lb8DcC1PG6o,6450
8
8
  shotgun/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- shotgun/sentry_telemetry.py,sha256=k-4JKcJYdTfVQcVVgDvgVGM__MPDrWBo7sZdd7jD1lU,3396
10
- shotgun/settings.py,sha256=1pheWh5YRXCVzIWy7kGWiC1yGbJ8qTWxqQsxggs2BZI,7202
9
+ shotgun/sentry_telemetry.py,sha256=KIjkRAIio47bZtXseGXE6SSLXsCPThbz8_a_lw7pcSM,8419
10
+ shotgun/settings.py,sha256=c9FfswsmjWc0fe0HPwmZNtHVicaT_MogdHaN9B4iXg4,7359
11
11
  shotgun/telemetry.py,sha256=6trR92Q6ERvSuUGyS8VyBCv1Dfs20vI1-4BYPieLcxM,2917
12
12
  shotgun/agents/__init__.py,sha256=8Jzv1YsDuLyNPFJyckSr_qI4ehTVeDyIMDW4omsfPGc,25
13
- shotgun/agents/agent_manager.py,sha256=q0g7qVTAVxyHUQkOUxDou_7Hw9XNpfop-S9e6pMeDKE,51266
13
+ shotgun/agents/agent_manager.py,sha256=zg75aQpk9COBm3yYbV9fvd7M-joTH2W3WdEkqJV0LPg,52200
14
14
  shotgun/agents/common.py,sha256=U18bN5mokVddIuhtSEG5i_uRjiLw6kx1tEaDtsTdhIw,19183
15
15
  shotgun/agents/conversation_history.py,sha256=djfzHu0ZQnEiRPDwqKaBIZK1KKPmdV7wE_L-7cAGb8M,7909
16
16
  shotgun/agents/conversation_manager.py,sha256=CvmealftUc3n3pYXBGpZ29mpXGaM8bzmbGtT4KM9sdU,5280
@@ -20,19 +20,24 @@ shotgun/agents/messages.py,sha256=wNn0qC5AqASM8LMaSGFOerZEJPn5FsIOmaJs1bdosuU,10
20
20
  shotgun/agents/models.py,sha256=anNz8_U95B1__VPXgxFqfzk2BRIHrIO4clJlnfedVS8,9862
21
21
  shotgun/agents/plan.py,sha256=7bP9VVQ5yfUE76fJEdBL-S2OIy3P-s5RdaorbThJQfc,2992
22
22
  shotgun/agents/research.py,sha256=0bkEGdmwJiHz_ubJ835xvsp2dDQpZWKrr8Qd55OadJI,3242
23
+ shotgun/agents/runner.py,sha256=sMgv1sZZz6jKQ095u9GudBMhQ91ozzYXBq5aHHlBmxo,8784
23
24
  shotgun/agents/specify.py,sha256=EsnHtQ-kRwZX_GRyp5D_y94yRaOo1gfLCIKeoF8ohNY,3099
24
25
  shotgun/agents/tasks.py,sha256=rebwa9z2-YUAQTxEhxglUKeDO5i0gAq39CmR9_LXMKE,2961
25
26
  shotgun/agents/usage_manager.py,sha256=0O1G7ovgYtJ_zCTITQ1Cks75eXMwvjl1SgGE1uoZ0x4,5383
26
- shotgun/agents/config/__init__.py,sha256=Fl8K_81zBpm-OfOW27M_WWLSFdaHHek6lWz95iDREjQ,318
27
+ shotgun/agents/config/README.md,sha256=Cjgt91aAhedUOPDf-powj1jXym_SvVzLcUSvROsqS2c,3294
28
+ shotgun/agents/config/__init__.py,sha256=QuGC057dzMrzhrdRJ7c8KNwWzFqISiSk3t5LqnvOVN0,471
27
29
  shotgun/agents/config/constants.py,sha256=GZ62PTrMd_yXDBvQwpNqh401GVlMHh5Li7_xM-zdp8Y,742
28
- shotgun/agents/config/manager.py,sha256=p3RUm6SPGmiR-rdO0mI9a9zVl1OH1bbzvksI25bUnEw,20392
29
- shotgun/agents/config/models.py,sha256=wSTHi-SagVuxDktkm9oN9gPHRU55jxS4UMw4DMWkvuo,6912
30
- shotgun/agents/config/provider.py,sha256=fdL8STD1jgZMAK5NKxD0E0CaDLJ-3-Vn3Y7yPeElfk0,13402
30
+ shotgun/agents/config/manager.py,sha256=UC9gxmHGofr9KE4jRUieryZvxT_xz1f3Pgi9lfI-i2k,28925
31
+ shotgun/agents/config/models.py,sha256=OX66Vp-b6Pw1KwsWyiG4AkRqyqXbb6toq4PHh9os8jU,7877
32
+ shotgun/agents/config/provider.py,sha256=tyCEE15AVF38fgbJKgQACI3sIazmkoEuKGzBpw4mx5E,14770
33
+ shotgun/agents/config/streaming_test.py,sha256=ALOM4fjYf7dH7bsY-onKYJBcYH8ujx-50RdMwvw6RXM,4443
31
34
  shotgun/agents/context_analyzer/__init__.py,sha256=p-R3SVa3yDkXnHaZ7XV_SI_9FGhoYwvnbvDr3oxGU3M,732
32
35
  shotgun/agents/context_analyzer/analyzer.py,sha256=3WNdzY6gp4cfzf6uDiFnVo7P2VnFSdbh8SE7uMx5ffQ,20005
33
36
  shotgun/agents/context_analyzer/constants.py,sha256=oG8IJXEFN-V5wtnoz_ZBhOIGNXG1kjR4K_yOC5e95hY,323
34
37
  shotgun/agents/context_analyzer/formatter.py,sha256=QovmxUdpGkBKwxegxhvXRmHrpNFF31MoD3LRYTVCKY8,4008
35
38
  shotgun/agents/context_analyzer/models.py,sha256=Ww2NOgqaQlZ45tyBsVevt5r9bz0X-dQ4lNwAElfwAJk,8362
39
+ shotgun/agents/error/__init__.py,sha256=7md1HR_iAoCmTe5mzgQT0y3VBoC8D5zvRI4vQch4Ess,231
40
+ shotgun/agents/error/models.py,sha256=SLUCsMR0UPH0Lxm5AJKXBKTuL6wtdTzJJ3NHDzAIk_I,501
36
41
  shotgun/agents/history/__init__.py,sha256=XFQj2a6fxDqVg0Q3juvN9RjV_RJbgvFZtQOCOjVJyp4,147
37
42
  shotgun/agents/history/compaction.py,sha256=S7U00K3-tHOBHjSseGLaNSozkfmZknnqNyat8Hcixfk,3923
38
43
  shotgun/agents/history/constants.py,sha256=yWY8rrTZarLA3flCCMB_hS2NMvUDRDTwP4D4j7MIh1w,446
@@ -42,7 +47,7 @@ shotgun/agents/history/history_processors.py,sha256=X1H8kuS0lfiBGBoPmfGhnIVSMLFC
42
47
  shotgun/agents/history/message_utils.py,sha256=aPusAl2RYKbjc7lBxPaNprRHmZEG6fe97q7DQUlhlzU,2918
43
48
  shotgun/agents/history/token_estimation.py,sha256=iRyKq-YDivEpJrULIbQgNpjhOuSC4nHVJYfsWEFV8sQ,4770
44
49
  shotgun/agents/history/token_counting/__init__.py,sha256=YZt5Lus--fkF6l1hdkIlp1e_oAIpACNwHOI0FRP4q8s,924
45
- shotgun/agents/history/token_counting/anthropic.py,sha256=kGxfDF4GyaPbNnS4DUiOM5EPThEBXBOgbxbO_W8iBXo,4575
50
+ shotgun/agents/history/token_counting/anthropic.py,sha256=999gzwEn3Q31nmCDlJqJtt3maU4NtkEgr9PaUJdVKa4,4931
46
51
  shotgun/agents/history/token_counting/base.py,sha256=eVtNmFnnDcsX3E9GE-OH_4_ibdlwg4fETi2cq60sqLw,2327
47
52
  shotgun/agents/history/token_counting/openai.py,sha256=lZgoMSVSlBN899Cp8sMFggYVDiSaqB-gTHUSaRoQ0yk,2746
48
53
  shotgun/agents/history/token_counting/sentencepiece_counter.py,sha256=JTSWGAuCtqa7e2fJQzNQ52HqprSJJOcMZLnwxDId-vk,4201
@@ -67,14 +72,15 @@ shotgun/cli/__init__.py,sha256=_F1uW2g87y4bGFxz8Gp8u7mq2voHp8vQIUtCmm8Tojo,40
67
72
  shotgun/cli/clear.py,sha256=_mAb3cjlLNGAk19Bu1fKoSF1fpBg05vRIRfSFZzhUyw,1625
68
73
  shotgun/cli/compact.py,sha256=ZF8bS3hReJYG_uzRfWwCi9cINeZwzvre9SK7A-a9qRk,5914
69
74
  shotgun/cli/config.py,sha256=wKBPSQ8ZVF6ITPS_bE2F46_xyWiI80QJhhgjt8uuDSY,8031
70
- shotgun/cli/context.py,sha256=sRCNKM_irXASOJclAbYdz8-ftwdBIv68Qyin_w8KK8k,3813
71
- shotgun/cli/export.py,sha256=xe14DKxeL9zN9M2bomuiXxa2JdqIZ1FBPPkTFBVhkxQ,2484
75
+ shotgun/cli/context.py,sha256=ocsPv3LOHHR7uw4VsipQ2Iq5tY7YlmTX7CBuiFCSQCg,5438
76
+ shotgun/cli/error_handler.py,sha256=neU0dL5zAv4HbrJGIw3Py2wqyA6BzJo3tbpWaZtPidk,646
77
+ shotgun/cli/export.py,sha256=k3g32DPMlGlwE8Nd5pLiuMQ64Aa_FY-DOP_yCt3ae1c,2651
72
78
  shotgun/cli/feedback.py,sha256=wMRIN6UtBI4832XfUwE7nQLjVLuVu4zjupMme02nfwc,1346
73
79
  shotgun/cli/models.py,sha256=cutimFStP6m5pXmg3kbhtWZjNA2us2cPQFJtz2pTdOU,208
74
- shotgun/cli/plan.py,sha256=PbD7ckPIgdDOp7RLQecf4F1S59W_Bag2qMTcR6QqlDw,2337
75
- shotgun/cli/research.py,sha256=chFMuVcznuJqnGwDcK7o1Qk3RQ4q0cFPqRQjyW_GURw,2496
76
- shotgun/cli/specify.py,sha256=gLbnZ4GP9QmRy1QFdhF2mnXqP9Fbo07CY-3GdmbbL3w,2179
77
- shotgun/cli/tasks.py,sha256=GIgwS5a-B92BghjlD0lMDEZd35Izl0S4QguRrdFxciI,2433
80
+ shotgun/cli/plan.py,sha256=mbM-OiCkrR3uWHIwm2M0Zub7wk3GOd5Mnl6_dPZjmKQ,2496
81
+ shotgun/cli/research.py,sha256=WUnMjV0a7u6ATAEydyWOAhEWyrtcalvhFq1_ERYPiD0,3010
82
+ shotgun/cli/specify.py,sha256=TrvcWP9XfxJqeD3IXRKAZ6RkudLFDjsLbTcm5vy_nPU,2383
83
+ shotgun/cli/tasks.py,sha256=1_H6PGjNljMw6UeeTFAhwhsxsMLVF0shuyFGaN_w0rM,2590
78
84
  shotgun/cli/update.py,sha256=sc3uuw3AXFF0kpskWah1JEoTwrKv67fCnqp9BjeND3o,5328
79
85
  shotgun/cli/utils.py,sha256=umVWXDx8pelovMk-nT8B7m0c39AKY9hHsuAMnbw_Hcg,732
80
86
  shotgun/cli/codebase/__init__.py,sha256=rKdvx33p0i_BYbNkz5_4DCFgEMwzOOqLi9f5p7XTLKM,73
@@ -92,9 +98,11 @@ shotgun/codebase/core/language_config.py,sha256=vsqHyuFnumRPRBV1lMOxWKNOIiClO6Fy
92
98
  shotgun/codebase/core/manager.py,sha256=8FbiLyTe2JDELgx1tpOv_Kqba8J7QSXyORCAO3dERmk,66722
93
99
  shotgun/codebase/core/nl_query.py,sha256=qH32btb5w7eY2ij7-wc6Z0QXIDOqjz0pZXXRUboSbYs,16121
94
100
  shotgun/codebase/core/parser_loader.py,sha256=LZRrDS8Sp518jIu3tQW-BxdwJ86lnsTteI478ER9Td8,4278
95
- shotgun/llm_proxy/__init__.py,sha256=3ST3ygtf2sXXSOjIFHxVZ5xqRbT3TF7jpNHwuZAtIwA,452
101
+ shotgun/llm_proxy/__init__.py,sha256=z7YnPfyhW0WYrz6tHOoVcVOoi6iO0zWjUHbpu6o38oA,817
102
+ shotgun/llm_proxy/client.py,sha256=qtmJng-ESRbiXqw-Dn8zMduF5MEiNJdkPbG4uu4u4XU,6507
96
103
  shotgun/llm_proxy/clients.py,sha256=Y19W8Gb2e-37w8rUKPmxJOqoTk6GlcPhZhoeAbbURU0,1341
97
104
  shotgun/llm_proxy/constants.py,sha256=_4piKdyvM7pAIRdAGrzYexwWoDlueUZiEMfwWrOa4T0,381
105
+ shotgun/llm_proxy/models.py,sha256=KzYcBjE5yiiU9hpkvExQKCnySrv44EdgTTM9XSxRBVE,4375
98
106
  shotgun/prompts/__init__.py,sha256=RswUm0HMdfm2m2YKUwUsEdRIwoczdbI7zlucoEvHYRo,132
99
107
  shotgun/prompts/loader.py,sha256=_7CdUYrAo6ZwvTBUlXugKyLU0IDBg5CVzUIAHFPw418,4433
100
108
  shotgun/prompts/agents/__init__.py,sha256=YRIJMbzpArojNX1BP5gfxxois334z_GQga8T-xyWMbY,39
@@ -104,7 +112,7 @@ shotgun/prompts/agents/research.j2,sha256=QFoSSiF_5v7c78RHaiucZEb9mOC_wF54BVKnJE
104
112
  shotgun/prompts/agents/specify.j2,sha256=XdB2WehbVmszw9crl6PEHLyLgwvU08MV--ClV3hI4mA,12014
105
113
  shotgun/prompts/agents/tasks.j2,sha256=SMvTQPzRR6eHlW3fcj-7Bl-Lh9HWaiF3uAKv77nMdZw,5956
106
114
  shotgun/prompts/agents/partials/codebase_understanding.j2,sha256=7WH-PVd-TRBFQUdOdKkwwn9hAUaJznFZMAGHhO7IGGU,5633
107
- shotgun/prompts/agents/partials/common_agent_system_prompt.j2,sha256=wfjsQGcMTWWGBk9l0pKDnPehG8NrwTHm5FFEqba__LI,2161
115
+ shotgun/prompts/agents/partials/common_agent_system_prompt.j2,sha256=Uc-dp-yR-mgBnYaXuY8BkplEsFgyDzZ67D6EBcL4zpE,2253
108
116
  shotgun/prompts/agents/partials/content_formatting.j2,sha256=MG0JB7SSp8YV5akDWpbs2f9DcdREIYqLp38NnoWLeQ0,1854
109
117
  shotgun/prompts/agents/partials/interactive_mode.j2,sha256=nyNTURRszG_Pl7M3TS_luUshekDn9yVHfBDMkHSZ1kw,1448
110
118
  shotgun/prompts/agents/state/system_state.j2,sha256=RPweqBYmgWMiDuOjdEDl6NLgYU7HMaUGW1jBSnD5UzQ,1270
@@ -121,7 +129,7 @@ shotgun/prompts/history/incremental_summarization.j2,sha256=GmnNh0pWTjaEaI1sPwKN
121
129
  shotgun/prompts/history/summarization.j2,sha256=OYNVHg65zbuWB6_pXzTOs2T2k5qFD2gyfbmr6NP01rs,2268
122
130
  shotgun/prompts/tools/web_search.j2,sha256=_F1m5UYiZENPQCqTUiO2du9Lkzs1SWujjAiauDD_5-Y,568
123
131
  shotgun/sdk/__init__.py,sha256=ESV0WM9MigjXG30g9qVjcCMI40GQv-P-MSMGVuOisK4,380
124
- shotgun/sdk/codebase.py,sha256=7doUvwwl27RDJZIbP56LQsAx26GANtAKEBptTUhLT6w,8842
132
+ shotgun/sdk/codebase.py,sha256=wscfPjqrutoASD24hMJp42sghray4wmUPc5NZ8UMH5g,9119
125
133
  shotgun/sdk/exceptions.py,sha256=qBcQv0v7ZTwP7CMcxZST4GqCsfOWtOUjSzGBo0-heqo,412
126
134
  shotgun/sdk/models.py,sha256=X9nOTUHH0cdkQW1NfnMEDu-QgK9oUsEISh1Jtwr5Am4,5496
127
135
  shotgun/sdk/services.py,sha256=J4PJFSxCQ6--u7rb3Ta-9eYtlYcxcbnzrMP6ThyCnw4,705
@@ -130,7 +138,7 @@ shotgun/shotgun_web/client.py,sha256=n5DDuVfSa6VPZjhSsfSxQlSFOnhgDHyidRnB8Hv9XF4
130
138
  shotgun/shotgun_web/constants.py,sha256=eNvtjlu81bAVQaCwZXOVjSpDopUm9pf34XuZEvuMiko,661
131
139
  shotgun/shotgun_web/models.py,sha256=Ie9VfqKZM2tIJhIjentU9qLoNaMZvnUJaIu-xg9kQsA,1391
132
140
  shotgun/tui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
- shotgun/tui/app.py,sha256=63eg_5bL3v2xfoep3wDA1YfikI6Gyn8WG2cXtMIIRuQ,12700
141
+ shotgun/tui/app.py,sha256=UO8LEBVOWmmkDxo3ZLJggIl6tUri8QeCotFkfyH8OxM,13926
134
142
  shotgun/tui/containers.py,sha256=c2gJnFWab873F8IDOwgUBM-2ukf2kbIlO7_s20JxH1w,3540
135
143
  shotgun/tui/dependencies.py,sha256=I8xIPUujCeQqqkkKbNYrsL6dCA2MfQ8Vlh4Q0VGlAfI,1331
136
144
  shotgun/tui/filtered_codebase_service.py,sha256=lJ8gTMhIveTatmvmGLP299msWWTkVYKwvY_2FhuL2s4,1687
@@ -146,29 +154,29 @@ shotgun/tui/components/status_bar.py,sha256=ctfk1YcHBb9-iwAw3VOO6gLoSrcjvykFOxMl
146
154
  shotgun/tui/components/vertical_tail.py,sha256=kROwTaRjUwVB7H35dtmNcUVPQqNYvvfq7K2tXBKEb6c,638
147
155
  shotgun/tui/screens/chat.tcss,sha256=7jM4YTBj-N-5T4NIiU2AJiGtKYvYO50OAkI0o7_qimI,574
148
156
  shotgun/tui/screens/confirmation_dialog.py,sha256=62RYcTSfZHLH77bewmtSEeGgLRyYvCQh16ZoZuIE1J0,4788
149
- shotgun/tui/screens/directory_setup.py,sha256=lIZ1J4A6g5Q2ZBX8epW7BhR96Dmdcg22CyiM5S-I5WU,3237
150
- shotgun/tui/screens/feedback.py,sha256=V4Fkk0Nqe-S7Cak-mzqGtGKNeEeluW4oCZGZKsOtiN0,5732
151
- shotgun/tui/screens/github_issue.py,sha256=5i-Uo4U6q7T7Sdb-uj8LK2WJYbYGOkLgkpahUbFCex4,2902
152
- shotgun/tui/screens/model_picker.py,sha256=JXtFs476WGhu4fhDNG0Bit59e4mtuykNziAM953CNEk,12930
157
+ shotgun/tui/screens/directory_setup.py,sha256=cwtl9KRsSnpm7HbGx84TE6wahUXKeXbi8L0TRtCfYJQ,3274
158
+ shotgun/tui/screens/feedback.py,sha256=BRrAcgDMAVsEvCNFYjuqdF6FmqzuqiBxeLz4Ah7MGMQ,5955
159
+ shotgun/tui/screens/github_issue.py,sha256=OdjaNLb997UOqVTWMq-GawVbTPjxarynMb-y0ktxeCA,3178
160
+ shotgun/tui/screens/model_picker.py,sha256=nOKl--vCxS7tgYFU6HSYqwxtfqOLYwT14KvC9f_VdDk,13167
153
161
  shotgun/tui/screens/onboarding.py,sha256=inSdwIMbfMf376fOA0x3AdSDvNhJcxjWnDNKpMRMCp0,13821
154
- shotgun/tui/screens/pipx_migration.py,sha256=i5g9pQLKeGfqwppVFddRTypXCBk9byaIQ_1wgYuDTfc,4326
155
- shotgun/tui/screens/provider_config.py,sha256=bBPtgdcmUln8tPDoVrECmcWDq_2_BDfdsUVWumA4Ebo,12036
156
- shotgun/tui/screens/shotgun_auth.py,sha256=g1mA4d0hlIH8AWwV8go95WNEQsPKoq9n6QJQ3vtviSo,10675
162
+ shotgun/tui/screens/pipx_migration.py,sha256=GD7f1DykALe5Jk57CfRubtnNolcmdE87vMnuXhjdyqI,4566
163
+ shotgun/tui/screens/provider_config.py,sha256=42g9utH5uMx8gdexcJiD0Jp8B5qlMQg2qOcQCNqwR8I,12677
164
+ shotgun/tui/screens/shotgun_auth.py,sha256=8v-rV5WjOiBsc3MrPtLy1F6vkYllwhzIARsvLe2RcOE,10038
157
165
  shotgun/tui/screens/splash.py,sha256=E2MsJihi3c9NY1L28o_MstDxGwrCnnV7zdq00MrGAsw,706
158
- shotgun/tui/screens/welcome.py,sha256=Lr7fJqXccjZnbBF_9qn5UpewW1gHsRuVLAioWEKbhPE,6364
166
+ shotgun/tui/screens/welcome.py,sha256=PphOGzoqnmY3cGGg2wJX4Ytgf2DPifL7KGM4czU4L1M,7740
159
167
  shotgun/tui/screens/chat/__init__.py,sha256=wChPqpJG-7kPYVYZjE8BlkXWxfW_YABhTR2fQ51opHY,113
160
168
  shotgun/tui/screens/chat/chat.tcss,sha256=7jM4YTBj-N-5T4NIiU2AJiGtKYvYO50OAkI0o7_qimI,574
161
- shotgun/tui/screens/chat/chat_screen.py,sha256=OvzQcCJDEvOzW0OJ63jJLjamZHUTucxnbZi6Xq00Ijw,50828
162
- shotgun/tui/screens/chat/codebase_index_prompt_screen.py,sha256=QjqOOqaXJks-82prEHCUnIZbmNBoGb2FLqxet_dUUYM,2070
169
+ shotgun/tui/screens/chat/chat_screen.py,sha256=LTnSQ3mJJ20CQj9i1WPzPHm601JfA45hVRrlHfGYY6Q,55407
170
+ shotgun/tui/screens/chat/codebase_index_prompt_screen.py,sha256=hPOroZzBhEAT447JVUul58CrmwEORWvvP4Dm6s7QfgA,3573
163
171
  shotgun/tui/screens/chat/codebase_index_selection.py,sha256=Zz0vi3uLhWysdPHRO8Rye9QX4hIPeWhSAw6Y9-BlOVA,241
164
172
  shotgun/tui/screens/chat/help_text.py,sha256=MkDq0Z7yQCXHVtLlnZaFU_Ijq1rbQX9KMOGVsb_1Hm8,1610
165
173
  shotgun/tui/screens/chat/prompt_history.py,sha256=uL3KVFb32vD09jN338mebFAi0QI-EJXTxcEQy-j6QdQ,1201
166
174
  shotgun/tui/screens/chat_screen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
- shotgun/tui/screens/chat_screen/command_providers.py,sha256=w8Ga9R2QDHa2Y-IzqZ5-ofZ0BqB-FjNErdgZieFqnZg,15482
168
- shotgun/tui/screens/chat_screen/hint_message.py,sha256=WOpbk8q7qt7eOHTyyHvh_IQIaublVDeJGaLpsxEk9FA,933
175
+ shotgun/tui/screens/chat_screen/command_providers.py,sha256=O9H_SGdXny2lYH7qQNmoQUvYv59Fg_v5tlICzCGT9Zc,15582
176
+ shotgun/tui/screens/chat_screen/hint_message.py,sha256=aeG3TB8lamc7VeGUST16A96y6dYc8u3FuTxymM5BI-w,3361
169
177
  shotgun/tui/screens/chat_screen/history/__init__.py,sha256=PRznBlnm9caNE0YYC08PkvNMAK-JpuULwmByaRNTKO0,581
170
178
  shotgun/tui/screens/chat_screen/history/agent_response.py,sha256=m-RtSg77y-g_mzkVHOBMTMSW1ZE6RUCUYupn-PylPcc,2378
171
- shotgun/tui/screens/chat_screen/history/chat_history.py,sha256=6owb83I3RefJzh7xtqgKHR-x5-3XYi6CGiIMyn5xfyI,4078
179
+ shotgun/tui/screens/chat_screen/history/chat_history.py,sha256=fxAZPVsw3c_9d9P3nwE5dLYQ9gg8ln7RKJfZZCf9ESo,5777
172
180
  shotgun/tui/screens/chat_screen/history/formatters.py,sha256=R1roy6Ap04dUJ7clMLtYqSLkCMD6g2K6sVanOpDGwdc,4616
173
181
  shotgun/tui/screens/chat_screen/history/partial_response.py,sha256=loMaUoXLphnRh3gl4xvmTtkfaFY-ULrSDjndAWQcy1s,1318
174
182
  shotgun/tui/screens/chat_screen/history/user_question.py,sha256=BKl4FVKh4veszykkfr8RI06O5NEDIBZ17IZSCLzlImA,1305
@@ -179,7 +187,7 @@ shotgun/tui/state/processing_state.py,sha256=O0SxqQmljWyaSAhdCAr2fNgS0ibFiIhGRNH
179
187
  shotgun/tui/utils/__init__.py,sha256=cFjDfoXTRBq29wgP7TGRWUu1eFfiIG-LLOzjIGfadgI,150
180
188
  shotgun/tui/utils/mode_progress.py,sha256=6zh5NKtx0mF5eIOL9OPex93a4l_--s2uXrpOkqemAFU,11168
181
189
  shotgun/tui/widgets/__init__.py,sha256=rfWJJ3R9ID9J-qWm4ESnGgTK5KpKZJ7bdO0BH0PLdPI,152
182
- shotgun/tui/widgets/widget_coordinator.py,sha256=ApHslajShTHXJUSqqEdE_GMJe3ntumTJBkNyBUbnrlo,9026
190
+ shotgun/tui/widgets/widget_coordinator.py,sha256=gxRJxbUejXTmpj6lHwfKm9u_FMNF-0VuAkkkQRT6Spk,9131
183
191
  shotgun/utils/__init__.py,sha256=WinIEp9oL2iMrWaDkXz2QX4nYVPAm8C9aBSKTeEwLtE,198
184
192
  shotgun/utils/datetime_utils.py,sha256=x_uYmG1n9rkhSO2oR2uV9ttiuPL0nKa9os8YYaPfdWY,2592
185
193
  shotgun/utils/env_utils.py,sha256=ulM3BRi9ZhS7uC-zorGeDQm4SHvsyFuuU9BtVPqdrHY,1418
@@ -187,8 +195,8 @@ shotgun/utils/file_system_utils.py,sha256=zuuWO12bzSfeocTbi4DHVJKJTBekjP-_vRmb36
187
195
  shotgun/utils/marketing.py,sha256=WAPEtJDagNsDmIBdrZ0XBHOgsLONz_eT25wEng-HDBs,3759
188
196
  shotgun/utils/source_detection.py,sha256=Co6Q03R3fT771TF3RzB-70stfjNP2S4F_ArZKibwzm8,454
189
197
  shotgun/utils/update_checker.py,sha256=6fjiVUXgdxUrI54dfw0xBsrw7jlobYkjYNZaR-JoTpI,9667
190
- shotgun_sh-0.2.11.dev7.dist-info/METADATA,sha256=j7XvvNIeY7SYPCSCIO8czD7oii1zBffTdckJJAIHm7c,4485
191
- shotgun_sh-0.2.11.dev7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
192
- shotgun_sh-0.2.11.dev7.dist-info/entry_points.txt,sha256=GQmtjKaPtviqYOuB3C0SMGlG5RZS9-VDDIKxV_IVHmY,75
193
- shotgun_sh-0.2.11.dev7.dist-info/licenses/LICENSE,sha256=ZZEiPnjIkv3rNT-CJBMU6l7VukLUdddCo3bTwal1NIQ,1070
194
- shotgun_sh-0.2.11.dev7.dist-info/RECORD,,
198
+ shotgun_sh-0.2.23.dev1.dist-info/METADATA,sha256=D00bw844F9sDrmZf4JRKSFViNcNAmb1AEgCrkRubX64,15982
199
+ shotgun_sh-0.2.23.dev1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
200
+ shotgun_sh-0.2.23.dev1.dist-info/entry_points.txt,sha256=GQmtjKaPtviqYOuB3C0SMGlG5RZS9-VDDIKxV_IVHmY,75
201
+ shotgun_sh-0.2.23.dev1.dist-info/licenses/LICENSE,sha256=ZZEiPnjIkv3rNT-CJBMU6l7VukLUdddCo3bTwal1NIQ,1070
202
+ shotgun_sh-0.2.23.dev1.dist-info/RECORD,,