tau-coding-agent 0.1.0__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.
- tau/__init__.py +0 -0
- tau/agent/__init__.py +11 -0
- tau/agent/prompt/__init__.py +10 -0
- tau/agent/prompt/builder.py +302 -0
- tau/agent/prompt/types.py +33 -0
- tau/agent/service.py +369 -0
- tau/agent/types.py +61 -0
- tau/auth/manager.py +247 -0
- tau/auth/storage.py +82 -0
- tau/auth/types.py +41 -0
- tau/builtins/__init__.py +4 -0
- tau/builtins/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/__pycache__/__init__.cpython-314.pyc +0 -0
- tau/builtins/commands/__init__.py +41 -0
- tau/builtins/commands/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/commands/__pycache__/__init__.cpython-314.pyc +0 -0
- tau/builtins/commands/__pycache__/clear.cpython-313.pyc +0 -0
- tau/builtins/commands/__pycache__/clear.cpython-314.pyc +0 -0
- tau/builtins/commands/__pycache__/compact.cpython-313.pyc +0 -0
- tau/builtins/commands/__pycache__/compact.cpython-314.pyc +0 -0
- tau/builtins/commands/__pycache__/reload.cpython-313.pyc +0 -0
- tau/builtins/commands/__pycache__/reload.cpython-314.pyc +0 -0
- tau/builtins/commands/__pycache__/session.cpython-313.pyc +0 -0
- tau/builtins/commands/__pycache__/session.cpython-314.pyc +0 -0
- tau/builtins/commands/clear.py +16 -0
- tau/builtins/commands/compact.py +28 -0
- tau/builtins/commands/reload.py +27 -0
- tau/builtins/commands/session.py +19 -0
- tau/builtins/extensions/footer/__init__.py +76 -0
- tau/builtins/extensions/footer/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/extensions/footer/__pycache__/git.cpython-313.pyc +0 -0
- tau/builtins/extensions/footer/__pycache__/model.cpython-313.pyc +0 -0
- tau/builtins/extensions/footer/__pycache__/utils.cpython-313.pyc +0 -0
- tau/builtins/extensions/footer/git.py +26 -0
- tau/builtins/extensions/footer/model.py +69 -0
- tau/builtins/extensions/footer/utils.py +44 -0
- tau/builtins/extensions/header/__init__.py +18 -0
- tau/builtins/extensions/header/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/models/__init__.py +0 -0
- tau/builtins/models/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/models/__pycache__/text.cpython-313.pyc +0 -0
- tau/builtins/models/audio.py +43 -0
- tau/builtins/models/image.py +43 -0
- tau/builtins/models/text.py +482 -0
- tau/builtins/models/video.py +40 -0
- tau/builtins/prompts/commit.md +7 -0
- tau/builtins/prompts/docs.md +7 -0
- tau/builtins/prompts/explain.md +7 -0
- tau/builtins/prompts/fix.md +7 -0
- tau/builtins/prompts/refactor.md +7 -0
- tau/builtins/prompts/review.md +7 -0
- tau/builtins/prompts/test.md +7 -0
- tau/builtins/providers/__init__.py +0 -0
- tau/builtins/providers/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/providers/__pycache__/text.cpython-313.pyc +0 -0
- tau/builtins/providers/audio.py +10 -0
- tau/builtins/providers/image.py +9 -0
- tau/builtins/providers/text.py +33 -0
- tau/builtins/providers/video.py +6 -0
- tau/builtins/skills/code-review/SKILL.md +4 -0
- tau/builtins/skills/debug/SKILL.md +4 -0
- tau/builtins/skills/git-commit/SKILL.md +4 -0
- tau/builtins/themes/dark.yaml +1 -0
- tau/builtins/themes/light.yaml +46 -0
- tau/builtins/tools/__init__.py +73 -0
- tau/builtins/tools/__pycache__/__init__.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/__init__.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/bash.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/bash.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/edit.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/edit.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/glob.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/glob.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/grep.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/grep.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/ls.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/ls.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/read.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/read.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/terminal.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/terminal.cpython-314.pyc +0 -0
- tau/builtins/tools/__pycache__/write.cpython-313.pyc +0 -0
- tau/builtins/tools/__pycache__/write.cpython-314.pyc +0 -0
- tau/builtins/tools/edit.py +215 -0
- tau/builtins/tools/glob.py +112 -0
- tau/builtins/tools/grep.py +146 -0
- tau/builtins/tools/ls.py +135 -0
- tau/builtins/tools/read.py +122 -0
- tau/builtins/tools/terminal.py +150 -0
- tau/builtins/tools/write.py +105 -0
- tau/commands/__init__.py +10 -0
- tau/commands/registry.py +71 -0
- tau/commands/types.py +33 -0
- tau/console/__init__.py +0 -0
- tau/console/cli.py +266 -0
- tau/console/commands/__init__.py +0 -0
- tau/console/commands/auth.py +193 -0
- tau/console/commands/packages.py +104 -0
- tau/console/commands/update.py +76 -0
- tau/core/__init__.py +0 -0
- tau/core/registry.py +102 -0
- tau/engine/__init__.py +47 -0
- tau/engine/service.py +768 -0
- tau/engine/types.py +163 -0
- tau/extensions/__init__.py +28 -0
- tau/extensions/api.py +928 -0
- tau/extensions/context.py +462 -0
- tau/extensions/events.py +70 -0
- tau/extensions/loader.py +386 -0
- tau/extensions/runtime.py +184 -0
- tau/extensions/settings.py +137 -0
- tau/hooks/__init__.py +112 -0
- tau/hooks/engine.py +237 -0
- tau/hooks/inference.py +21 -0
- tau/hooks/runtime.py +126 -0
- tau/hooks/service.py +121 -0
- tau/hooks/session.py +117 -0
- tau/hooks/tui.py +61 -0
- tau/hooks/types.py +72 -0
- tau/inference/__init__.py +180 -0
- tau/inference/api/__init__.py +0 -0
- tau/inference/api/audio/__init__.py +0 -0
- tau/inference/api/audio/base.py +29 -0
- tau/inference/api/audio/builtins.py +15 -0
- tau/inference/api/audio/elevenlabs_audio.py +183 -0
- tau/inference/api/audio/gemini_audio.py +95 -0
- tau/inference/api/audio/openai_audio.py +159 -0
- tau/inference/api/audio/registry.py +15 -0
- tau/inference/api/audio/sarvam_audio.py +163 -0
- tau/inference/api/audio/service.py +103 -0
- tau/inference/api/audio/utils.py +47 -0
- tau/inference/api/image/__init__.py +0 -0
- tau/inference/api/image/base.py +17 -0
- tau/inference/api/image/builtins.py +8 -0
- tau/inference/api/image/gemini_image.py +77 -0
- tau/inference/api/image/openai_image.py +103 -0
- tau/inference/api/image/openrouter.py +144 -0
- tau/inference/api/image/registry.py +15 -0
- tau/inference/api/image/service.py +71 -0
- tau/inference/api/registry.py +82 -0
- tau/inference/api/text/__init__.py +0 -0
- tau/inference/api/text/anthropic_claude_code.py +222 -0
- tau/inference/api/text/anthropic_messages.py +196 -0
- tau/inference/api/text/base.py +40 -0
- tau/inference/api/text/builtins.py +19 -0
- tau/inference/api/text/gemini_generate.py +234 -0
- tau/inference/api/text/github_copilot_chat.py +172 -0
- tau/inference/api/text/google_antigravity.py +522 -0
- tau/inference/api/text/mistral_chat.py +284 -0
- tau/inference/api/text/ollama_chat.py +200 -0
- tau/inference/api/text/openai_codex_responses.py +497 -0
- tau/inference/api/text/openai_completions.py +227 -0
- tau/inference/api/text/openai_responses.py +235 -0
- tau/inference/api/text/registry.py +50 -0
- tau/inference/api/text/service.py +297 -0
- tau/inference/api/text/types.py +7 -0
- tau/inference/api/text/utils.py +228 -0
- tau/inference/api/video/__init__.py +0 -0
- tau/inference/api/video/base.py +26 -0
- tau/inference/api/video/builtins.py +7 -0
- tau/inference/api/video/fal_video.py +119 -0
- tau/inference/api/video/openrouter_video.py +142 -0
- tau/inference/api/video/registry.py +15 -0
- tau/inference/api/video/service.py +72 -0
- tau/inference/model/__init__.py +0 -0
- tau/inference/model/registry.py +102 -0
- tau/inference/model/types.py +65 -0
- tau/inference/provider/__init__.py +0 -0
- tau/inference/provider/oauth/__init__.py +35 -0
- tau/inference/provider/oauth/anthropic_claude_code.py +286 -0
- tau/inference/provider/oauth/github_copilot.py +333 -0
- tau/inference/provider/oauth/google_antigravity.py +258 -0
- tau/inference/provider/oauth/openai_codex.py +309 -0
- tau/inference/provider/oauth/pkce.py +14 -0
- tau/inference/provider/oauth/types.py +46 -0
- tau/inference/provider/oauth/utils.py +154 -0
- tau/inference/provider/registry.py +141 -0
- tau/inference/provider/types.py +114 -0
- tau/inference/types.py +549 -0
- tau/inference/utils.py +219 -0
- tau/message/__init__.py +0 -0
- tau/message/types.py +482 -0
- tau/message/utils.py +178 -0
- tau/packages/__init__.py +11 -0
- tau/packages/manager.py +190 -0
- tau/packages/types.py +20 -0
- tau/packages/utils.py +67 -0
- tau/prompts/expand.py +58 -0
- tau/prompts/loader.py +69 -0
- tau/prompts/registry.py +45 -0
- tau/prompts/types.py +24 -0
- tau/rpc/__init__.py +8 -0
- tau/rpc/mode.py +783 -0
- tau/rpc/types.py +252 -0
- tau/runtime/service.py +759 -0
- tau/runtime/types.py +303 -0
- tau/session/branch_summarization.py +312 -0
- tau/session/compaction.py +646 -0
- tau/session/manager.py +652 -0
- tau/session/types.py +188 -0
- tau/session/utils.py +233 -0
- tau/settings/manager.py +1077 -0
- tau/settings/paths.py +150 -0
- tau/settings/storage.py +63 -0
- tau/settings/types.py +173 -0
- tau/settings/utils.py +25 -0
- tau/skills/loader.py +91 -0
- tau/skills/registry.py +70 -0
- tau/skills/types.py +25 -0
- tau/themes/loader.py +238 -0
- tau/themes/registry.py +108 -0
- tau/themes/types.py +19 -0
- tau/tool/__init__.py +3 -0
- tau/tool/registry.py +117 -0
- tau/tool/render.py +21 -0
- tau/tool/types.py +244 -0
- tau/trust/__init__.py +13 -0
- tau/trust/manager.py +80 -0
- tau/trust/types.py +14 -0
- tau/trust/utils.py +72 -0
- tau/tui/__init__.py +54 -0
- tau/tui/agent_hooks.py +346 -0
- tau/tui/ansi.py +330 -0
- tau/tui/app.py +540 -0
- tau/tui/autocomplete.py +33 -0
- tau/tui/capabilities.py +119 -0
- tau/tui/commands/__init__.py +3 -0
- tau/tui/commands/appearance.py +498 -0
- tau/tui/commands/auth.py +232 -0
- tau/tui/commands/context.py +38 -0
- tau/tui/commands/misc.py +82 -0
- tau/tui/commands/model.py +118 -0
- tau/tui/commands/session.py +464 -0
- tau/tui/component.py +268 -0
- tau/tui/components/__init__.py +0 -0
- tau/tui/components/autocomplete_manager.py +267 -0
- tau/tui/components/autocomplete_picker.py +143 -0
- tau/tui/components/box.py +90 -0
- tau/tui/components/command_palette.py +144 -0
- tau/tui/components/dynamic_border.py +19 -0
- tau/tui/components/file_picker.py +233 -0
- tau/tui/components/image.py +181 -0
- tau/tui/components/inline_selector.py +71 -0
- tau/tui/components/layout.py +1194 -0
- tau/tui/components/message_list.py +692 -0
- tau/tui/components/modal.py +97 -0
- tau/tui/components/model_palette.py +204 -0
- tau/tui/components/picker_overlay.py +174 -0
- tau/tui/components/prompt_overlay.py +236 -0
- tau/tui/components/resume_modal.py +372 -0
- tau/tui/components/select_list.py +222 -0
- tau/tui/components/settings_modal.py +274 -0
- tau/tui/components/settings_schema.py +203 -0
- tau/tui/components/spinner.py +119 -0
- tau/tui/components/text_input.py +396 -0
- tau/tui/components/text_prompt.py +82 -0
- tau/tui/components/tree_select_list.py +580 -0
- tau/tui/components/trust_screen.py +97 -0
- tau/tui/diff.py +114 -0
- tau/tui/fuzzy.py +99 -0
- tau/tui/input.py +496 -0
- tau/tui/input_handler.py +716 -0
- tau/tui/keybindings.py +87 -0
- tau/tui/markdown.py +286 -0
- tau/tui/message_renderers.py +31 -0
- tau/tui/overlay.py +326 -0
- tau/tui/renderer.py +378 -0
- tau/tui/terminal.py +499 -0
- tau/tui/theme.py +148 -0
- tau/tui/tui.py +544 -0
- tau/tui/ui_context.py +768 -0
- tau/tui/utils.py +20 -0
- tau/utils/__init__.py +0 -0
- tau/utils/http_proxy.py +221 -0
- tau/utils/image_processing.py +172 -0
- tau/utils/secrets.py +59 -0
- tau/utils/version_check.py +60 -0
- tau_coding_agent-0.1.0.dist-info/METADATA +177 -0
- tau_coding_agent-0.1.0.dist-info/RECORD +283 -0
- tau_coding_agent-0.1.0.dist-info/WHEEL +5 -0
- tau_coding_agent-0.1.0.dist-info/entry_points.txt +2 -0
- tau_coding_agent-0.1.0.dist-info/licenses/LICENSE +21 -0
- tau_coding_agent-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tau-coding-agent
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Interactive agent CLI with terminal UI for multi-provider LLM support
|
|
5
|
+
Requires-Python: ==3.13.*
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: anthropic==0.109.1
|
|
9
|
+
Requires-Dist: certifi==2026.5.20
|
|
10
|
+
Requires-Dist: click==8.4.1
|
|
11
|
+
Requires-Dist: filelock==3.29.3
|
|
12
|
+
Requires-Dist: google-genai==2.8.0
|
|
13
|
+
Requires-Dist: httpx==0.28.1
|
|
14
|
+
Requires-Dist: mistralai==2.4.9
|
|
15
|
+
Requires-Dist: ollama==0.6.2
|
|
16
|
+
Requires-Dist: openai==2.41.1
|
|
17
|
+
Requires-Dist: packaging==26.2
|
|
18
|
+
Requires-Dist: pillow==12.2.0
|
|
19
|
+
Requires-Dist: pydantic==2.13.4
|
|
20
|
+
Requires-Dist: python-dotenv==1.2.2
|
|
21
|
+
Requires-Dist: uuid7==0.1.0
|
|
22
|
+
Requires-Dist: websockets==16.0
|
|
23
|
+
Requires-Dist: mistletoe==1.5.1
|
|
24
|
+
Requires-Dist: pyyaml==6.0.2
|
|
25
|
+
Requires-Dist: pygments==2.20.0
|
|
26
|
+
Requires-Dist: pathspec==1.1.1
|
|
27
|
+
Requires-Dist: gitpython==3.1.50
|
|
28
|
+
Dynamic: license-file
|
|
29
|
+
|
|
30
|
+
# Tau
|
|
31
|
+
|
|
32
|
+
Inspired by [Pi](https://pi.dev), Tau brings the same agent framework capabilities to Python developers. A self-extensible agent CLI with a terminal UI, multi-provider LLM support, session management with branching, and a plugin system for tools, commands, and customization.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Quick Start
|
|
37
|
+
|
|
38
|
+
### Installation
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install tau-coding-agent
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or install from source:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
git clone https://github.com/Jeomon/Tau.git
|
|
48
|
+
cd Tau
|
|
49
|
+
pip install -e .
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Launch
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
tau
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Authenticate with your LLM provider using `/login` or set environment variables (e.g., `ANTHROPIC_API_KEY`).
|
|
59
|
+
|
|
60
|
+
### Common Commands
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
tau # Interactive mode
|
|
64
|
+
tau --resume # Resume most recent session
|
|
65
|
+
tau --model claude-sonnet-4-6 # Use specific model
|
|
66
|
+
tau --print "Summarize this repo" # One-shot mode
|
|
67
|
+
tau -p anthropic --print "Explain this code" # Print mode with provider
|
|
68
|
+
tau --mode rpc # RPC mode for IDE extensions
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
> For detailed options, see [CLI Reference](docs/cli-reference.md)
|
|
72
|
+
|
|
73
|
+
## Features
|
|
74
|
+
|
|
75
|
+
- **Multi-provider LLM support** — Anthropic Claude, OpenAI GPT, Google Gemini, Mistral AI, Ollama, Azure OpenAI
|
|
76
|
+
- **Terminal UI** — Built-in chat interface with syntax highlighting, markdown rendering, and keyboard navigation
|
|
77
|
+
- **Rich media support** — Work with text files, images, audio files, and video files via file references or clipboard input
|
|
78
|
+
- **Session management** — Persistent sessions with branching, forking, and resuming capabilities
|
|
79
|
+
- **Tool execution** — Built-in tools (terminal, file I/O, web fetch) with sandboxed execution and extensibility
|
|
80
|
+
- **Plugin system** — Add custom tools, slash commands, hooks, themes, and skills without modifying core code
|
|
81
|
+
- **16 built-in themes** — Dark and light themes including dracula, nord, gruvbox, catppuccin, ayu-dark, tokyo-night, rose-pine, and more
|
|
82
|
+
- **Context management** — Automatic context compaction and branch summarization for long conversations
|
|
83
|
+
- **Python API** — Embed Tau in your own applications programmatically
|
|
84
|
+
- **Multiple run modes** — Interactive TUI, print mode (one-shot), JSON event stream, and JSON-RPC for IDE integration
|
|
85
|
+
|
|
86
|
+
## Documentation
|
|
87
|
+
|
|
88
|
+
Start here: [**Tau Documentation**](docs/index.md)
|
|
89
|
+
|
|
90
|
+
**Key resources:**
|
|
91
|
+
- [Quickstart](docs/quickstart.md) — Five-minute getting started guide
|
|
92
|
+
- [Installation & Setup](docs/installation.md) — Provider authentication and configuration
|
|
93
|
+
- [Usage Guide](docs/usage.md) — Interactive mode and slash commands
|
|
94
|
+
- [Architecture](docs/architecture.md) — System design and data flow
|
|
95
|
+
- [Extensions](docs/extensions.md) — Building tools, commands, and plugins
|
|
96
|
+
- [Python API](docs/python-api.md) — Programmatic usage
|
|
97
|
+
|
|
98
|
+
## Core Architecture
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
Console (CLI) → TUI (Terminal UI) → Runtime (Agent Execution) → Engine (Tools) → Inference (LLM)
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
User input flows through the TUI to the runtime, which executes tools via the engine and calls the LLM provider for inference. Results are rendered back in the TUI and persisted to sessions.
|
|
105
|
+
|
|
106
|
+
## Configuration
|
|
107
|
+
|
|
108
|
+
Settings are loaded in order of precedence:
|
|
109
|
+
1. Built-in defaults
|
|
110
|
+
2. `~/.tau/settings.json` (global user settings)
|
|
111
|
+
3. `.tau/settings.json` (project-level settings)
|
|
112
|
+
4. Environment variables
|
|
113
|
+
5. Command-line flags
|
|
114
|
+
|
|
115
|
+
Sessions are saved to `~/.tau/sessions/` and can be resumed, forked, or cloned.
|
|
116
|
+
|
|
117
|
+
### Project Context Files
|
|
118
|
+
|
|
119
|
+
Tau automatically discovers and includes project-specific instructions from `AGENTS.md` or `CLAUDE.md` in the system prompt. This allows you to:
|
|
120
|
+
- Define project rules and coding guidelines for the agent
|
|
121
|
+
- Standardize how the agent handles project-specific conventions
|
|
122
|
+
- Store project context separately from tool configuration
|
|
123
|
+
|
|
124
|
+
**Example usage:**
|
|
125
|
+
```bash
|
|
126
|
+
# Auto-discover AGENTS.md in the project (default behavior)
|
|
127
|
+
tau
|
|
128
|
+
|
|
129
|
+
# Disable project context file loading
|
|
130
|
+
tau --no-context-files
|
|
131
|
+
|
|
132
|
+
# Trust project files explicitly
|
|
133
|
+
tau --approve
|
|
134
|
+
|
|
135
|
+
# Don't trust project files for this run
|
|
136
|
+
tau --no-approve
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
See [Project Context Files](docs/project-context.md) for detailed instructions.
|
|
140
|
+
|
|
141
|
+
## Security & Permissions
|
|
142
|
+
|
|
143
|
+
Tau executes tools (terminal, file I/O, web operations) with the permissions of the user and process that launched it. There is no built-in permission system for restricting filesystem, process, network, or credential access.
|
|
144
|
+
|
|
145
|
+
If you need stronger boundaries, consider:
|
|
146
|
+
- Running Tau inside a container or sandbox
|
|
147
|
+
- Using OS-level security policies
|
|
148
|
+
- Configuring environment variables to limit tool access
|
|
149
|
+
|
|
150
|
+
## Supply Chain Security
|
|
151
|
+
|
|
152
|
+
We treat dependency changes as reviewed code changes with these practices:
|
|
153
|
+
|
|
154
|
+
- **Exact version pinning** — All direct dependencies pinned to specific versions in `pyproject.toml`
|
|
155
|
+
- **Lockfile integrity** — `uv.lock` is the source of truth; changes require explicit review
|
|
156
|
+
- **Dependency auditing** — Use `pip-audit` or `safety` to scan for known vulnerabilities
|
|
157
|
+
- **Safe installation** — Install with `--no-deps` to prevent malicious lifecycle scripts
|
|
158
|
+
|
|
159
|
+
See [SECURITY.md](SECURITY.md) for detailed practices and vulnerability reporting.
|
|
160
|
+
|
|
161
|
+
## Development
|
|
162
|
+
|
|
163
|
+
```bash
|
|
164
|
+
python -m pytest # Run tests
|
|
165
|
+
pyright tau/ # Type checking
|
|
166
|
+
python -m tau --mode tui # Launch from source
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
See [Development Setup](docs/development.md) for detailed instructions.
|
|
170
|
+
|
|
171
|
+
## Contributing
|
|
172
|
+
|
|
173
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines and [AGENTS.md](AGENTS.md) for project-specific rules.
|
|
174
|
+
|
|
175
|
+
## License
|
|
176
|
+
|
|
177
|
+
This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
tau/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
tau/agent/__init__.py,sha256=TJWJXVunFZm--nMdUbEXeI32TjmyUt5ssg-1GVq0_lw,257
|
|
3
|
+
tau/agent/service.py,sha256=DQ0C70OMFlD92KqzipIRqckYtUgfLKWv1-7qp1gBNRM,14554
|
|
4
|
+
tau/agent/types.py,sha256=m2uu09HC6qAECZDLoU0EixbCwy0NDtHRzUrHeZFjVKk,1461
|
|
5
|
+
tau/agent/prompt/__init__.py,sha256=X-XfLu0JLFZ5owUvsPqtC-o_T5SW-aoor0Y_iPcoBtQ,243
|
|
6
|
+
tau/agent/prompt/builder.py,sha256=P8ZBlM8Qjb9BBKo1gtiV4Bj3uhLcAFgCf1Sqzh6ygQU,10873
|
|
7
|
+
tau/agent/prompt/types.py,sha256=UDz33iUWgEbS4QpJM648H7SvCWDJuTygy2nil816pNM,1187
|
|
8
|
+
tau/auth/manager.py,sha256=rYaNyxV0uwKjO4TNynNOMEGIqmoJgVnSPWtjdmx5yNo,10847
|
|
9
|
+
tau/auth/storage.py,sha256=O-Ret9fQTP8hoh4kChVtJLNs-PcESGG4sTFhATiDnjU,3225
|
|
10
|
+
tau/auth/types.py,sha256=i5ShJk2MApUXsvuJCf3IhhQF22P29-6pEJDGHEGLuxA,1054
|
|
11
|
+
tau/builtins/__init__.py,sha256=jnoXkCEgtGnry4MO6VXLgy5X42QQIwI6tQ--D3FE2SU,185
|
|
12
|
+
tau/builtins/__pycache__/__init__.cpython-313.pyc,sha256=XjfNvxvXvKZ7Nm5o0Q9-pgDJVyKmGh1RhrpLTClgwYQ,147
|
|
13
|
+
tau/builtins/__pycache__/__init__.cpython-314.pyc,sha256=vF1HCDD4RJhanRVtLh-3BS9uep7XxPkhsJZIhq1YJOE,149
|
|
14
|
+
tau/builtins/commands/__init__.py,sha256=8kQVPgQDmRat5adWSTDPnPCNk4xaPEtFUJawsUzxg94,1305
|
|
15
|
+
tau/builtins/commands/clear.py,sha256=9Vpf3Pps2czTXUBdM8iKzGxJM1C4KUemlHYC6U7brCY,458
|
|
16
|
+
tau/builtins/commands/compact.py,sha256=O4Gz1KU3XuuscnBwl8CvjRVt5HzEp5OdhAf-I_kIVCY,1107
|
|
17
|
+
tau/builtins/commands/reload.py,sha256=5P7HHSkdgotgImkSrc9XW3nsHI9ImDG_VwKyprhd8MQ,836
|
|
18
|
+
tau/builtins/commands/session.py,sha256=0NtzB3cc7qFkOsRCu7eheyjxnl-XvxG5KygASwrN9fA,518
|
|
19
|
+
tau/builtins/commands/__pycache__/__init__.cpython-313.pyc,sha256=-uKarPasWMHDW85Ajtdiz3xudVo4NWVgBzNym0CyrIE,1386
|
|
20
|
+
tau/builtins/commands/__pycache__/__init__.cpython-314.pyc,sha256=2VrOfE7nxWlEi3fOJ60b6vuqSZ5YHkj7W9Pnzh4EOHc,1558
|
|
21
|
+
tau/builtins/commands/__pycache__/clear.cpython-313.pyc,sha256=vnr4CP2mds1UdkXFz7Q41XQkS7kd9PjRVFByalxx-dM,873
|
|
22
|
+
tau/builtins/commands/__pycache__/clear.cpython-314.pyc,sha256=5OG_Qf6uFio4nygh1JqedJ0vz3E5WiiGffpdPRlLOMU,1043
|
|
23
|
+
tau/builtins/commands/__pycache__/compact.cpython-313.pyc,sha256=JSSE_l7_DB3_HY_XJoSWNnILTjtCNGHzEDBei2hRg5E,1811
|
|
24
|
+
tau/builtins/commands/__pycache__/compact.cpython-314.pyc,sha256=DcJOPZoVrrlQ2dVWQrrYyt_FFjZRmJkH2EBnJHrQ0uY,2030
|
|
25
|
+
tau/builtins/commands/__pycache__/reload.cpython-313.pyc,sha256=dYhuHC2kOAsLjFcH8t1zgIZgvU3iQzkEBYx2lvrCWHU,1513
|
|
26
|
+
tau/builtins/commands/__pycache__/reload.cpython-314.pyc,sha256=yvEhqBhddQbTGkqIZR-_ZEtxLpYAIuRTLaxITJZeCqM,1695
|
|
27
|
+
tau/builtins/commands/__pycache__/session.cpython-313.pyc,sha256=eOAmtnOx5nOroLyHzkqb29r7tEveNA8HtmeGm4iggmw,1066
|
|
28
|
+
tau/builtins/commands/__pycache__/session.cpython-314.pyc,sha256=e5fjpWJ2XYHtLSfvJxuioGm3CNkVg8fdCGP4jQpcCdw,1397
|
|
29
|
+
tau/builtins/extensions/footer/__init__.py,sha256=00ckFSTE8DYth-R6Jq8Q73YOgrxKUbVgozoDdF0Iyn8,2502
|
|
30
|
+
tau/builtins/extensions/footer/git.py,sha256=3nTtX-PnOvHrgN1unlLOya8kxRY7Kx9ZL-RLso2eCXk,724
|
|
31
|
+
tau/builtins/extensions/footer/model.py,sha256=T9ZQar4o-Hq2essQlAmnf2F6xXN_J-XWuqq6RX3qugs,2560
|
|
32
|
+
tau/builtins/extensions/footer/utils.py,sha256=zLir_2EprOtJADQv5KWRFepEZPxVpAC8MUoe_5FiSko,1417
|
|
33
|
+
tau/builtins/extensions/footer/__pycache__/__init__.cpython-313.pyc,sha256=UWVwVZ3L7J4K6JnHDbjGamghUpOCsTubXKmoO82t58o,4568
|
|
34
|
+
tau/builtins/extensions/footer/__pycache__/git.cpython-313.pyc,sha256=UeH3bYfBK4pjhdC1y1_uqKF7TlbHIrzjSYYmPm6QT8A,1697
|
|
35
|
+
tau/builtins/extensions/footer/__pycache__/model.cpython-313.pyc,sha256=Lzl7c2cqw9_Ht6UCbvEqhq1dAd1uvxBQO__Hsjr3T_o,4660
|
|
36
|
+
tau/builtins/extensions/footer/__pycache__/utils.cpython-313.pyc,sha256=7nO5_2YKuYP5GRxMWpkx37bYabzw_WHq-3MQwfe4ieo,2301
|
|
37
|
+
tau/builtins/extensions/header/__init__.py,sha256=ZnO_kPb0Bp2WQ5CYccO9GakT09839elxoLhj7Klrb58,645
|
|
38
|
+
tau/builtins/extensions/header/__pycache__/__init__.cpython-313.pyc,sha256=3FA5Y_DptErv3weiFnG90ZUXFfHCmp-6rsXECq9GWys,1510
|
|
39
|
+
tau/builtins/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
tau/builtins/models/audio.py,sha256=EH1Eh1FOTtiS08P-BG44TnZIDLwXBsfn350oM9APiRA,4608
|
|
41
|
+
tau/builtins/models/image.py,sha256=a2FsQnjGMew-mV0BjThxOsWNGic8i0I4BgAdyHXofkM,4587
|
|
42
|
+
tau/builtins/models/text.py,sha256=rU6rYlQPqBDIKSO0p6igbs0sN7MSTvlv8sqmonRDDX4,135732
|
|
43
|
+
tau/builtins/models/video.py,sha256=YpclFmaWBZWzZBYjkyH80KdsDJ-dHkffcuVHxOZoVLY,4677
|
|
44
|
+
tau/builtins/models/__pycache__/__init__.cpython-313.pyc,sha256=YKOLYA3GvolNtDb_gsfVL9B6o29MMRdjxSvzNVu-79A,154
|
|
45
|
+
tau/builtins/models/__pycache__/text.cpython-313.pyc,sha256=1Hp_goiwji8jk0ATB6doOki7Z0zsZFoaxWbAVcK-XSs,141715
|
|
46
|
+
tau/builtins/prompts/commit.md,sha256=z9-vnm9k_TLFp__l_wQ2gncgh-YWmCuewTzL1ZwfbI8,286
|
|
47
|
+
tau/builtins/prompts/docs.md,sha256=npxuZGdtJbHMrspAIuqLsccEMGNSA6PD4NMXbmHCl-k,231
|
|
48
|
+
tau/builtins/prompts/explain.md,sha256=v8GJwWBzkKBc6Kj7tMzxgepdtexVUwMpV_l2dn5sY2o,195
|
|
49
|
+
tau/builtins/prompts/fix.md,sha256=Dxg6F0f9ltvw8knTWITw6LhC7gasrTuex_TdJnsv4oQ,187
|
|
50
|
+
tau/builtins/prompts/refactor.md,sha256=XmPj4lo4tsNRWzZizGHSK7qsjAU_xOrE4BVD8lzfx0Q,223
|
|
51
|
+
tau/builtins/prompts/review.md,sha256=NeDKCSDMZPr2gmfN3DZ3qidiP3qqKuOcaW9zjfHY6AE,221
|
|
52
|
+
tau/builtins/prompts/test.md,sha256=5foLAVa6C40rm7zLePgkYCVcCr6lM5j8eTYhHYlupio,177
|
|
53
|
+
tau/builtins/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
tau/builtins/providers/audio.py,sha256=r2anZXuZjZ8SnUkemtzqjosUpJBj23NxRT90dSqZEfc,592
|
|
55
|
+
tau/builtins/providers/image.py,sha256=Bj-qpdHjEcSSEeSWYPEsStM4aaT60tPdHgHftGLPaEw,605
|
|
56
|
+
tau/builtins/providers/text.py,sha256=zR0wUhjuJGg3ya6xeLaX7lYp5QDWdyZjVm44bPZGWNs,2749
|
|
57
|
+
tau/builtins/providers/video.py,sha256=PornhjlKOkg7_p9xDMPBSfLkg3P2Sr8_uNR0Rh9UHJM,230
|
|
58
|
+
tau/builtins/providers/__pycache__/__init__.cpython-313.pyc,sha256=W0hzY85m1O0Bot6h9LTVPJRpvSEVKyJaDbGYiQOVZGw,157
|
|
59
|
+
tau/builtins/providers/__pycache__/text.cpython-313.pyc,sha256=aHf507V76LveF5vOQzi-U1k073TrIwm17rOk6nNPyDs,2467
|
|
60
|
+
tau/builtins/skills/code-review/SKILL.md,sha256=nw1MPTr1Ar9Woii6NDWzDhE8MoQflOADRGosFfslnqQ,330
|
|
61
|
+
tau/builtins/skills/debug/SKILL.md,sha256=Isuw7VVlbQJ587FbpPA86enkc9QVqmLi3i84V0pevgk,307
|
|
62
|
+
tau/builtins/skills/git-commit/SKILL.md,sha256=Eo_dXjo3VJAK7f0Amdr49O264BtBmYTGDsESlm2dVoA,352
|
|
63
|
+
tau/builtins/themes/dark.yaml,sha256=Ug3ka4v1zKAFUc3EIMMQiBeDzDF_KIULE6ts3yJTBec,11
|
|
64
|
+
tau/builtins/themes/light.yaml,sha256=0ZVLK0YX8uVs4s74Sgw0DRg6KdQaOaXVurtexkF6Xww,1207
|
|
65
|
+
tau/builtins/tools/__init__.py,sha256=PxS5KIM5yRErZyxLSNMdhcQRCNjkcRyMx4KudxC-cQQ,1806
|
|
66
|
+
tau/builtins/tools/edit.py,sha256=taLmiHfFLTy94J6Zdu-XhEFWmsJd_gFDCR2Nl2TaIWM,8129
|
|
67
|
+
tau/builtins/tools/glob.py,sha256=GagHm7EdIjidrwc88IDC9LwvsILVqKPYGeCc3Stx8dQ,3888
|
|
68
|
+
tau/builtins/tools/grep.py,sha256=AMNW_68IrOd2zE2ycf6GSAfztbRhU1S00-3lCaAYBNk,5395
|
|
69
|
+
tau/builtins/tools/ls.py,sha256=QJveXow4UxGpKXk_yfThpu8z3dp_VrrW5ExZ13Hz7fY,4731
|
|
70
|
+
tau/builtins/tools/read.py,sha256=9skx8TiNdMD9bJ_EDzGK6TyOqxofnxiGgDbfEdgn4S0,4327
|
|
71
|
+
tau/builtins/tools/terminal.py,sha256=C5unrBsGkxNcbR18nCWOb-gG4ZUUzfSqx7SV8NOoa44,5354
|
|
72
|
+
tau/builtins/tools/write.py,sha256=bk25JL4JkoDFcoXmCXNTmg29cAN0UTp6n9ruIHA7LDo,3626
|
|
73
|
+
tau/builtins/tools/__pycache__/__init__.cpython-313.pyc,sha256=tEB_BW6U8zNM0FNMts_mpiV7S2_zNY5Pc0dzJ09XUps,2376
|
|
74
|
+
tau/builtins/tools/__pycache__/__init__.cpython-314.pyc,sha256=8Aghjrk4gDR0t3Ouqwku9r7999Pq8Tyu0BCocrdMDGc,3198
|
|
75
|
+
tau/builtins/tools/__pycache__/bash.cpython-313.pyc,sha256=YyptaCNJo-jlrtNW7GEHadZhIx-sTFm5rjpdkBbJV8s,7151
|
|
76
|
+
tau/builtins/tools/__pycache__/bash.cpython-314.pyc,sha256=Ppkj5YHap_Rq85MbwN_AMtkVN510BJ9MR7cZRfN4_YM,8201
|
|
77
|
+
tau/builtins/tools/__pycache__/edit.cpython-313.pyc,sha256=y99M7uv_JU2bpzu20xPlc3wZdX6J8aQ9IpRCFnVyZVo,11943
|
|
78
|
+
tau/builtins/tools/__pycache__/edit.cpython-314.pyc,sha256=DDEdBMvgEnPjI3RgniUIppyDyGKYWmAyBmt_JZexqkE,13113
|
|
79
|
+
tau/builtins/tools/__pycache__/glob.cpython-313.pyc,sha256=Y4VRwDp6J2nhnsk3yTlv98MrEhOKs_hlphJ5479dTxA,6210
|
|
80
|
+
tau/builtins/tools/__pycache__/glob.cpython-314.pyc,sha256=EVnmhwzq-2cxCxAIlhXFcwhXfbeAwuGEZ4G8DoS6Dbc,7028
|
|
81
|
+
tau/builtins/tools/__pycache__/grep.cpython-313.pyc,sha256=Q_qHuCUH65whLv6I8xGHkYtXFJi9ambUTGMM2XbftEk,8301
|
|
82
|
+
tau/builtins/tools/__pycache__/grep.cpython-314.pyc,sha256=6VjB4SSsrcjwjhCVcQiyYZFKYj8HlmZ3w33xgv7EpNw,9156
|
|
83
|
+
tau/builtins/tools/__pycache__/ls.cpython-313.pyc,sha256=YR1YLVaDvR3BDFVDS4e4mHefQehOozPacw1cmzjMuiQ,7666
|
|
84
|
+
tau/builtins/tools/__pycache__/ls.cpython-314.pyc,sha256=s5QnvuT61ud4E0VlsI7QUPHigK8cg6yAqvUqCXsRewc,8675
|
|
85
|
+
tau/builtins/tools/__pycache__/read.cpython-313.pyc,sha256=wDvbZ83sO6WqcTu55sMPhN9XPZWawXwunYDG7A3qlZQ,7005
|
|
86
|
+
tau/builtins/tools/__pycache__/read.cpython-314.pyc,sha256=l3ezUDCBwUEqLJuJ42--R5hlriUl3CAwYzHpffGjY5Y,7811
|
|
87
|
+
tau/builtins/tools/__pycache__/terminal.cpython-313.pyc,sha256=7-nHYx67Trc_B07y3Azu8zYE8kOx_BarEe1K8vsuQ-I,7922
|
|
88
|
+
tau/builtins/tools/__pycache__/terminal.cpython-314.pyc,sha256=o_aovaaU_QxG6973XsZUhW8BdbYqw0ErK_C4a_CdPi4,9008
|
|
89
|
+
tau/builtins/tools/__pycache__/write.cpython-313.pyc,sha256=eJ2LQ71WVVWkwxKVFMGzx3wSMZ1-LO929jD2ngFYCH4,5823
|
|
90
|
+
tau/builtins/tools/__pycache__/write.cpython-314.pyc,sha256=pyGhHPrmZYN5VHIuT3fiLeENKiSCPSDLH7H-4Dp5PzM,6589
|
|
91
|
+
tau/commands/__init__.py,sha256=DvSgpxBS7sZJaRqBFsrPNoerZt9KtS00BFUq5KEvHFg,238
|
|
92
|
+
tau/commands/registry.py,sha256=Qnb-IKxciWuzzu4pYYtactDRj0W9Ug3VM_XWhuPATw4,2480
|
|
93
|
+
tau/commands/types.py,sha256=kY1zKrTie9LyewzgAzypjodvZ4pXVg3-pAz94qUKfMM,1066
|
|
94
|
+
tau/console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
tau/console/cli.py,sha256=pybyH5VH-GuxOo6C5aNVnZioSSTDKRPbm5nHyfNh_3w,9805
|
|
96
|
+
tau/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
tau/console/commands/auth.py,sha256=l9AnUbTmdhg3Eh0KrPbxyxVp6RcytNQDjbYGrxnOkmI,6314
|
|
98
|
+
tau/console/commands/packages.py,sha256=TplWXsto5YCzhh4fj4_PcHPPqbl710ktArE036F7MMc,3520
|
|
99
|
+
tau/console/commands/update.py,sha256=rbbcTn_9vvZcAnQ337vBp9eNDLSj92wUHChKNMOV_L0,2713
|
|
100
|
+
tau/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
+
tau/core/registry.py,sha256=gH8YjsTD5CMqZjQIwPU-d9ibmBmFaGEL3LB04FbS3Wc,3737
|
|
102
|
+
tau/engine/__init__.py,sha256=y7Y4DToMcaVMZ_pZrFCZUpPhO2oG_xVp7IYNw62kves,1032
|
|
103
|
+
tau/engine/service.py,sha256=M5iTYw285PG7kAnQLF_9EMa7092n7HvFF250EYIRL_w,34852
|
|
104
|
+
tau/engine/types.py,sha256=CzjUPiXZ75e9ymdDwIKoQQmpjedTPA0C6MzEUf5hyJQ,6073
|
|
105
|
+
tau/extensions/__init__.py,sha256=DxmzE5Tlz6HAJLERhPaaQKHT46Nn_qY-V2N9QQv4Pq8,874
|
|
106
|
+
tau/extensions/api.py,sha256=1yWm7HowWTfpBwmlENQouuDwRe-bf6z7FNxENaItqjE,38915
|
|
107
|
+
tau/extensions/context.py,sha256=YGbOeiG5gxhrifTJ-4gY7NqYoy-1eRRrsj1A4x76TEY,17336
|
|
108
|
+
tau/extensions/events.py,sha256=4jkZ2K_Zfr9x6wlMNgdQRI1GR0iXFt4qCd3g1RUCmSA,2226
|
|
109
|
+
tau/extensions/loader.py,sha256=1acA5ecGyVOl7qg8e5qTy2GC4n5j_yHsE_q19h0HPX0,16179
|
|
110
|
+
tau/extensions/runtime.py,sha256=y3SZo-He_LawCoKmYw2lzlD26jdthLWxCj8LmXziDGo,7675
|
|
111
|
+
tau/extensions/settings.py,sha256=6LMxVVzsXFYJoxePGZgahy3Wfpa92-m_hCRhZsrQYb8,4602
|
|
112
|
+
tau/hooks/__init__.py,sha256=m4obpUQiv1gRu0TxMnL5vdnmXti0p3l4-ND6fxshRvE,3433
|
|
113
|
+
tau/hooks/engine.py,sha256=KHz1UmlRHnUZI9yxtpwAqEzLKvfcLWKvdfFSqouuGZM,8002
|
|
114
|
+
tau/hooks/inference.py,sha256=YhzyoMR0azmFtnvVVWhtWe2w-FaOOvpmUlVLJcLhMb8,685
|
|
115
|
+
tau/hooks/runtime.py,sha256=778DDp5gJ-Svov01MvoBc2IfkreZC2gzQVXGmSVoQ-k,4986
|
|
116
|
+
tau/hooks/service.py,sha256=iics9upkQfWoj7XyVcGlmBG8CjLOYSZdOGWml-o2QUY,4537
|
|
117
|
+
tau/hooks/session.py,sha256=SbASqB1ZXteohps2Xs1sUOzYBdfMdN5fm9dr1GoS7cQ,3909
|
|
118
|
+
tau/hooks/tui.py,sha256=dhm-wn4qZxwZCkPhvCWQQPNZFdkQ30peahO9Zaz1Ljs,2077
|
|
119
|
+
tau/hooks/types.py,sha256=SxK6Ny08TnMRlmrW-0pL1L_XskrZtqa-sEWPnOhp7AE,2432
|
|
120
|
+
tau/inference/__init__.py,sha256=LRT90uq3iS11-y65M3grOCk2DgPsDsE4KEDocUXm6nI,4110
|
|
121
|
+
tau/inference/types.py,sha256=I_d8SJl1OZyc1ZN-0jJ9kqe1pNjZ_XfLV9iJDs8uOvI,15788
|
|
122
|
+
tau/inference/utils.py,sha256=JxzrY_DQrxymAcj1JUldp3lMVj7wAFGDUZE4gf611OY,10635
|
|
123
|
+
tau/inference/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
+
tau/inference/api/registry.py,sha256=JN3KdkN5Wfza077Z1Tv-dkfZHbsxA8qlxhzS6-6QUFM,3046
|
|
125
|
+
tau/inference/api/audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
|
+
tau/inference/api/audio/base.py,sha256=VPo8DMY8ANmHwLaeNxMClf8Oz7Ef57G54-llSt4a-WM,782
|
|
127
|
+
tau/inference/api/audio/builtins.py,sha256=m-vMRE9LIPNCDCwZixHoCEtTzGzhpeuzFMO5v6_ck_0,970
|
|
128
|
+
tau/inference/api/audio/elevenlabs_audio.py,sha256=Pq3O1TwerJ0_lEd-v6u9jCp5K_5FH0x1yhtTEiqTpdE,6472
|
|
129
|
+
tau/inference/api/audio/gemini_audio.py,sha256=UxehhJ4QlCEyib8moqsrU1gs5ePHWzMsyvSRNALatWI,3324
|
|
130
|
+
tau/inference/api/audio/openai_audio.py,sha256=BhQLazDXhBmGT625kwAOgGiE9N6kvBOSS5Zrw-MQFcY,5496
|
|
131
|
+
tau/inference/api/audio/registry.py,sha256=kn_SUId_LojxXv6Z_Ejo11dj3hPe9qUy_nEIlkwu96E,508
|
|
132
|
+
tau/inference/api/audio/sarvam_audio.py,sha256=nK0NFpbnK_kYsU8s-vDVHT1Po-oE5dzh8zePfNLOu2g,5552
|
|
133
|
+
tau/inference/api/audio/service.py,sha256=GP6E8T2hqpIng1MJozESZiWcfnaxl5IMflHVtfyrfr8,4550
|
|
134
|
+
tau/inference/api/audio/utils.py,sha256=o-x_ZNNFjfH2aZwuM1dyQBH-nC4W7FcHskwkzHTTklM,1832
|
|
135
|
+
tau/inference/api/image/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
+
tau/inference/api/image/base.py,sha256=6dw5QLBugiSbeKTlhP2-hAyzdif6O40534ZdpyZmZfQ,564
|
|
137
|
+
tau/inference/api/image/builtins.py,sha256=m-nR9p7QTziv3h9g4l9m1CFwsv1otWUGCss1iduiP7Y,480
|
|
138
|
+
tau/inference/api/image/gemini_image.py,sha256=3A7FY1dbVjPZXz6GJwh6bF4POaXbX01zamSqhCIqOa8,2670
|
|
139
|
+
tau/inference/api/image/openai_image.py,sha256=UGJJMWWRyJtkOEjyUVx-dBZulA_SsYxj08vBYLmzcgU,3731
|
|
140
|
+
tau/inference/api/image/openrouter.py,sha256=NF-gXJ6ouI3UMXznLKzxM109qZbfxPHo87Uaz5kLgGY,5736
|
|
141
|
+
tau/inference/api/image/registry.py,sha256=URxXLTh2vnF3OBvOvXk6Yn3VNUq6BmQC67vmr81EygI,519
|
|
142
|
+
tau/inference/api/image/service.py,sha256=r9j6k6MuSE6XJ43R9ApAZVgP8JmLQEbqvRsKS7l_W7I,2983
|
|
143
|
+
tau/inference/api/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
tau/inference/api/text/anthropic_claude_code.py,sha256=8D9YBTF4JdRB4ohHR4zh9H8Dxh64qKwji1EJx7xBBNU,10226
|
|
145
|
+
tau/inference/api/text/anthropic_messages.py,sha256=HlwcmP4fSCPZUi7CY8qLJMhGRmqpVtqOdcENZfUEUYA,9073
|
|
146
|
+
tau/inference/api/text/base.py,sha256=Fxsz6077egID4NeovG574kAB2FmQRbV3ZENQT-54gwk,1877
|
|
147
|
+
tau/inference/api/text/builtins.py,sha256=J90HJCMQMQIZ1L5ugqICUSJA3SNnj8-k07AaTaHk2Sk,1309
|
|
148
|
+
tau/inference/api/text/gemini_generate.py,sha256=14lxsCJtz6QBUWxCHsctuO6_dffNR8kZc4xrjJa_euI,10522
|
|
149
|
+
tau/inference/api/text/github_copilot_chat.py,sha256=Dn-hFt030H5O4NVv3MvgxsmduNOlRePXLjbTFJvmmmU,7642
|
|
150
|
+
tau/inference/api/text/google_antigravity.py,sha256=nym8oozHpv1thBAD37D51-Si6C6yIFHn0yJxOyS8DeE,22997
|
|
151
|
+
tau/inference/api/text/mistral_chat.py,sha256=Xn-fvNCPzObnFrj5DJePMc_ZMMxOqpbe-Iny04ptx0I,13522
|
|
152
|
+
tau/inference/api/text/ollama_chat.py,sha256=vTXBv-GwiC7TWH591LPmCItCSoB6uPv26cLoCBovO80,8547
|
|
153
|
+
tau/inference/api/text/openai_codex_responses.py,sha256=MD0-ftgGHJQKtZe06rdFPVL4pdplkSbU9rXw7UP10gs,21281
|
|
154
|
+
tau/inference/api/text/openai_completions.py,sha256=rXsVq3bLt6wt-sk39lLGw1OTl9RaaeMiygsj8mvzbYI,10217
|
|
155
|
+
tau/inference/api/text/openai_responses.py,sha256=cg25TaHxZiqn7sf0CNO20jOy7FjYPfwxi3pCksn0XVA,9848
|
|
156
|
+
tau/inference/api/text/registry.py,sha256=Yav664bONS5n3ZmTvvOXKUiSGv1VXREM5O8iyztfkso,1477
|
|
157
|
+
tau/inference/api/text/service.py,sha256=cvZDrsJi46g2uOxTVSRoaMpQpCpwHqkaG-YsUgBXJsM,13018
|
|
158
|
+
tau/inference/api/text/types.py,sha256=z3YUCLutLigVwBgfIs7R96H-aXV_i6t77OquRytz0os,115
|
|
159
|
+
tau/inference/api/text/utils.py,sha256=OYKudu3uVxteKN4qMy4Z0FHfC_ovGSwb_Lq80Y2Xw1I,9689
|
|
160
|
+
tau/inference/api/video/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
+
tau/inference/api/video/base.py,sha256=yk-oXsj3Alw1fwikrPUsuvSR-nPRP_63YUBIAR19oAs,834
|
|
162
|
+
tau/inference/api/video/builtins.py,sha256=6p4ZPDzQdGbH9KTsXkACdKgz_dmPjvMFd53ZfBTidNU,382
|
|
163
|
+
tau/inference/api/video/fal_video.py,sha256=SJTex9fZX887C_TGtSTJ_IfZa6neLbH45esxigPVZbg,4648
|
|
164
|
+
tau/inference/api/video/openrouter_video.py,sha256=JbIbBdDZ9TS3sQS6rbRw5q4QXQNXREGK9CoCiWIGsmE,5268
|
|
165
|
+
tau/inference/api/video/registry.py,sha256=KBmoY4BQCvTtakLIDQtPTv6fKYr8djz7GsMEVV_f1h4,519
|
|
166
|
+
tau/inference/api/video/service.py,sha256=huCfXG9Cy-OEBQvqado9RajcjwKFsXiZ8_FUmBs_ZSw,3024
|
|
167
|
+
tau/inference/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
|
+
tau/inference/model/registry.py,sha256=0X9WNiC_sKnNc86dNUmX6jnjH4t8lQuguJ2rjeTYs8E,4053
|
|
169
|
+
tau/inference/model/types.py,sha256=hOZZ-eJVA2asP1j3oLN0gBEDEb2gZMlmJMnVirevfpI,2170
|
|
170
|
+
tau/inference/provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
+
tau/inference/provider/registry.py,sha256=NxcpUh2gb880PJUT6ub0NNltD27Lh4SsS6t0csjC1LA,4936
|
|
172
|
+
tau/inference/provider/types.py,sha256=bjDEoI2ARXBYaH0l3-makA7bgGPRU65wDsW8hOx-PX0,3617
|
|
173
|
+
tau/inference/provider/oauth/__init__.py,sha256=DxjjGqS4QxLdJuL7agEP8Ai8cjDlFhQa_QABjEUyqHs,1589
|
|
174
|
+
tau/inference/provider/oauth/anthropic_claude_code.py,sha256=2rGz9EbCuR_hi6jLhZ9Kq0iSsi8J5AhMsWcYAFSgMjo,11389
|
|
175
|
+
tau/inference/provider/oauth/github_copilot.py,sha256=ralsqgBKujqqqTiNt4R56nVQjstY450rxMnbxnwq8Mw,12297
|
|
176
|
+
tau/inference/provider/oauth/google_antigravity.py,sha256=w5H8X0X1qvgAYqTJwKM8tktk7IN07m_54Db92arne04,10238
|
|
177
|
+
tau/inference/provider/oauth/openai_codex.py,sha256=pvPXCQbttEeFObu3kpd7jpJe0oAluaHTp04hDII2Vc4,11534
|
|
178
|
+
tau/inference/provider/oauth/pkce.py,sha256=ZGTkcKndcGibXy8mk53mPbJsqjK2qiUVTJuJFBH_F2M,455
|
|
179
|
+
tau/inference/provider/oauth/types.py,sha256=O6PYMH9HoEitAiyvSpwBAk7bv4_-PWw-DbmfsBy-vm4,1527
|
|
180
|
+
tau/inference/provider/oauth/utils.py,sha256=DhzOqH5A-lWnz6LC1CmFNSC31cV_jUDOH0BXFCJGjt8,5746
|
|
181
|
+
tau/message/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
+
tau/message/types.py,sha256=WsQ84DvbJNFxi3oG-MGHhZNHui98voA8tLAQ0JzsRdE,15506
|
|
183
|
+
tau/message/utils.py,sha256=8l5earcM6l3BjvI7ZhdijsZUxG2DtYqfmd3nIyrrCHw,6118
|
|
184
|
+
tau/packages/__init__.py,sha256=-gSnFEu8EUfciLX9Zf27TsFpvsaOdtEtoHQz9i4slVE,303
|
|
185
|
+
tau/packages/manager.py,sha256=ik7RzeM6SRGetrVrydBiz2LFoMZfngcN2pSqQ1euMvk,7756
|
|
186
|
+
tau/packages/types.py,sha256=ScFzLUOwz-dSoGI4wlyUF0opBbgMl4TSbMAiq6s4O_o,395
|
|
187
|
+
tau/packages/utils.py,sha256=GkuQGldjY-1eMia46MivrAlcCfHrVwvSlCIlkRtLr08,2504
|
|
188
|
+
tau/prompts/expand.py,sha256=BS14zxgpwIxvql-PxIR0I-W0opPFPwDBcT48S9j6Ul8,1840
|
|
189
|
+
tau/prompts/loader.py,sha256=aVy6bgW30Y1DTHDSLGOaaC13f3kz4H4nnnUi8Za15fs,2167
|
|
190
|
+
tau/prompts/registry.py,sha256=rTUPPxxtudLKFu3sweQmXMPXNj83fYB0Ts3ZFkxom18,1350
|
|
191
|
+
tau/prompts/types.py,sha256=lrZd5AkU3lFvk8WEAXlXEqPwBMhVHh5D5gMA8raEhy8,463
|
|
192
|
+
tau/rpc/__init__.py,sha256=pTrflWsjVuvyBvcq4UJSXDPuceFI0zX2XA08Y73MMF4,170
|
|
193
|
+
tau/rpc/mode.py,sha256=6WovNM0bYV3L14SPMEliN5z26Ym-GWm3obB2fiametc,35058
|
|
194
|
+
tau/rpc/types.py,sha256=3gC9fe7eGGpNWkenu1F7lmwvb9FNNHiMpS6nprwJY3I,6790
|
|
195
|
+
tau/runtime/service.py,sha256=Slsb0xTv8bcDagsBGj-9xGf41BgLMz1whPAa0WzFyVc,31891
|
|
196
|
+
tau/runtime/types.py,sha256=DcPHDdGUWqX4l0ue2kzVdfTyGuBX1cZIpFr2S4VUS7Y,13735
|
|
197
|
+
tau/session/branch_summarization.py,sha256=a1ebwPMN0hje02oCUhg8L-HI-yXD0pdU_UUe4iIHi50,10603
|
|
198
|
+
tau/session/compaction.py,sha256=OKdHBmk6LhsMb5Bj0rJ1OZ_CcuUqvDQGq-0iAgv7KvQ,22459
|
|
199
|
+
tau/session/manager.py,sha256=4yjTGOHemHs8qH6-59LQEplBEOoeDrb4puGz0y5q3Zc,25204
|
|
200
|
+
tau/session/types.py,sha256=8X9tDjRJWzpXxjlH8pqZWQD64_8ePar72gdtUTD_FRY,4835
|
|
201
|
+
tau/session/utils.py,sha256=Lkc24lWA8ebT1JsFI7-sJrkCUZuuw-lGx9UEzwn3bzI,7726
|
|
202
|
+
tau/settings/manager.py,sha256=bGpAUqmjShXR9mKxOk1eeFxRiDKoGtBTnX52rMFOaHg,51005
|
|
203
|
+
tau/settings/paths.py,sha256=VSn9W36KImN_R2q3KERuWWMuhB3SwI7xnIHTV1MPGFg,4427
|
|
204
|
+
tau/settings/storage.py,sha256=K7KKq-C3qiXvW-esXjmyszxZMrK00iX9x7IXdfYYxvY,2518
|
|
205
|
+
tau/settings/types.py,sha256=F9J6PA8461i260wJ8BcAnUzA4-5gqflnXJUvZLOwjzU,6129
|
|
206
|
+
tau/settings/utils.py,sha256=74wFCJKHOt3em9RmsaAeaM4UDZF8evDC14wrhPgdTH0,760
|
|
207
|
+
tau/skills/loader.py,sha256=RPLnf9KGk8Q5x9XEB7JPuWrH1mtI1VxJAD7adMCSZjI,2912
|
|
208
|
+
tau/skills/registry.py,sha256=3V9Tm9g4JDTezYDOMVxcouuSh64qlVp_q2i-Jdfi1gw,2455
|
|
209
|
+
tau/skills/types.py,sha256=XzC8Wx6oU2aat342SrQj1fL0FNo8XN-8zw1Myrxz4T0,458
|
|
210
|
+
tau/themes/loader.py,sha256=fUamG9i7THv1lz1_cAgYL97aGd2HgK56WVwr0fol0wQ,9403
|
|
211
|
+
tau/themes/registry.py,sha256=k9mSB9L6ZAAUgw1T59mVQjUjMmLnxd4X_KvoDse3NWY,3673
|
|
212
|
+
tau/themes/types.py,sha256=ZoEUNwxvKeyMFXcfsXgisYImUYHaAKTnwEf9BdG0KzA,412
|
|
213
|
+
tau/tool/__init__.py,sha256=Z2PkkWsyTBOcZF40gAEpz0NeQjmLW6m3fJvcb4AAI-E,71
|
|
214
|
+
tau/tool/registry.py,sha256=vEfxxQtXIdxBe33IjrNCM8eQjZvwaIjuN8UFFEKf8cc,4808
|
|
215
|
+
tau/tool/render.py,sha256=C_iWherN--iMpaI0GlXWHSAqyvNqxyCs6W2ko27une8,724
|
|
216
|
+
tau/tool/types.py,sha256=tZbgNQmBtMbiZ6vJtsJcQV4CtTKbWzfN27UcJaGUK_Y,8005
|
|
217
|
+
tau/trust/__init__.py,sha256=z5TuRtjogZtSWeijVzc_GIdMvkdDtwcAO7E0Z4NrM9M,356
|
|
218
|
+
tau/trust/manager.py,sha256=kVx_Pk4j8TsiSY-3Wkn-IaFhZJMFn7-6W3uGbOJUGMM,3254
|
|
219
|
+
tau/trust/types.py,sha256=8jKdvqQqogZLn1i_wsYzqdh5KwvjkfwTFy4UQM8GrkI,425
|
|
220
|
+
tau/trust/utils.py,sha256=XGCTRU__WFOMauJEFW1l-ky9UUsGj1F7inmkJ56hL58,2361
|
|
221
|
+
tau/tui/__init__.py,sha256=wp8dg3R5iRk_hDmtV1Kv76qCdUnxxuuiJjRgxVUMn-o,1221
|
|
222
|
+
tau/tui/agent_hooks.py,sha256=MjruEHJsF85hVvz46WAWNv0Jeo0xz67NAXS4_cezY9I,15274
|
|
223
|
+
tau/tui/ansi.py,sha256=4h3WpUU_2rFjJ41VRl-ZZPqNeEfNzuRVB-RA_QyOtkQ,10715
|
|
224
|
+
tau/tui/app.py,sha256=Qb31LgbBFjabOZ45MaOlDPYg21a4g5kloFAREPm3RXU,22712
|
|
225
|
+
tau/tui/autocomplete.py,sha256=BfxFykh95LHNv9Hcp53N1HZ4ph7ockW76M2UZ9EbPfU,1060
|
|
226
|
+
tau/tui/capabilities.py,sha256=IriiVmcNK7IOX0IeipOWv5Qcl-F7lCUR7rSL49Yym1c,3812
|
|
227
|
+
tau/tui/component.py,sha256=fNal4O2uQ-_Wk4GdbzT5-tjmGPSMgTkU6FYSHbCFWW4,8023
|
|
228
|
+
tau/tui/diff.py,sha256=kDTpNxs34w8bKZEmF6EsVXgrUFpdmv1fH855YKzsrOU,3994
|
|
229
|
+
tau/tui/fuzzy.py,sha256=g1iyEzknez7ETLPqgP3LUV290wr__aNiu5ACUYg1maA,2757
|
|
230
|
+
tau/tui/input.py,sha256=qpsn8y1mrBzbrOePIYwpC0mZ8mBrRLdLzXVk1YpiWVY,17796
|
|
231
|
+
tau/tui/input_handler.py,sha256=WkXvbE4q_cv9AfbN-eLOubpdC6PT9JgO_wvZct3kDwE,29161
|
|
232
|
+
tau/tui/keybindings.py,sha256=_2P7heAuozjRVnZn6a2jNTUHWbGqNQv2wD6Tbqal7Ko,3151
|
|
233
|
+
tau/tui/markdown.py,sha256=H-bLt77YdEgkeK7SChGpTp2wRbQk4ercTwhW7NaA238,12376
|
|
234
|
+
tau/tui/message_renderers.py,sha256=5Ptz97V8nzJ6okJQBja42TuRMEoF2hRAmhQGjekyfZ4,827
|
|
235
|
+
tau/tui/overlay.py,sha256=zEOz00kHGne7D-TH3EYUCUi4nljDcUpXjJ5xiCZbpoQ,13196
|
|
236
|
+
tau/tui/renderer.py,sha256=gicLDSy2E-UVYf05X-8Q-a6hbzwWAcStpgWvFn5WUFQ,14688
|
|
237
|
+
tau/tui/terminal.py,sha256=37Xf0KWVOlAhUjYBXVQR3Oi8eyAHRh6s7k2LYjr1QPY,18392
|
|
238
|
+
tau/tui/theme.py,sha256=1w3-qLVpHoRHsJ_NCSNxnhPXSv7AiZgZDPouNsD_oW4,6863
|
|
239
|
+
tau/tui/tui.py,sha256=Q4MaSNBlg_GC7bpMsoPmSrhbRqeek48cZIG5behdMhY,21334
|
|
240
|
+
tau/tui/ui_context.py,sha256=vfVPvNEgmnFceLew5d4T--KeHDkTcMFA1NiNte4hjdc,27272
|
|
241
|
+
tau/tui/utils.py,sha256=3vuHHLt3Re5UvpZQCNIv9XwmIDDs4psDAfVC952acPw,548
|
|
242
|
+
tau/tui/commands/__init__.py,sha256=IR_onyWt306aB-sVe_7sO_mEPFby9aQty1iivGh0BiY,82
|
|
243
|
+
tau/tui/commands/appearance.py,sha256=nauChv16VmQN8rSGvL-Aa2CuZYA-opVn98H08ODzUT0,21065
|
|
244
|
+
tau/tui/commands/auth.py,sha256=BW2xnZaY9rIth_j71TWZOa4z1OgSrTY5PItlgkgj-Rc,8787
|
|
245
|
+
tau/tui/commands/context.py,sha256=IUZJOuS7_GnUWg4zBWTMW4Zn28bwZ-nNgVGtG5RBIcU,1258
|
|
246
|
+
tau/tui/commands/misc.py,sha256=Mo3hBD_x7SBNOr4BcvFmhPX9gznfhD6R_dbtHu5zSMk,3131
|
|
247
|
+
tau/tui/commands/model.py,sha256=CDcptZiBU_2kHZ4OX26ukHhWLqz-PdC1ABYWAPLxWSw,4197
|
|
248
|
+
tau/tui/commands/session.py,sha256=c3Wqp2_s7cq1KaLuElMFM_dYMyHl2JcTGYXRXifKNZ4,17551
|
|
249
|
+
tau/tui/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
|
+
tau/tui/components/autocomplete_manager.py,sha256=6esxgo7QhY88EFYnpPl1TPAAJKKPNUKHrBhbJUQjYP4,10381
|
|
251
|
+
tau/tui/components/autocomplete_picker.py,sha256=YqKUyozIw-e_3DsNbRcPKgKQjtNyVKTOR3Pb8LP0nuU,4642
|
|
252
|
+
tau/tui/components/box.py,sha256=D2RCbfP6RrrSG3C9JGJBsk-IlLZ79VliZidHFEtUxTk,2799
|
|
253
|
+
tau/tui/components/command_palette.py,sha256=VbcXG7FwWEfUvhRKJu1La9VGS0_TrZcQsbeM2-zAxhw,4663
|
|
254
|
+
tau/tui/components/dynamic_border.py,sha256=c04QCs87S9HeO0LpxqWVALVMeZ7VpIsrfQ86ecO08pM,548
|
|
255
|
+
tau/tui/components/file_picker.py,sha256=aLJrG-JflAvqt-n1OrvJR2gWx34VCqrRJHjAJo0LQ7Q,7470
|
|
256
|
+
tau/tui/components/image.py,sha256=IwY3TJXRz3aZW2Q_xob5UGgZFX6J2tmglQSp-TOAMy0,5932
|
|
257
|
+
tau/tui/components/inline_selector.py,sha256=p2zHiz8qCoe2YxLgaqLfoYk0hXEkSav7SkofqYoHq3A,2750
|
|
258
|
+
tau/tui/components/layout.py,sha256=AeN4BgFYDrFHZ9w0LtjQJZsmdTueWyJefTGBmx_GlUU,51086
|
|
259
|
+
tau/tui/components/message_list.py,sha256=TvWU9Wp9qmLUXjF7jtxNrpULg4cx52xqSC_jzCnixFA,28309
|
|
260
|
+
tau/tui/components/modal.py,sha256=aL9ZwDJ8PtV91BJz6_HKzZ9rMw2gjqZO2iJB42X2zOM,3256
|
|
261
|
+
tau/tui/components/model_palette.py,sha256=sP6yg37aleElZ0Qy2x5YNa03uiXN_vknlETbawTBc-o,7345
|
|
262
|
+
tau/tui/components/picker_overlay.py,sha256=PIa8qyNI6S0pV_Ihn6h-Xn4jahbC011wHmZtxDoM8x8,6837
|
|
263
|
+
tau/tui/components/prompt_overlay.py,sha256=zEc8Ugm5MranlteK6xaZTteR-iArxxqV8VeE-hvYnn4,8480
|
|
264
|
+
tau/tui/components/resume_modal.py,sha256=ouff79GjhKxtQRRCwueexXksLEhVXc56qyycqVkxPEg,13540
|
|
265
|
+
tau/tui/components/select_list.py,sha256=rjhNhBLbSvJgJ70XvTTrbBycHQ8Og6ZzJz_4BQuRdlA,7201
|
|
266
|
+
tau/tui/components/settings_modal.py,sha256=TMDkCjkC5aBJ_iYvfRtNLTyfWYb3dT-bga8vpb8pEf0,10443
|
|
267
|
+
tau/tui/components/settings_schema.py,sha256=c1ykaOQX-mR-wz7N4E0DtuGSfZvWNsrwfuLXN4vc6KI,8193
|
|
268
|
+
tau/tui/components/spinner.py,sha256=R9lDAs3K6B-3v3yzFgWLvG-50ZYDxWb_B97qriMs7ew,3989
|
|
269
|
+
tau/tui/components/text_input.py,sha256=bE07_cSrMV0syS0o2m2zGKDUvGejVQJcZv17GSt4vrk,14195
|
|
270
|
+
tau/tui/components/text_prompt.py,sha256=0_qi_P6BdUSxQDOCxAtg6WScUlDC4fGc3cWCaQpnAWw,2581
|
|
271
|
+
tau/tui/components/tree_select_list.py,sha256=sjNOdHLZMtxt5KnFESTqa5ulXNzn7EQC9ai_FmNxBjw,22249
|
|
272
|
+
tau/tui/components/trust_screen.py,sha256=92ezOXKbVEwg5vk2MSls2G9O3_jc7V6lkYiBR7VhpJw,3019
|
|
273
|
+
tau/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
tau/utils/http_proxy.py,sha256=aUTFMZISX-wXqPWvDFCDwvJqJIjP7-RxSnfeWevigec,7036
|
|
275
|
+
tau/utils/image_processing.py,sha256=M3w3EZpt0hvxaFPQAwJ7jX12OWdf_9ueYen1CK9tmNQ,5541
|
|
276
|
+
tau/utils/secrets.py,sha256=JMS_b8LXS3FXREisUW2DGfPSAFm3QuwU6LYmQQkfnNY,1996
|
|
277
|
+
tau/utils/version_check.py,sha256=sIqGhvpe32o8h4rl3h5piBhB0EggiwdU7IKcYWdN6yI,1851
|
|
278
|
+
tau_coding_agent-0.1.0.dist-info/licenses/LICENSE,sha256=AswP-O4caYqGaKYEEclSzw0Ck_w4fg6rtIOROZFT5rk,1070
|
|
279
|
+
tau_coding_agent-0.1.0.dist-info/METADATA,sha256=Eui6fqAXCxSRZvuZreJV1HKo3Qff25bRcy_B6mG2pxw,6517
|
|
280
|
+
tau_coding_agent-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
281
|
+
tau_coding_agent-0.1.0.dist-info/entry_points.txt,sha256=wNnhr--jKl-cxG6hduxowz07hB1aa8MDf5jLS0BMLkI,45
|
|
282
|
+
tau_coding_agent-0.1.0.dist-info/top_level.txt,sha256=RowWsBsqvizLQNP7dtpp6IIGsEbAQ-0TkRJ0g7KoNoM,4
|
|
283
|
+
tau_coding_agent-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jeomon George
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tau
|