vtx-coding-agent 0.1.1__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.
- vtx/__init__.py +63 -0
- vtx/async_utils.py +40 -0
- vtx/builtin_skills/github/SKILL.md +139 -0
- vtx/builtin_skills/init/SKILL.md +74 -0
- vtx/builtin_skills/review/SKILL.md +73 -0
- vtx/builtin_skills/skill-builder/SKILL.md +133 -0
- vtx/cli.py +90 -0
- vtx/config.py +741 -0
- vtx/context/__init__.py +15 -0
- vtx/context/_xml.py +8 -0
- vtx/context/agent_mds.py +128 -0
- vtx/context/git.py +64 -0
- vtx/context/loader.py +41 -0
- vtx/context/skills.py +423 -0
- vtx/core/__init__.py +47 -0
- vtx/core/compaction.py +89 -0
- vtx/core/errors.py +17 -0
- vtx/core/handoff.py +51 -0
- vtx/core/scratchpad.py +54 -0
- vtx/core/types.py +197 -0
- vtx/defaults/__init__.py +0 -0
- vtx/defaults/config.yml +53 -0
- vtx/diff_display.py +12 -0
- vtx/events.py +224 -0
- vtx/gh_cli.py +82 -0
- vtx/git_branch.py +90 -0
- vtx/headless.py +127 -0
- vtx/llm/__init__.py +93 -0
- vtx/llm/base.py +217 -0
- vtx/llm/context_length.py +150 -0
- vtx/llm/dynamic_models.py +735 -0
- vtx/llm/model_fetcher.py +279 -0
- vtx/llm/models.py +78 -0
- vtx/llm/oauth/__init__.py +59 -0
- vtx/llm/oauth/copilot.py +358 -0
- vtx/llm/oauth/dynamic.py +236 -0
- vtx/llm/oauth/openai.py +400 -0
- vtx/llm/phase_parser.py +270 -0
- vtx/llm/provider.yaml +280 -0
- vtx/llm/provider_catalog.py +230 -0
- vtx/llm/providers/__init__.py +45 -0
- vtx/llm/providers/anthropic_sdk.py +256 -0
- vtx/llm/providers/mock.py +249 -0
- vtx/llm/providers/openai_sdk.py +246 -0
- vtx/llm/providers/sanitize.py +14 -0
- vtx/llm/sdk/__init__.py +13 -0
- vtx/llm/sdk/anthropic.py +382 -0
- vtx/llm/sdk/base.py +82 -0
- vtx/llm/sdk/openai.py +344 -0
- vtx/llm/tool_parser.py +161 -0
- vtx/loop.py +272 -0
- vtx/notify.py +109 -0
- vtx/permissions.py +114 -0
- vtx/prompts/__init__.py +45 -0
- vtx/prompts/builder.py +86 -0
- vtx/prompts/env.py +58 -0
- vtx/prompts/identity.py +166 -0
- vtx/prompts/tooling.py +36 -0
- vtx/py.typed +0 -0
- vtx/runtime.py +580 -0
- vtx/session.py +868 -0
- vtx/sounds/completion.wav +0 -0
- vtx/sounds/error.wav +0 -0
- vtx/sounds/permission.wav +0 -0
- vtx/themes.py +1104 -0
- vtx/tools/__init__.py +68 -0
- vtx/tools/_read_image.py +106 -0
- vtx/tools/_tool_utils.py +90 -0
- vtx/tools/base.py +36 -0
- vtx/tools/bash.py +371 -0
- vtx/tools/edit.py +261 -0
- vtx/tools/find.py +132 -0
- vtx/tools/read.py +238 -0
- vtx/tools/skill.py +278 -0
- vtx/tools/web.py +238 -0
- vtx/tools/write.py +88 -0
- vtx/tools_manager.py +216 -0
- vtx/turn.py +789 -0
- vtx/ui/__init__.py +0 -0
- vtx/ui/agent_runner.py +417 -0
- vtx/ui/app.py +665 -0
- vtx/ui/app_protocol.py +29 -0
- vtx/ui/autocomplete.py +440 -0
- vtx/ui/blocks.py +735 -0
- vtx/ui/chat.py +613 -0
- vtx/ui/clipboard.py +59 -0
- vtx/ui/commands/__init__.py +100 -0
- vtx/ui/commands/auth.py +306 -0
- vtx/ui/commands/base.py +122 -0
- vtx/ui/commands/models.py +144 -0
- vtx/ui/commands/sessions.py +388 -0
- vtx/ui/commands/settings.py +286 -0
- vtx/ui/completion_ui.py +313 -0
- vtx/ui/export.py +703 -0
- vtx/ui/floating_list.py +370 -0
- vtx/ui/formatting.py +287 -0
- vtx/ui/input.py +760 -0
- vtx/ui/latex.py +349 -0
- vtx/ui/launch.py +108 -0
- vtx/ui/path_complete.py +228 -0
- vtx/ui/prompt_history.py +102 -0
- vtx/ui/queue_ui.py +141 -0
- vtx/ui/selection_mode.py +18 -0
- vtx/ui/session_ui.py +235 -0
- vtx/ui/startup.py +124 -0
- vtx/ui/styles.py +327 -0
- vtx/ui/tool_output.py +34 -0
- vtx/ui/tree.py +437 -0
- vtx/ui/welcome.py +51 -0
- vtx/ui/widgets.py +558 -0
- vtx/update_check.py +49 -0
- vtx/version.py +22 -0
- vtx_coding_agent-0.1.1.dist-info/METADATA +259 -0
- vtx_coding_agent-0.1.1.dist-info/RECORD +117 -0
- vtx_coding_agent-0.1.1.dist-info/WHEEL +4 -0
- vtx_coding_agent-0.1.1.dist-info/entry_points.txt +2 -0
- vtx_coding_agent-0.1.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vtx-coding-agent
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Minimalist coding agent harness with a Textual TUI and headless CLI. <1k-token system prompt, 18+ LLM providers, AGENTS.md + skills context, session tree, prompt/auto permissions.
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Requires-Dist: aiofiles>=25.1.0
|
|
8
|
+
Requires-Dist: aiohttp>=3.13.3
|
|
9
|
+
Requires-Dist: anthropic>=0.79.0
|
|
10
|
+
Requires-Dist: curl-cffi>=0.15.0
|
|
11
|
+
Requires-Dist: ddgs>=9.0.0
|
|
12
|
+
Requires-Dist: html-to-markdown<3.4.0,>=3.3.0
|
|
13
|
+
Requires-Dist: lxml-html-clean>=0.4.3
|
|
14
|
+
Requires-Dist: openai>=2.21.0
|
|
15
|
+
Requires-Dist: pillow>=12.1.1
|
|
16
|
+
Requires-Dist: pydantic>=2.12.5
|
|
17
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
18
|
+
Requires-Dist: readability-lxml>=0.8.4
|
|
19
|
+
Requires-Dist: rich>=14.3.2
|
|
20
|
+
Requires-Dist: textual>=8.0.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
<pre align="center">
|
|
24
|
+
██╗ ██╗████████╗██╗ ██╗
|
|
25
|
+
██║ ██║╚══██╔══╝╚██╗██╔╝
|
|
26
|
+
██║ ██║ ██║ ╚███╔╝
|
|
27
|
+
╚██╗ ██╔╝ ██║ ██╔██╗
|
|
28
|
+
╚████╔╝ ██║ ██╔╝ ██╗
|
|
29
|
+
╚═══╝ ╚═╝ ╚═╝ ╚═╝
|
|
30
|
+
</pre>
|
|
31
|
+
<p align="center"><b>Minimalist & Modular Coding Agent</b></p>
|
|
32
|
+
<p align="center">
|
|
33
|
+
<a href="https://pypi.org/project/vtx-coding-agent/"><img alt="PyPI" src="https://img.shields.io/pypi/v/vtx-coding-agent?style=flat-square" /></a>
|
|
34
|
+
<a href="https://www.python.org/downloads/release/python-3120/"><img alt="Python" src="https://img.shields.io/badge/python-3.12%2B-blue?style=flat-square" /></a>
|
|
35
|
+
<a href="LICENSE"><img alt="License" src="https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square" /></a>
|
|
36
|
+
</p>
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
**Vtx** is a minimalist, developer-first coding agent harness that delivers maximum capability with minimum overhead.
|
|
41
|
+
|
|
42
|
+
Unlike heavy agentic frameworks that load thousands of hidden tokens, Vtx operates on a default system prompt of **under 270 tokens**. Including full tool descriptions and parameter schemas, the entire runtime environment consumes only **~1,000 tokens**.
|
|
43
|
+
|
|
44
|
+
By keeping the core prompt small, Vtx leaves the model's context window open for what matters most: **your code, your project files, and your task context**.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## ⚡ Key Features
|
|
49
|
+
|
|
50
|
+
- **TUI & CLI Interfaces**: Work inside a keyboard-driven Terminal User Interface (TUI) powered by Textual, or run one-off prompts headlessly via the CLI.
|
|
51
|
+
- **Surgical Tools**: Armed with 6 core local files/terminal tools plus 2 optional web search & fetch tools.
|
|
52
|
+
- **Dynamic Context Layering**: Automatically loads repository-specific guidelines from `AGENTS.md` and triggers custom instructions via modular `Skills`.
|
|
53
|
+
- **Flexible Model Support**: Compatible with Hosted APIs (OpenAI, Anthropic, Azure, DeepSeek, ZhiPu) as well as unauthenticated local endpoints (Ollama, llama-server).
|
|
54
|
+
- **Collapsible Thinking Blocks**: TUI elegantly collapses finalized thinking chains to keep your workspace readable.
|
|
55
|
+
- **Secure Sandboxed Control**: Supports both `prompt` (confirmation before mutating changes) and `auto` permission modes.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 🚀 Quick Start
|
|
60
|
+
|
|
61
|
+
### Install
|
|
62
|
+
Installs Vtx as a global CLI tool using `uv`:
|
|
63
|
+
```bash
|
|
64
|
+
uv tool install vtx-coding-agent
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Run
|
|
68
|
+
Launch the interactive Terminal UI:
|
|
69
|
+
```bash
|
|
70
|
+
vtx
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## 📖 CLI Usage
|
|
76
|
+
|
|
77
|
+
```text
|
|
78
|
+
usage: vtx [-h] [--model MODEL]
|
|
79
|
+
[--provider {airouter,azure-ai-foundry,deepseek,github-copilot,kilo,openai,openai-codex,openai-responses,opencode,tokenrouter,zhipu}]
|
|
80
|
+
[--prompt [PROMPT]] [--api-key API_KEY] [--base-url BASE_URL]
|
|
81
|
+
[--openai-compat-auth {auto,required,none}]
|
|
82
|
+
[--anthropic-compat-auth {auto,required,none}]
|
|
83
|
+
[--insecure-skip-verify] [--continue] [--resume RESUME_SESSION]
|
|
84
|
+
[--version]
|
|
85
|
+
|
|
86
|
+
options:
|
|
87
|
+
-h, --help show this help message and exit
|
|
88
|
+
--model, -m MODEL Model to use
|
|
89
|
+
--provider PROVIDER Provider to use
|
|
90
|
+
--prompt, -p [PROMPT] Run a single prompt non-interactively, then exit (omit
|
|
91
|
+
the value or pipe stdin to read the prompt from stdin)
|
|
92
|
+
--api-key, -k API_KEY API key to use
|
|
93
|
+
--base-url, -u BASE_URL Base URL for API endpoints
|
|
94
|
+
--insecure-skip-verify Skip TLS verification (useful for local self-signed certs)
|
|
95
|
+
--continue, -c Resume the most recent session
|
|
96
|
+
--resume, -r ID Resume a specific session by ID
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Common Examples
|
|
100
|
+
```bash
|
|
101
|
+
# Explicitly choose provider and model
|
|
102
|
+
vtx --provider openai -m gpt-4o
|
|
103
|
+
|
|
104
|
+
# Resume your last active session
|
|
105
|
+
vtx -c
|
|
106
|
+
|
|
107
|
+
# Run a single task non-interactively (headless mode)
|
|
108
|
+
vtx -p "Write unit tests for src/vtx/utils.py"
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## 🛠️ The Toolset
|
|
114
|
+
|
|
115
|
+
Vtx equips the model with a compact and predictable set of tools:
|
|
116
|
+
|
|
117
|
+
### Core Tools (Enabled by default)
|
|
118
|
+
| Tool | Action | Description |
|
|
119
|
+
|---|---|---|
|
|
120
|
+
| `read` | Pagination & Image support | Read file contents efficiently without wasting tokens. |
|
|
121
|
+
| `edit` | Search-and-replace block | Apply surgical, precise edits to existing code files. |
|
|
122
|
+
| `write` | Write full contents | Create new files or perform complete rewrites. |
|
|
123
|
+
| `bash` | Command execution | Run tests, build steps, git commands, and scripts. |
|
|
124
|
+
| `find` | Glob file discovery | Locate files using project-aware `.gitignore` rules. |
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## ⚙️ Configuration
|
|
129
|
+
|
|
130
|
+
Vtx stores its settings in a single YAML file:
|
|
131
|
+
```text
|
|
132
|
+
~/.vtx/config.yml
|
|
133
|
+
```
|
|
134
|
+
It is generated automatically on the first run. The default config with detailed inline comments is available at [`src/vtx/defaults/config.yml`](src/vtx/defaults/config.yml).
|
|
135
|
+
|
|
136
|
+
### Configuration Schema
|
|
137
|
+
```yaml
|
|
138
|
+
meta:
|
|
139
|
+
config_version: 6
|
|
140
|
+
|
|
141
|
+
llm:
|
|
142
|
+
default_provider: "openai" # openai, deepseek, github-copilot, etc.
|
|
143
|
+
default_model: "gpt-4o"
|
|
144
|
+
default_base_url: "" # override for local endpoints (e.g., http://localhost:11434/v1)
|
|
145
|
+
default_thinking_level: "low" # none, minimal, low, medium, high, xhigh
|
|
146
|
+
tool_call_idle_timeout_seconds: 180
|
|
147
|
+
request_timeout_seconds: 600
|
|
148
|
+
|
|
149
|
+
auth:
|
|
150
|
+
openai_compat: "auto" # auto, required, none
|
|
151
|
+
anthropic_compat: "auto"
|
|
152
|
+
|
|
153
|
+
tls:
|
|
154
|
+
insecure_skip_verify: false
|
|
155
|
+
|
|
156
|
+
system_prompt:
|
|
157
|
+
git_context: true
|
|
158
|
+
content: "" # leave blank to use the built-in system prompt
|
|
159
|
+
|
|
160
|
+
compaction:
|
|
161
|
+
on_overflow: "continue" # continue (automatic compaction) or pause
|
|
162
|
+
buffer_tokens: 20000
|
|
163
|
+
|
|
164
|
+
agent:
|
|
165
|
+
max_turns: 500
|
|
166
|
+
default_context_window: 200000
|
|
167
|
+
|
|
168
|
+
ui:
|
|
169
|
+
theme: "gruvbox-dark"
|
|
170
|
+
collapse_thinking: true
|
|
171
|
+
thinking_lines: "1"
|
|
172
|
+
colored_tool_badge: true
|
|
173
|
+
show_welcome_shortcuts: true
|
|
174
|
+
hidden_models: []
|
|
175
|
+
|
|
176
|
+
permissions:
|
|
177
|
+
mode: "prompt" # prompt (ask before modifying files/running bash) or auto (unrestricted)
|
|
178
|
+
|
|
179
|
+
notifications:
|
|
180
|
+
enabled: true
|
|
181
|
+
volume: 0.5
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## 💻 Terminal UI (TUI) Interactions
|
|
187
|
+
|
|
188
|
+
Vtx features a keyboard-friendly interactive interface:
|
|
189
|
+
|
|
190
|
+
### Slash Commands
|
|
191
|
+
Type `/` at the start of the input box to access core commands:
|
|
192
|
+
- `/new` — Start a fresh conversation and reload project context.
|
|
193
|
+
- `/resume` — Interactive session history browser.
|
|
194
|
+
- `/model` — Switch models and providers on the fly.
|
|
195
|
+
- `/session` — Display active session statistics and token usage.
|
|
196
|
+
- `/compact` — Trigger manual context compaction.
|
|
197
|
+
- `/handoff <query>` — Summarize the current session and start a new, clean session with that context.
|
|
198
|
+
- `/themes` — Switch between 24+ built-in color schemes (e.g., `dracula`, `tokyo-night`, `catppuccin`).
|
|
199
|
+
- `/permissions` — Toggle permission mode (`prompt` vs `auto`).
|
|
200
|
+
- `/export` — Export the current chat transcript to a beautiful standalone HTML file.
|
|
201
|
+
|
|
202
|
+
### Direct Shell Execution
|
|
203
|
+
Run terminal commands directly from the input box:
|
|
204
|
+
- `!ls -la` — Execute a command and view output in the chat window.
|
|
205
|
+
- `!!pytest` — Execute a command, display output, and send that output to the LLM for immediate analysis.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## 📝 Layering Context: AGENTS.md & Skills
|
|
210
|
+
|
|
211
|
+
### AGENTS.md / CLAUDE.md
|
|
212
|
+
Vtx discovers instructions dynamically from your environment. It checks files named `AGENTS.md` or `CLAUDE.md` in:
|
|
213
|
+
1. Your global configuration folder (`~/.vtx/AGENTS.md`)
|
|
214
|
+
2. Ancestor folders from the git root down to the current working directory.
|
|
215
|
+
|
|
216
|
+
Use this file to specify project guidelines, code styling preferences, or test runner commands.
|
|
217
|
+
|
|
218
|
+
### Custom Skills
|
|
219
|
+
Skills are reusable instruction directories loaded from `.agents/skills/` (project-level) or `~/.agents/skills/` (global). Each skill contains a `SKILL.md` file:
|
|
220
|
+
|
|
221
|
+
```markdown
|
|
222
|
+
---
|
|
223
|
+
name: deploy-project
|
|
224
|
+
description: Instructions on how to deploy this project
|
|
225
|
+
register_cmd: true
|
|
226
|
+
cmd_info: Run project deployment steps
|
|
227
|
+
---
|
|
228
|
+
|
|
229
|
+
# Deploy Project
|
|
230
|
+
To deploy, the agent should run:
|
|
231
|
+
1. `uv run python build.py`
|
|
232
|
+
2. `git push origin main`
|
|
233
|
+
```
|
|
234
|
+
Setting `register_cmd: true` registers the skill as a slash command (`/deploy-project`) in the TUI command menu.
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
## 📚 Reference Docs
|
|
239
|
+
|
|
240
|
+
For deeper information, consult the topic-specific files in the [`docs/`](docs/) directory:
|
|
241
|
+
|
|
242
|
+
- [docs/configuration.md](docs/configuration.md) — Reference for all config keys, schemas, and migrations.
|
|
243
|
+
- [docs/providers.md](docs/providers.md) — Authentication setup, environment keys, and dynamic LLM gateways.
|
|
244
|
+
- [docs/tools.md](docs/tools.md) — Complete tool parameter specs, mutating flags, and pre-requisites.
|
|
245
|
+
- [docs/permissions.md](docs/permissions.md) — Safe-command lists and user approval heuristics.
|
|
246
|
+
- [docs/sessions.md](docs/sessions.md) — Session JSONL format, history files, handoff guides, and compaction.
|
|
247
|
+
- [docs/skills.md](docs/skills.md) — Authoring custom Skills, argument parsing, and command mapping.
|
|
248
|
+
- [docs/theming.md](docs/theming.md) — Catalog of the 24+ built-in themes and color tokens.
|
|
249
|
+
- [docs/headless.md](docs/headless.md) — Non-interactive execution, piped input streams, and exit codes.
|
|
250
|
+
- [docs/storage-layout.md](docs/storage-layout.md) — Complete directory mapping of files on disk.
|
|
251
|
+
- [docs/local-models.md](docs/local-models.md) — Running Vtx against local models (llama.cpp, Ollama).
|
|
252
|
+
- [docs/architecture.md](docs/architecture.md) — Codebase architecture map, message structures, and runtime loop.
|
|
253
|
+
- [docs/development.md](docs/development.md) — Building, testing, linting, and maintaining Vtx.
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## 📄 License
|
|
258
|
+
|
|
259
|
+
Apache License 2.0
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
vtx/__init__.py,sha256=7hY_J2SeErtPmwoU4YZWGfWLKGk6Iungm5-rdXTFKn0,1545
|
|
2
|
+
vtx/async_utils.py,sha256=BfulWTMCrAMs5L2O6F7gpmIM4T3IYPtPSaPuGkmTIzs,1044
|
|
3
|
+
vtx/cli.py,sha256=-CliqdnDNrNUnENoh8TfEucN7ZMMBT3VW4tw0Xxfc90,2728
|
|
4
|
+
vtx/config.py,sha256=P6tICPVZ9TzCsL5JkAC5yqCbJj4ftuXRvqjKFLi2I5Y,22534
|
|
5
|
+
vtx/diff_display.py,sha256=PeM0gHFrs6jWTBUBDNYlGHK2Id1cjnfiZkS0GUfrxX8,510
|
|
6
|
+
vtx/events.py,sha256=xX0OtXe-2xINUTqsDv_CEiZcgJ2jBB3b4lgwL7F3KOU,5656
|
|
7
|
+
vtx/gh_cli.py,sha256=9hijSSxgSyce-H7RZeFqKLSn3WQrPOajC5juTP_R89Y,1920
|
|
8
|
+
vtx/git_branch.py,sha256=pbxVLmjk_lXYtpNCoeHxyvz-od-f-f0Jzs_eW1iCpfk,3137
|
|
9
|
+
vtx/headless.py,sha256=3F94vao-EOqAfKceRvePWNMHp8jVVfvevUMX7nUIYFs,4321
|
|
10
|
+
vtx/loop.py,sha256=VDoRQhA5s99stnI33A0sn9G1odBPnl21gIfs9FcVWt8,9912
|
|
11
|
+
vtx/notify.py,sha256=JbpkDPSB9W9IvN8lzTXQG-_n8T30t8pYgwr-KN38TcI,2745
|
|
12
|
+
vtx/permissions.py,sha256=EpuI1FsV11EOHUTWPoQMp-LXZFq92cZTuJuVZVT_4Mo,2662
|
|
13
|
+
vtx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
vtx/runtime.py,sha256=FFjMQhvCePszMpMvkzGS1wHaCtVt9PQ5Y68F-Steqsk,22201
|
|
15
|
+
vtx/session.py,sha256=d6CvhTkwZksirXxHzs5R-V3LrqaGs1JI2UtwyD1aUYw,28407
|
|
16
|
+
vtx/themes.py,sha256=UmhNideGK-YK_rl1ivaEzhDC5Q0stE6CD4bYmecodqM,32701
|
|
17
|
+
vtx/tools_manager.py,sha256=YwqGB_MYb2RZKFARrBF_YBI0qWGmkmHHsXuG_zR35Ss,7144
|
|
18
|
+
vtx/turn.py,sha256=V1OYYmKSEjyOtBfr6mPuTv1pLVem6svcecK0N0gJC9I,29322
|
|
19
|
+
vtx/update_check.py,sha256=sUgdfz_tsBhfQaxCKcUnBvyFpIoUlIqyBlwJtCchn3w,1952
|
|
20
|
+
vtx/version.py,sha256=FxTdJQWKMPiXFcLTMSYUrnCy7Xi3VSxcE8iVW-9iWAE,620
|
|
21
|
+
vtx/builtin_skills/github/SKILL.md,sha256=rJl9gUtD24uJo4XMr41khaXvkxwOYPnOi00d5wNKp9Y,5554
|
|
22
|
+
vtx/builtin_skills/init/SKILL.md,sha256=zsEU4-zsOj6EV5Nb_xu1zuHkoyqkcoNx5dyRlfqUR0k,3615
|
|
23
|
+
vtx/builtin_skills/review/SKILL.md,sha256=nFZtlU70mJRxS8kqw0tAsS2MyXkPYMzvaK4Lb2kyqN4,3854
|
|
24
|
+
vtx/builtin_skills/skill-builder/SKILL.md,sha256=dksiujQbjVmJItU5fcmeAiWysl72cTfPFxIMW_gogs4,5809
|
|
25
|
+
vtx/context/__init__.py,sha256=112iIRLBTnZctl7NOFI9cb5AgMEpjZiVC47H7A3-kpk,379
|
|
26
|
+
vtx/context/_xml.py,sha256=ivgo0tVZSR5Od-X1f-NPCDvwnRiSSVcySdz30m_RwXk,212
|
|
27
|
+
vtx/context/agent_mds.py,sha256=cITjwE_R1eVwIe5Oj7WSD-9Wg0aVMT612ZKMMFnyYis,3446
|
|
28
|
+
vtx/context/git.py,sha256=X0nLcHAqMtbXqZQe6v3ApLfkdehUfYNDXzk9gCKOSAo,2146
|
|
29
|
+
vtx/context/loader.py,sha256=q3ZIAVKgnYPJq7XxDUIk__p_opc_8BC8yAOsG1SlVxM,1261
|
|
30
|
+
vtx/context/skills.py,sha256=Y2dbyKySo3Oqpx6lX-zeGtnvGRRpnx7OAIdVr-03w-c,13634
|
|
31
|
+
vtx/core/__init__.py,sha256=xaj45U-tam9nA6OpP1iQHx2Xn_Jge3buPDgX0D-KHJw,898
|
|
32
|
+
vtx/core/compaction.py,sha256=66-kZuDYoGZHMPk5oBjREOJw1SGO6201a6zmoeL3LTg,2846
|
|
33
|
+
vtx/core/errors.py,sha256=PHnlNt-FYG2pPPTaUOpiueQuxDeUfy5iSV74k0RlStk,612
|
|
34
|
+
vtx/core/handoff.py,sha256=Q5zDXt1HdJVCHLUbs2b2MRphNFYkIeYtm1PCIWNVo90,1566
|
|
35
|
+
vtx/core/scratchpad.py,sha256=12f7KGITLUD7ix7ZgLroKEJakq9NYCwvYhL1fM3C8SQ,1576
|
|
36
|
+
vtx/core/types.py,sha256=GrmzBvyV-Euil6oktB3HEIRBZKA366Xp9ULuS2VcZ_o,5726
|
|
37
|
+
vtx/defaults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
vtx/defaults/config.yml,sha256=eqfT1aNAZ19CKhFqbgh9PdEjnCqH5EaF0wYs-AibwgI,1127
|
|
39
|
+
vtx/llm/__init__.py,sha256=hjqTVGPGV-Ao51h2xNSj9myi-l-hqL0L-Xtay5qZafw,2527
|
|
40
|
+
vtx/llm/base.py,sha256=VHlprbTd2OnpAUYfTvwjcZzcDZQrt5bEraZxplQVt-w,6328
|
|
41
|
+
vtx/llm/context_length.py,sha256=5ZNt-WcaOAw6BG063YFOGdD9A3V-Pe5tJAo3ALJMfBI,5280
|
|
42
|
+
vtx/llm/dynamic_models.py,sha256=KiFD6RpwCj07Myn-IRmTBqjaCos2IGaz-OOgAdBo8_M,26040
|
|
43
|
+
vtx/llm/model_fetcher.py,sha256=-sqNKk7K7yL20kfIMobLv3Dc5wLHd1HvjYUjYBT36BA,9100
|
|
44
|
+
vtx/llm/models.py,sha256=X0GLOVeJhu07UhnzkClqMYhCU0dpqNms-JfDDKi1zB0,2026
|
|
45
|
+
vtx/llm/phase_parser.py,sha256=r6oXO42ChxKkpU6txtfoEhcLIpoh-qIGNBsFKjDYhfs,9798
|
|
46
|
+
vtx/llm/provider.yaml,sha256=CeiDpXWRFp66AKYzrJ11-hoJDzwAd0WegfA4vcSj9qM,8508
|
|
47
|
+
vtx/llm/provider_catalog.py,sha256=9LqaE-5wQuKuIJe1oDkFLtg6qo6scZXIo1PhoHxqNvs,7079
|
|
48
|
+
vtx/llm/tool_parser.py,sha256=Dy8xyvpMNrlZpSX4zQdPRoR66hhLl2k9yTEyTy5RQTU,5370
|
|
49
|
+
vtx/llm/oauth/__init__.py,sha256=57WgBZEDpk8T9gtUFfvgyLuuBDHETwGHeFdGFFDVD9o,1349
|
|
50
|
+
vtx/llm/oauth/copilot.py,sha256=Ttxml8jJ4BOywVilwaxKssyCvJwbV4dNEaQixZjibyI,10652
|
|
51
|
+
vtx/llm/oauth/dynamic.py,sha256=swE6PA9cYxvhqz1ujSGJPpyC7zEJc-FmBsMBHHGfaCo,7486
|
|
52
|
+
vtx/llm/oauth/openai.py,sha256=ztMFOdc6VGj2f6cH7Cny9eVlvkDAATAgQOxOb1BI1MI,12587
|
|
53
|
+
vtx/llm/providers/__init__.py,sha256=liPX32WWIhmU60kkIvWeR5YFQnhaP8Hsu7pLV-mLJoo,1505
|
|
54
|
+
vtx/llm/providers/anthropic_sdk.py,sha256=9EuLWuFY_XeWl___dsCw6lSGrs5_LQPwIlWw9omvLW8,10118
|
|
55
|
+
vtx/llm/providers/mock.py,sha256=IidNowpY-25N0VNjOhC1QYSMdGjSS0sj-g-I1aHB7OY,9703
|
|
56
|
+
vtx/llm/providers/openai_sdk.py,sha256=tl1ks2hqMPh3mHKbrJHJDTBx8lx07TsLeL2qThxl-Uk,9093
|
|
57
|
+
vtx/llm/providers/sanitize.py,sha256=MF0B_w8UQpJ9KG_zA0cv8ufWxjDpmIRJTU91pP8XFNk,340
|
|
58
|
+
vtx/llm/sdk/__init__.py,sha256=3-KRu-6OHbDhgkAsczsNoBSOnjlLU_Ims9use48resE,303
|
|
59
|
+
vtx/llm/sdk/anthropic.py,sha256=GuKpZg3dG8FDmCk-LaZwQidnRf4n8NsdS5R3Yx6Kdeo,14796
|
|
60
|
+
vtx/llm/sdk/base.py,sha256=bgN9xQlROGMhNJiztbrzU1Z-82OHLNqkQB4thAwtgQg,2281
|
|
61
|
+
vtx/llm/sdk/openai.py,sha256=iFYpR67wBQWG4TknA8mmyNS35XlMTHgMf9_0-XnA5tw,13908
|
|
62
|
+
vtx/prompts/__init__.py,sha256=bbagFG11p8HM-2Bh-xCRCoTih7pBaNWr7-kqjsMMaWs,1174
|
|
63
|
+
vtx/prompts/builder.py,sha256=NxuhkryZazsz2o2G6XFTy43nTuWe0IP72yxIHhrVPZ4,3041
|
|
64
|
+
vtx/prompts/env.py,sha256=C9qge4_Ev0RbssQNeZ0_sJsYDfjlMgR0cUl0w3y-gJw,1745
|
|
65
|
+
vtx/prompts/identity.py,sha256=df57Re2-85C7Ty-FFdTBx9-3xyJnFTsm0at1V2FE8dI,10601
|
|
66
|
+
vtx/prompts/tooling.py,sha256=LptdeRzAsLpRMDQuP0VMVJ9Y_hHLPebxtyLt-erlGco,1061
|
|
67
|
+
vtx/sounds/completion.wav,sha256=wqNd6TIb_WxdABR_UyqpBeIdKZkpUbFJKk2GBvdpCdw,202830
|
|
68
|
+
vtx/sounds/error.wav,sha256=DJYi1KtOOZ-2WzMlmsAGKxwdRdMDFAcxo0aP6VCNILg,202830
|
|
69
|
+
vtx/sounds/permission.wav,sha256=hf9CkxzNkXuxNfk_ehU0oop3B7T_IxtdKavB0cTR9a8,189006
|
|
70
|
+
vtx/tools/__init__.py,sha256=VhduWPQhS4LMi24HUeISUGHNIxi2Ub-guG-dNZ_u_MM,1431
|
|
71
|
+
vtx/tools/_read_image.py,sha256=3gJPgC4O0m3NbGsR9K8wvYtvclJwGnrz_-xD7KdVwkY,3440
|
|
72
|
+
vtx/tools/_tool_utils.py,sha256=SP0pCJj5h2_OgTF6g6SoTtxJPqNz0BQZktanqzMOJ8k,2799
|
|
73
|
+
vtx/tools/base.py,sha256=LLxZpibSKPTqPktAQp5qAU4U4f5TaJNZG1gmEUu3KBg,1175
|
|
74
|
+
vtx/tools/bash.py,sha256=_u7w2LFw_JAhcXekWGL4Rd0AGUSaxZb597v-opDr974,14059
|
|
75
|
+
vtx/tools/edit.py,sha256=ldCpt-lQXXgEGPk5CQTBJJ_t4GI0dZbmg3DKhdL4buk,10211
|
|
76
|
+
vtx/tools/find.py,sha256=ziHpUZY81d2ceMA4Z7_fs4EaVrsOy2ZVzMH8uiOUTL4,4388
|
|
77
|
+
vtx/tools/read.py,sha256=6-aDIpdMRTFoPKQCOGqTY9fgQkNpAlC8yD8VOx9u6uA,8772
|
|
78
|
+
vtx/tools/skill.py,sha256=rxE94TTMCW3W9JBP6Da3HpfGWYw1vicgPucILFFgwzs,11484
|
|
79
|
+
vtx/tools/web.py,sha256=JZNBwQn6zJYDRkZ6OdC1rZGpU_xc7EYhsmyQAuxJpoY,8550
|
|
80
|
+
vtx/tools/write.py,sha256=GS-z-6Y-gTnyHcisg8Rhxnt6E510K2n_zjp621RPFz8,3041
|
|
81
|
+
vtx/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
+
vtx/ui/agent_runner.py,sha256=kkPa6a3A_AWv-6eSjLWZaRGeNIviXCwWBaidh_Jtvpk,15304
|
|
83
|
+
vtx/ui/app.py,sha256=DTojSj8KsRL_DrWVs1-dmEWbU6o4SftrJZsCSzPoAtM,25437
|
|
84
|
+
vtx/ui/app_protocol.py,sha256=mwEhyi99B7Ah3vcHkBgmiGFWz8XmngMC1hEg2jfGKUE,845
|
|
85
|
+
vtx/ui/autocomplete.py,sha256=veI0Qd6EWryEdNWHq36w_WnQ_0GNJaYVKmbK-vHgRuU,14326
|
|
86
|
+
vtx/ui/blocks.py,sha256=ekdY3_Gl_2ZRXoDJiOeuc4QEP28nq9z7mqDaD6yBDc8,26333
|
|
87
|
+
vtx/ui/chat.py,sha256=2CUWw0EgrKMeZ0N7LOP4ntJNVdc9CI6yEtJWY3LNB_g,22236
|
|
88
|
+
vtx/ui/clipboard.py,sha256=gjJpUTd_iDpGXvBeZSz4xfd2tr8fFxGQj-MRhuyB3ic,1466
|
|
89
|
+
vtx/ui/completion_ui.py,sha256=hNaHhNBNo2MgG6OL_WRf9zWbb3g67aw_-EtFR--5l_s,13406
|
|
90
|
+
vtx/ui/export.py,sha256=SYkGSJlOl5bjlSboFl-yDsBIXs0YYTybltJrFsmZstA,23029
|
|
91
|
+
vtx/ui/floating_list.py,sha256=UMZrv4--lPfwy26izt51cQHBO8fTpIcKD-RUKEYSaUo,11731
|
|
92
|
+
vtx/ui/formatting.py,sha256=aJ7t_PHjPNw9hKev3U_a_Qbiz9FVxyyaKOpTnanRyV8,9418
|
|
93
|
+
vtx/ui/input.py,sha256=W36KGf5ugy9CHGWfHqlrGFjDeteO0TgpHygIRUU0_Nc,27655
|
|
94
|
+
vtx/ui/latex.py,sha256=wx_86-Mhjxb_c_DFyyVJ1j193-D2dUYPYnDXYBCTsfE,9754
|
|
95
|
+
vtx/ui/launch.py,sha256=BSFHEpozt4HZ7ApsASwkAmAHu3Lkz4FUcDCJ0GZUTmA,3360
|
|
96
|
+
vtx/ui/path_complete.py,sha256=6JRPC7ROihemOI9ftmMfd__3ue54Q4_7XAQcNRrYu-A,7600
|
|
97
|
+
vtx/ui/prompt_history.py,sha256=WfXaUhOco9xykgHDG6coysQTNdXwU6ej4ihRHBgsQAQ,2798
|
|
98
|
+
vtx/ui/queue_ui.py,sha256=6e94mHkLbySVbNn7jTph8B1WyXGcM3JnxFdxH7TY_OA,5582
|
|
99
|
+
vtx/ui/selection_mode.py,sha256=yW0v6k8PN-FDt3Dhshck8sW2zmHvxcwEyq4P2CIHJzg,447
|
|
100
|
+
vtx/ui/session_ui.py,sha256=qsFc5yryswyFQsXqAx-gCTErqlkPiNj2KzOPyVtR13Y,9629
|
|
101
|
+
vtx/ui/startup.py,sha256=9_01941V4lIGHcUBhdY8sg41uzt9p3wb0RTf6B8NO9k,4227
|
|
102
|
+
vtx/ui/styles.py,sha256=dJDREH-4zNAljRwPBFPReKzgBrtuX8Gg-ZWPOaxyWYI,6343
|
|
103
|
+
vtx/ui/tool_output.py,sha256=WZla9VL_QsPP6S2CQxWLjnh2iMQ1uUutefmhlWY2W4Y,974
|
|
104
|
+
vtx/ui/tree.py,sha256=R6ZJP07rktvTG_Ljllmu6OKXIeNkuCuyzL6nVnPORb8,16441
|
|
105
|
+
vtx/ui/welcome.py,sha256=hIbgdX0IjvxIwYOxk2bl9pnt6e17h_qDiRS4FADaZ4s,1693
|
|
106
|
+
vtx/ui/widgets.py,sha256=0UKJzMBVvxrPK4_dMpcS4H5mmtvYjH9CezorTuEI1UQ,20369
|
|
107
|
+
vtx/ui/commands/__init__.py,sha256=joOwJ4Wd_Z3myIwjuRTyzg6pFD3qCCkpvbKFmPfSruI,3018
|
|
108
|
+
vtx/ui/commands/auth.py,sha256=NnVGB93Tn-DXKnQV1Wv_Z7nZYFxMlcKB-4D32AQJY9c,11559
|
|
109
|
+
vtx/ui/commands/base.py,sha256=KS3ywAeU9372JHRnD5OdA0iupY0RK5aNvLHqkqo9Ncc,3909
|
|
110
|
+
vtx/ui/commands/models.py,sha256=6taOzzj54DvN1Vlo0yNzM6z905zVSHoswKpXX137wHU,5339
|
|
111
|
+
vtx/ui/commands/sessions.py,sha256=7-qDO5v3wwJLYN_fmwmMayGFGsuEw6MXR5nEYxe86_0,14198
|
|
112
|
+
vtx/ui/commands/settings.py,sha256=6_Qr0K_Bx8-obZ96WfTNCHrlO5Kgm5oGc3H8aunEiBc,11460
|
|
113
|
+
vtx_coding_agent-0.1.1.dist-info/METADATA,sha256=rOegtVCRFiRVEzsUTACiwxpE0_jSqbAjOpKYspfny2Y,10241
|
|
114
|
+
vtx_coding_agent-0.1.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
115
|
+
vtx_coding_agent-0.1.1.dist-info/entry_points.txt,sha256=dR--K5cboGArlhNYSSrnXwsxgM4bQG5-w9QhL1u3nKE,37
|
|
116
|
+
vtx_coding_agent-0.1.1.dist-info/licenses/LICENSE,sha256=3-oq6-xqbJrrOX-qFK_7NY3uSUQYQ1DuniQj7_Sunoc,11328
|
|
117
|
+
vtx_coding_agent-0.1.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of License. Subject to the terms and conditions of this
|
|
67
|
+
License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
llable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 OEvortex
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|