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.

Files changed (71) hide show
  1. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/PKG-INFO +9 -8
  2. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/README.md +7 -6
  3. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/pyproject.toml +2 -2
  4. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/prompts/system.txt +1 -1
  5. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/PKG-INFO +9 -8
  6. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/LICENSE +0 -0
  7. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/setup.cfg +0 -0
  8. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/setup.py +0 -0
  9. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/__init__.py +0 -0
  10. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/__init__.py +0 -0
  11. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/commands.py +0 -0
  12. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/main.py +0 -0
  13. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/cli/repl.py +0 -0
  14. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/__init__.py +0 -0
  15. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/defaults.py +0 -0
  16. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/models.py +0 -0
  17. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/configuration/settings.py +0 -0
  18. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/constants.py +0 -0
  19. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/context.py +0 -0
  20. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/__init__.py +0 -0
  21. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/agents/__init__.py +0 -0
  22. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/agents/main.py +0 -0
  23. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/__init__.py +0 -0
  24. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/agent_setup.py +0 -0
  25. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/base.py +0 -0
  26. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/config_setup.py +0 -0
  27. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/coordinator.py +0 -0
  28. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/environment_setup.py +0 -0
  29. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/git_safety_setup.py +0 -0
  30. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/setup/undo_setup.py +0 -0
  31. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/state.py +0 -0
  32. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/core/tool_handler.py +0 -0
  33. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/exceptions.py +0 -0
  34. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/py.typed +0 -0
  35. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/__init__.py +0 -0
  36. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/mcp.py +0 -0
  37. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/services/undo_service.py +0 -0
  38. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/setup.py +0 -0
  39. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/__init__.py +0 -0
  40. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/base.py +0 -0
  41. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/read_file.py +0 -0
  42. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/run_command.py +0 -0
  43. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/update_file.py +0 -0
  44. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/tools/write_file.py +0 -0
  45. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/types.py +0 -0
  46. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/__init__.py +0 -0
  47. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/completers.py +0 -0
  48. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/console.py +0 -0
  49. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/constants.py +0 -0
  50. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/decorators.py +0 -0
  51. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/input.py +0 -0
  52. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/keybindings.py +0 -0
  53. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/lexers.py +0 -0
  54. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/output.py +0 -0
  55. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/panels.py +0 -0
  56. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/prompt_manager.py +0 -0
  57. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/tool_ui.py +0 -0
  58. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/ui/validators.py +0 -0
  59. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/__init__.py +0 -0
  60. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/bm25.py +0 -0
  61. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/diff_utils.py +0 -0
  62. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/file_utils.py +0 -0
  63. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/ripgrep.py +0 -0
  64. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/system.py +0 -0
  65. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/text_utils.py +0 -0
  66. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode/utils/user_configuration.py +0 -0
  67. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/SOURCES.txt +0 -0
  68. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/dependency_links.txt +0 -0
  69. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/entry_points.txt +0 -0
  70. {tunacode_cli-0.0.1 → tunacode_cli-0.0.2}/src/tunacode_cli.egg-info/requires.txt +0 -0
  71. {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.1
3
+ Version: 0.0.2
4
4
  Summary: Your agentic CLI developer.
5
- Author-email: Gavin Vickery <gavin@geekforbrains.com>
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/geekforbrains/tunacode-cli/issues) or share feedback!*
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
- ## Roadmap
65
+ ## Upcoming Features
66
66
 
67
- - Tests 😅
68
- - More LLM providers, including OpenRouter and Ollama
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/geekforbrains/tunacode-cli/issues)
234
- - [GitHub Repository](https://github.com/geekforbrains/tunacode-cli)
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/geekforbrains/tunacode-cli/issues) or share feedback!*
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
- ## Roadmap
30
+ ## Upcoming Features
31
31
 
32
- - Tests 😅
33
- - More LLM providers, including OpenRouter and Ollama
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/geekforbrains/tunacode-cli/issues)
199
- - [GitHub Repository](https://github.com/geekforbrains/tunacode-cli)
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.1"
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 = "Gavin Vickery", email = "gavin@geekforbrains.com" },
14
+ { name = "larock22", email = "noreply@github.com" },
15
15
  ]
16
16
  classifiers = [
17
17
  "Development Status :: 4 - Beta",
@@ -68,4 +68,4 @@ CORRECT: First `read_file("tools/base.py")` to see the base class, then `write_f
68
68
 
69
69
  USE YOUR TOOLS NOW!
70
70
 
71
- If asked, you were created by Gavin Vickery (gavin@geekforbrains.com)
71
+ If asked, you were created by larock22
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tunacode-cli
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Your agentic CLI developer.
5
- Author-email: Gavin Vickery <gavin@geekforbrains.com>
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/geekforbrains/tunacode-cli/issues) or share feedback!*
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
- ## Roadmap
65
+ ## Upcoming Features
66
66
 
67
- - Tests 😅
68
- - More LLM providers, including OpenRouter and Ollama
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/geekforbrains/tunacode-cli/issues)
234
- - [GitHub Repository](https://github.com/geekforbrains/tunacode-cli)
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