xcoding 0.1.0__tar.gz → 0.1.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.
- {xcoding-0.1.0/xcoding.egg-info → xcoding-0.1.2}/PKG-INFO +10 -10
- {xcoding-0.1.0 → xcoding-0.1.2}/README.md +6 -6
- {xcoding-0.1.0 → xcoding-0.1.2}/pyproject.toml +5 -4
- {xcoding-0.1.0 → xcoding-0.1.2/xcoding.egg-info}/PKG-INFO +10 -10
- {xcoding-0.1.0 → xcoding-0.1.2}/xcoding.egg-info/entry_points.txt +1 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/LICENSE +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/setup.cfg +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/__init__.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/__main__.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/agent.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/backends.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/cli.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/config.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/hooks.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/input_bar.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/mcp.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/memory.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/permissions.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/session.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/tools.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcode/ui.py +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcoding.egg-info/SOURCES.txt +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcoding.egg-info/dependency_links.txt +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcoding.egg-info/requires.txt +0 -0
- {xcoding-0.1.0 → xcoding-0.1.2}/xcoding.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xcoding
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
5
|
-
Author: c7s89r
|
|
6
|
-
Maintainer: c7s89r
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: xcoding by @c7s89r — a local-model coding agent. Claude Code, but powered by Ollama or llama.cpp.
|
|
5
|
+
Author-email: c7s89r <c7s89r@users.noreply.github.com>
|
|
6
|
+
Maintainer-email: c7s89r <c7s89r@users.noreply.github.com>
|
|
7
7
|
License: MIT
|
|
8
8
|
Project-URL: Homepage, https://github.com/c7s89r/xcode
|
|
9
9
|
Project-URL: Repository, https://github.com/c7s89r/xcode
|
|
@@ -25,13 +25,13 @@ Requires-Dist: prompt_toolkit>=3.0.0
|
|
|
25
25
|
Requires-Dist: discord.py>=2.3.0
|
|
26
26
|
Dynamic: license-file
|
|
27
27
|
|
|
28
|
-
#
|
|
28
|
+
# xcoding · by [@c7s89r](https://github.com/c7s89r)
|
|
29
29
|
|
|
30
|
-
A local-model coding agent — like Claude Code, but it talks to a
|
|
31
|
-
running on your own machine instead of a cloud API.
|
|
30
|
+
A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to a
|
|
31
|
+
model running on your own machine instead of a cloud API.
|
|
32
32
|
|
|
33
33
|
> **✅ Works with [Ollama](https://ollama.com) for now.** Just install Ollama,
|
|
34
|
-
> pull a tool-capable model, then `pip install
|
|
34
|
+
> pull a tool-capable model, then `pip install xcoding` and run `xcode`.
|
|
35
35
|
> (llama.cpp support is in too, but Ollama is the tested path.)
|
|
36
36
|
|
|
37
37
|
It auto-detects whichever backend is running, gives the model tools to read/write
|
|
@@ -43,14 +43,14 @@ and every shell command asks for your approval first.
|
|
|
43
43
|
```bash
|
|
44
44
|
ollama serve
|
|
45
45
|
ollama pull qwen2.5-coder # a model that's good at tool use
|
|
46
|
-
pip install
|
|
46
|
+
pip install xcoding
|
|
47
47
|
xcode
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
## Install
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
pip install
|
|
53
|
+
pip install xcoding
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Then just run `xcode` from any project folder.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# xcoding · by [@c7s89r](https://github.com/c7s89r)
|
|
2
2
|
|
|
3
|
-
A local-model coding agent — like Claude Code, but it talks to a
|
|
4
|
-
running on your own machine instead of a cloud API.
|
|
3
|
+
A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to a
|
|
4
|
+
model running on your own machine instead of a cloud API.
|
|
5
5
|
|
|
6
6
|
> **✅ Works with [Ollama](https://ollama.com) for now.** Just install Ollama,
|
|
7
|
-
> pull a tool-capable model, then `pip install
|
|
7
|
+
> pull a tool-capable model, then `pip install xcoding` and run `xcode`.
|
|
8
8
|
> (llama.cpp support is in too, but Ollama is the tested path.)
|
|
9
9
|
|
|
10
10
|
It auto-detects whichever backend is running, gives the model tools to read/write
|
|
@@ -16,14 +16,14 @@ and every shell command asks for your approval first.
|
|
|
16
16
|
```bash
|
|
17
17
|
ollama serve
|
|
18
18
|
ollama pull qwen2.5-coder # a model that's good at tool use
|
|
19
|
-
pip install
|
|
19
|
+
pip install xcoding
|
|
20
20
|
xcode
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
## Install
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
pip install
|
|
26
|
+
pip install xcoding
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Then just run `xcode` from any project folder.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "xcoding"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
description = "xcoding by @c7s89r — a local-model coding agent. Claude Code, but powered by Ollama or llama.cpp."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.9"
|
|
7
7
|
license = { text = "MIT" }
|
|
8
|
-
authors = [{ name = "c7s89r
|
|
9
|
-
maintainers = [{ name = "c7s89r
|
|
8
|
+
authors = [{ name = "c7s89r", email = "c7s89r@users.noreply.github.com" }]
|
|
9
|
+
maintainers = [{ name = "c7s89r", email = "c7s89r@users.noreply.github.com" }]
|
|
10
10
|
keywords = ["cli", "coding-agent", "ollama", "llama.cpp", "ai", "local-llm"]
|
|
11
11
|
classifiers = [
|
|
12
12
|
"Development Status :: 4 - Beta",
|
|
@@ -31,6 +31,7 @@ Issues = "https://github.com/c7s89r/xcode/issues"
|
|
|
31
31
|
|
|
32
32
|
[project.scripts]
|
|
33
33
|
xcode = "xcode.cli:main"
|
|
34
|
+
xcoding = "xcode.cli:main"
|
|
34
35
|
|
|
35
36
|
[build-system]
|
|
36
37
|
requires = ["setuptools>=68"]
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: xcoding
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
5
|
-
Author: c7s89r
|
|
6
|
-
Maintainer: c7s89r
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: xcoding by @c7s89r — a local-model coding agent. Claude Code, but powered by Ollama or llama.cpp.
|
|
5
|
+
Author-email: c7s89r <c7s89r@users.noreply.github.com>
|
|
6
|
+
Maintainer-email: c7s89r <c7s89r@users.noreply.github.com>
|
|
7
7
|
License: MIT
|
|
8
8
|
Project-URL: Homepage, https://github.com/c7s89r/xcode
|
|
9
9
|
Project-URL: Repository, https://github.com/c7s89r/xcode
|
|
@@ -25,13 +25,13 @@ Requires-Dist: prompt_toolkit>=3.0.0
|
|
|
25
25
|
Requires-Dist: discord.py>=2.3.0
|
|
26
26
|
Dynamic: license-file
|
|
27
27
|
|
|
28
|
-
#
|
|
28
|
+
# xcoding · by [@c7s89r](https://github.com/c7s89r)
|
|
29
29
|
|
|
30
|
-
A local-model coding agent — like Claude Code, but it talks to a
|
|
31
|
-
running on your own machine instead of a cloud API.
|
|
30
|
+
A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to a
|
|
31
|
+
model running on your own machine instead of a cloud API.
|
|
32
32
|
|
|
33
33
|
> **✅ Works with [Ollama](https://ollama.com) for now.** Just install Ollama,
|
|
34
|
-
> pull a tool-capable model, then `pip install
|
|
34
|
+
> pull a tool-capable model, then `pip install xcoding` and run `xcode`.
|
|
35
35
|
> (llama.cpp support is in too, but Ollama is the tested path.)
|
|
36
36
|
|
|
37
37
|
It auto-detects whichever backend is running, gives the model tools to read/write
|
|
@@ -43,14 +43,14 @@ and every shell command asks for your approval first.
|
|
|
43
43
|
```bash
|
|
44
44
|
ollama serve
|
|
45
45
|
ollama pull qwen2.5-coder # a model that's good at tool use
|
|
46
|
-
pip install
|
|
46
|
+
pip install xcoding
|
|
47
47
|
xcode
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
## Install
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
pip install
|
|
53
|
+
pip install xcoding
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
Then just run `xcode` from any project folder.
|
|
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
|