comet-code 0.1.0__tar.gz → 0.1.3__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.
Files changed (45) hide show
  1. {comet_code-0.1.0 → comet_code-0.1.3}/PKG-INFO +5 -10
  2. {comet_code-0.1.0 → comet_code-0.1.3}/README.md +4 -9
  3. {comet_code-0.1.0 → comet_code-0.1.3}/pyproject.toml +1 -1
  4. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/ui.py +1 -1
  5. {comet_code-0.1.0 → comet_code-0.1.3}/.claude/settings.local.json +0 -0
  6. {comet_code-0.1.0 → comet_code-0.1.3}/.gitignore +0 -0
  7. {comet_code-0.1.0 → comet_code-0.1.3}/.python-version +0 -0
  8. {comet_code-0.1.0 → comet_code-0.1.3}/LICENSE +0 -0
  9. {comet_code-0.1.0 → comet_code-0.1.3}/main.py +0 -0
  10. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/__init__.py +0 -0
  11. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/commands.py +0 -0
  12. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/completer.py +0 -0
  13. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/render.py +0 -0
  14. {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/state.py +0 -0
  15. {comet_code-0.1.0 → comet_code-0.1.3}/src/config.py +0 -0
  16. {comet_code-0.1.0 → comet_code-0.1.3}/src/core/__init__.py +0 -0
  17. {comet_code-0.1.0 → comet_code-0.1.3}/src/core/graph.py +0 -0
  18. {comet_code-0.1.0 → comet_code-0.1.3}/src/core/graph_state.py +0 -0
  19. {comet_code-0.1.0 → comet_code-0.1.3}/src/core/nodes.py +0 -0
  20. {comet_code-0.1.0 → comet_code-0.1.3}/src/core/orchestrator.py +0 -0
  21. {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/__init__.py +0 -0
  22. {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/models.py +0 -0
  23. {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/openrouter_client.py +0 -0
  24. {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/prompts.py +0 -0
  25. {comet_code-0.1.0 → comet_code-0.1.3}/src/output/__init__.py +0 -0
  26. {comet_code-0.1.0 → comet_code-0.1.3}/src/patching/__init__.py +0 -0
  27. {comet_code-0.1.0 → comet_code-0.1.3}/src/retrieval/__init__.py +0 -0
  28. {comet_code-0.1.0 → comet_code-0.1.3}/src/sandbox/__init__.py +0 -0
  29. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/__init__.py +0 -0
  30. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/attempt.py +0 -0
  31. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/code_chunk.py +0 -0
  32. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/events.py +0 -0
  33. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/mode_policy.py +0 -0
  34. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/plan.py +0 -0
  35. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/session.py +0 -0
  36. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/task.py +0 -0
  37. {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/tool.py +0 -0
  38. {comet_code-0.1.0 → comet_code-0.1.3}/src/tools/__init__.py +0 -0
  39. {comet_code-0.1.0 → comet_code-0.1.3}/src/verify/__init__.py +0 -0
  40. {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_cli_render.py +0 -0
  41. {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_cli_ui.py +0 -0
  42. {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_limit_handling.py +0 -0
  43. {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_tool_approval.py +0 -0
  44. {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_tools_schema.py +0 -0
  45. {comet_code-0.1.0 → comet_code-0.1.3}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comet-code
3
- Version: 0.1.0
3
+ Version: 0.1.3
4
4
  Summary: Agentic CLI coding assistant
5
5
  Project-URL: Homepage, https://github.com/pritivi03/comet-code
6
6
  Project-URL: Repository, https://github.com/pritivi03/comet-code
@@ -113,15 +113,10 @@ START → call_llm ──→ execute_tools ──┐
113
113
  ## Getting Started
114
114
 
115
115
  ```bash
116
- git clone https://github.com/pritivi03/comet-code
117
- cd comet-code
118
- python -m venv .venv && source .venv/bin/activate
119
- pip install -r requirements.txt
120
-
121
- # Add your OpenRouter API key
122
- echo "OPENROUTER_API_KEY=your_key_here" > .env
123
-
124
- python -m main
116
+ pip install comet-code
117
+ # The first run will prompt for your OpenRouter API key.
118
+ # You can also set it later via `/key set <key>` or the `OPENROUTER_API_KEY` environment variable.
119
+ comet
125
120
  ```
126
121
 
127
122
  ### Slash commands
@@ -81,15 +81,10 @@ START → call_llm ──→ execute_tools ──┐
81
81
  ## Getting Started
82
82
 
83
83
  ```bash
84
- git clone https://github.com/pritivi03/comet-code
85
- cd comet-code
86
- python -m venv .venv && source .venv/bin/activate
87
- pip install -r requirements.txt
88
-
89
- # Add your OpenRouter API key
90
- echo "OPENROUTER_API_KEY=your_key_here" > .env
91
-
92
- python -m main
84
+ pip install comet-code
85
+ # The first run will prompt for your OpenRouter API key.
86
+ # You can also set it later via `/key set <key>` or the `OPENROUTER_API_KEY` environment variable.
87
+ comet
93
88
  ```
94
89
 
95
90
  ### Slash commands
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "comet-code"
3
- version = "0.1.0"
3
+ version = "0.1.3"
4
4
  description = "Agentic CLI coding assistant"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -166,7 +166,7 @@ def _read_boxed_input(state: ShellState) -> str:
166
166
  key_bindings=kb,
167
167
  style=_INPUT_STYLE,
168
168
  full_screen=False,
169
- mouse_support=True,
169
+ mouse_support=False,
170
170
  # Erase the rendered box on exit so the next iteration redraws in
171
171
  # the same spot — gives the illusion of a fixed bottom-pinned UI
172
172
  # instead of leaving stale toolbars in the scrollback.
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