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.
- {comet_code-0.1.0 → comet_code-0.1.3}/PKG-INFO +5 -10
- {comet_code-0.1.0 → comet_code-0.1.3}/README.md +4 -9
- {comet_code-0.1.0 → comet_code-0.1.3}/pyproject.toml +1 -1
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/ui.py +1 -1
- {comet_code-0.1.0 → comet_code-0.1.3}/.claude/settings.local.json +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/.gitignore +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/.python-version +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/LICENSE +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/main.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/commands.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/completer.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/render.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/cli/state.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/config.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/core/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/core/graph.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/core/graph_state.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/core/nodes.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/core/orchestrator.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/models.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/openrouter_client.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/llm/prompts.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/output/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/patching/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/retrieval/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/sandbox/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/attempt.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/code_chunk.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/events.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/mode_policy.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/plan.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/session.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/task.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/schemas/tool.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/tools/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/src/verify/__init__.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_cli_render.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_cli_ui.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_limit_handling.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_tool_approval.py +0 -0
- {comet_code-0.1.0 → comet_code-0.1.3}/tests/test_tools_schema.py +0 -0
- {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.
|
|
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
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
|
@@ -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=
|
|
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
|
|
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
|