tunacode-cli 0.0.10__tar.gz → 0.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tunacode-cli might be problematic. Click here for more details.
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/PKG-INFO +22 -1
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/README.md +21 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/pyproject.toml +1 -1
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/constants.py +1 -1
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/config_setup.py +16 -6
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/PKG-INFO +22 -1
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/LICENSE +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/setup.cfg +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/cli/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/cli/commands.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/cli/main.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/cli/repl.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/configuration/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/configuration/defaults.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/configuration/models.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/configuration/settings.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/context.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/agents/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/agents/main.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/agent_setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/base.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/coordinator.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/environment_setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/git_safety_setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/setup/undo_setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/state.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/core/tool_handler.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/exceptions.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/prompts/system.txt +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/py.typed +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/services/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/services/mcp.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/services/undo_service.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/setup.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/base.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/read_file.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/run_command.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/update_file.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/tools/write_file.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/types.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/completers.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/console.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/constants.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/decorators.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/input.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/keybindings.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/lexers.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/output.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/panels.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/prompt_manager.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/tool_ui.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/ui/validators.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/__init__.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/bm25.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/diff_utils.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/file_utils.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/ripgrep.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/system.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/text_utils.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode/utils/user_configuration.py +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/SOURCES.txt +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/dependency_links.txt +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/entry_points.txt +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/requires.txt +0 -0
- {tunacode_cli-0.0.10 → tunacode_cli-0.0.11}/src/tunacode_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tunacode-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
4
4
|
Summary: Your agentic CLI developer.
|
|
5
5
|
Author-email: larock22 <noreply@github.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -126,6 +126,27 @@ pip install tunacode-cli
|
|
|
126
126
|
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
+
### Uninstallation
|
|
130
|
+
|
|
131
|
+
To completely remove TunaCode from your system:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Download and run the uninstall script
|
|
135
|
+
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/uninstall.sh | bash
|
|
136
|
+
|
|
137
|
+
# Or manually:
|
|
138
|
+
# 1. Remove the package
|
|
139
|
+
pipx uninstall tunacode # if installed via pipx
|
|
140
|
+
# OR
|
|
141
|
+
pip uninstall tunacode-cli # if installed via pip
|
|
142
|
+
|
|
143
|
+
# 2. Remove configuration files
|
|
144
|
+
rm -rf ~/.config/tunacode*
|
|
145
|
+
|
|
146
|
+
# 3. Remove any leftover binaries
|
|
147
|
+
rm -f ~/.local/bin/tunacode
|
|
148
|
+
```
|
|
149
|
+
|
|
129
150
|
### Setup Options
|
|
130
151
|
|
|
131
152
|
<details>
|
|
@@ -91,6 +91,27 @@ pip install tunacode-cli
|
|
|
91
91
|
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
+
### Uninstallation
|
|
95
|
+
|
|
96
|
+
To completely remove TunaCode from your system:
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
# Download and run the uninstall script
|
|
100
|
+
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/uninstall.sh | bash
|
|
101
|
+
|
|
102
|
+
# Or manually:
|
|
103
|
+
# 1. Remove the package
|
|
104
|
+
pipx uninstall tunacode # if installed via pipx
|
|
105
|
+
# OR
|
|
106
|
+
pip uninstall tunacode-cli # if installed via pip
|
|
107
|
+
|
|
108
|
+
# 2. Remove configuration files
|
|
109
|
+
rm -rf ~/.config/tunacode*
|
|
110
|
+
|
|
111
|
+
# 3. Remove any leftover binaries
|
|
112
|
+
rm -f ~/.local/bin/tunacode
|
|
113
|
+
```
|
|
114
|
+
|
|
94
115
|
### Setup Options
|
|
95
116
|
|
|
96
117
|
<details>
|
|
@@ -56,13 +56,23 @@ class ConfigSetup(BaseSetup):
|
|
|
56
56
|
else:
|
|
57
57
|
if force_setup:
|
|
58
58
|
await ui.muted("Running setup process, resetting config")
|
|
59
|
+
self.state_manager.session.user_config = DEFAULT_USER_CONFIG.copy()
|
|
60
|
+
user_configuration.save_config(
|
|
61
|
+
self.state_manager
|
|
62
|
+
) # Save the default config initially
|
|
63
|
+
await self._onboarding()
|
|
59
64
|
else:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
65
|
+
# No config found - show CLI usage instead of onboarding
|
|
66
|
+
from tunacode.ui.console import console
|
|
67
|
+
console.print("\n[bold red]No configuration found![/bold red]")
|
|
68
|
+
console.print("\n[bold]Quick Setup:[/bold]")
|
|
69
|
+
console.print("Configure TunaCode using CLI flags:")
|
|
70
|
+
console.print("\n[blue]Examples:[/blue]")
|
|
71
|
+
console.print(" [green]tunacode --model 'openai:gpt-4' --key 'your-key'[/green]")
|
|
72
|
+
console.print(" [green]tunacode --model 'anthropic:claude-3-opus' --key 'your-key'[/green]")
|
|
73
|
+
console.print(" [green]tunacode --model 'openrouter:anthropic/claude-3.5-sonnet' --key 'your-key' --baseurl 'https://openrouter.ai/api/v1'[/green]")
|
|
74
|
+
console.print("\n[yellow]Run 'tunacode --help' for more options[/yellow]\n")
|
|
75
|
+
raise SystemExit(0)
|
|
66
76
|
|
|
67
77
|
if not self.state_manager.session.user_config.get("default_model"):
|
|
68
78
|
raise ConfigurationError(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tunacode-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
4
4
|
Summary: Your agentic CLI developer.
|
|
5
5
|
Author-email: larock22 <noreply@github.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -126,6 +126,27 @@ pip install tunacode-cli
|
|
|
126
126
|
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/install_linux.sh | bash
|
|
127
127
|
```
|
|
128
128
|
|
|
129
|
+
### Uninstallation
|
|
130
|
+
|
|
131
|
+
To completely remove TunaCode from your system:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Download and run the uninstall script
|
|
135
|
+
wget -qO- https://raw.githubusercontent.com/alchemiststudiosDOTai/tunacode/master/scripts/uninstall.sh | bash
|
|
136
|
+
|
|
137
|
+
# Or manually:
|
|
138
|
+
# 1. Remove the package
|
|
139
|
+
pipx uninstall tunacode # if installed via pipx
|
|
140
|
+
# OR
|
|
141
|
+
pip uninstall tunacode-cli # if installed via pip
|
|
142
|
+
|
|
143
|
+
# 2. Remove configuration files
|
|
144
|
+
rm -rf ~/.config/tunacode*
|
|
145
|
+
|
|
146
|
+
# 3. Remove any leftover binaries
|
|
147
|
+
rm -f ~/.local/bin/tunacode
|
|
148
|
+
```
|
|
149
|
+
|
|
129
150
|
### Setup Options
|
|
130
151
|
|
|
131
152
|
<details>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|