tunacode-cli 0.0.1__tar.gz → 0.0.2__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.1 → tunacode_cli-0.0.2}/PKG-INFO +9 -8
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/README.md +7 -6
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/pyproject.toml +2 -2
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/prompts/system.txt +1 -1
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/PKG-INFO +9 -8
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/LICENSE +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/setup.cfg +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/commands.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/main.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/repl.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/defaults.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/models.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/settings.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/constants.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/context.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/agents/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/agents/main.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/agent_setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/base.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/config_setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/coordinator.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/environment_setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/git_safety_setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/undo_setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/state.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/tool_handler.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/exceptions.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/py.typed +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/mcp.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/undo_service.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/setup.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/base.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/read_file.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/run_command.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/update_file.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/write_file.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/types.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/completers.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/console.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/constants.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/decorators.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/input.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/keybindings.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/lexers.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/output.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/panels.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/prompt_manager.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/tool_ui.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/validators.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/__init__.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/bm25.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/diff_utils.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/file_utils.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/ripgrep.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/system.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/text_utils.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/user_configuration.py +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/SOURCES.txt +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/dependency_links.txt +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/entry_points.txt +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/requires.txt +0 -0
- {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tunacode-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Your agentic CLI developer.
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: larock22 <noreply@github.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/larock22/tunacode
|
|
8
8
|
Project-URL: Repository, https://github.com/larock22/tunacode
|
|
@@ -48,7 +48,7 @@ TunaCode is an agentic CLI-based AI tool inspired by Claude Code, Copilot, Winds
|
|
|
48
48
|
to be an open source alternative to these tools, providing a similar experience but with the flexibility of
|
|
49
49
|
using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) while keeping the agentic workflow.
|
|
50
50
|
|
|
51
|
-
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/
|
|
51
|
+
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/larock22/tunacode/issues) or share feedback!*
|
|
52
52
|
|
|
53
53
|
## Features
|
|
54
54
|
|
|
@@ -62,10 +62,11 @@ using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) whi
|
|
|
62
62
|
- Cost and token tracking.
|
|
63
63
|
- Per command or per session confirmation skipping.
|
|
64
64
|
|
|
65
|
-
##
|
|
65
|
+
## Upcoming Features
|
|
66
66
|
|
|
67
|
-
-
|
|
68
|
-
-
|
|
67
|
+
- **TinyAgent Integration**: Adding the [tinyagent framework](http://tinyagent.xyz/) to make this CLI tool truly agentic with multi-step reasoning and autonomous task execution
|
|
68
|
+
- **Advanced Flows**: Implementing sophisticated workflow patterns for complex development tasks
|
|
69
|
+
- **Quality of Life Updates**: Enhanced user experience with improved UI, better error handling, and streamlined interactions
|
|
69
70
|
|
|
70
71
|
## Quick Start
|
|
71
72
|
|
|
@@ -230,8 +231,8 @@ This project follows the [Conventional Commits](https://www.conventionalcommits.
|
|
|
230
231
|
## Links
|
|
231
232
|
|
|
232
233
|
- [PyPI Package](https://pypi.org/project/tunacode-cli/)
|
|
233
|
-
- [GitHub Issues](https://github.com/
|
|
234
|
-
- [GitHub Repository](https://github.com/
|
|
234
|
+
- [GitHub Issues](https://github.com/larock22/tunacode/issues)
|
|
235
|
+
- [GitHub Repository](https://github.com/larock22/tunacode)
|
|
235
236
|
|
|
236
237
|
## License
|
|
237
238
|
|
|
@@ -13,7 +13,7 @@ TunaCode is an agentic CLI-based AI tool inspired by Claude Code, Copilot, Winds
|
|
|
13
13
|
to be an open source alternative to these tools, providing a similar experience but with the flexibility of
|
|
14
14
|
using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) while keeping the agentic workflow.
|
|
15
15
|
|
|
16
|
-
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/
|
|
16
|
+
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/larock22/tunacode/issues) or share feedback!*
|
|
17
17
|
|
|
18
18
|
## Features
|
|
19
19
|
|
|
@@ -27,10 +27,11 @@ using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) whi
|
|
|
27
27
|
- Cost and token tracking.
|
|
28
28
|
- Per command or per session confirmation skipping.
|
|
29
29
|
|
|
30
|
-
##
|
|
30
|
+
## Upcoming Features
|
|
31
31
|
|
|
32
|
-
-
|
|
33
|
-
-
|
|
32
|
+
- **TinyAgent Integration**: Adding the [tinyagent framework](http://tinyagent.xyz/) to make this CLI tool truly agentic with multi-step reasoning and autonomous task execution
|
|
33
|
+
- **Advanced Flows**: Implementing sophisticated workflow patterns for complex development tasks
|
|
34
|
+
- **Quality of Life Updates**: Enhanced user experience with improved UI, better error handling, and streamlined interactions
|
|
34
35
|
|
|
35
36
|
## Quick Start
|
|
36
37
|
|
|
@@ -195,8 +196,8 @@ This project follows the [Conventional Commits](https://www.conventionalcommits.
|
|
|
195
196
|
## Links
|
|
196
197
|
|
|
197
198
|
- [PyPI Package](https://pypi.org/project/tunacode-cli/)
|
|
198
|
-
- [GitHub Issues](https://github.com/
|
|
199
|
-
- [GitHub Repository](https://github.com/
|
|
199
|
+
- [GitHub Issues](https://github.com/larock22/tunacode/issues)
|
|
200
|
+
- [GitHub Repository](https://github.com/larock22/tunacode)
|
|
200
201
|
|
|
201
202
|
## License
|
|
202
203
|
|
|
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tunacode-cli"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.2"
|
|
8
8
|
description = "Your agentic CLI developer."
|
|
9
9
|
keywords = ["cli", "agent", "development", "automation"]
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
license = "MIT"
|
|
13
13
|
authors = [
|
|
14
|
-
{ name = "
|
|
14
|
+
{ name = "larock22", email = "noreply@github.com" },
|
|
15
15
|
]
|
|
16
16
|
classifiers = [
|
|
17
17
|
"Development Status :: 4 - Beta",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tunacode-cli
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: Your agentic CLI developer.
|
|
5
|
-
Author-email:
|
|
5
|
+
Author-email: larock22 <noreply@github.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/larock22/tunacode
|
|
8
8
|
Project-URL: Repository, https://github.com/larock22/tunacode
|
|
@@ -48,7 +48,7 @@ TunaCode is an agentic CLI-based AI tool inspired by Claude Code, Copilot, Winds
|
|
|
48
48
|
to be an open source alternative to these tools, providing a similar experience but with the flexibility of
|
|
49
49
|
using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) while keeping the agentic workflow.
|
|
50
50
|
|
|
51
|
-
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/
|
|
51
|
+
*TunaCode is currently in beta and under active development. Please [report issues](https://github.com/larock22/tunacode/issues) or share feedback!*
|
|
52
52
|
|
|
53
53
|
## Features
|
|
54
54
|
|
|
@@ -62,10 +62,11 @@ using different LLM providers (Anthropic, OpenAI, Google Gemini, OpenRouter) whi
|
|
|
62
62
|
- Cost and token tracking.
|
|
63
63
|
- Per command or per session confirmation skipping.
|
|
64
64
|
|
|
65
|
-
##
|
|
65
|
+
## Upcoming Features
|
|
66
66
|
|
|
67
|
-
-
|
|
68
|
-
-
|
|
67
|
+
- **TinyAgent Integration**: Adding the [tinyagent framework](http://tinyagent.xyz/) to make this CLI tool truly agentic with multi-step reasoning and autonomous task execution
|
|
68
|
+
- **Advanced Flows**: Implementing sophisticated workflow patterns for complex development tasks
|
|
69
|
+
- **Quality of Life Updates**: Enhanced user experience with improved UI, better error handling, and streamlined interactions
|
|
69
70
|
|
|
70
71
|
## Quick Start
|
|
71
72
|
|
|
@@ -230,8 +231,8 @@ This project follows the [Conventional Commits](https://www.conventionalcommits.
|
|
|
230
231
|
## Links
|
|
231
232
|
|
|
232
233
|
- [PyPI Package](https://pypi.org/project/tunacode-cli/)
|
|
233
|
-
- [GitHub Issues](https://github.com/
|
|
234
|
-
- [GitHub Repository](https://github.com/
|
|
234
|
+
- [GitHub Issues](https://github.com/larock22/tunacode/issues)
|
|
235
|
+
- [GitHub Repository](https://github.com/larock22/tunacode)
|
|
235
236
|
|
|
236
237
|
## License
|
|
237
238
|
|
|
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
|
|
File without changes
|