xcoding 0.1.0__tar.gz → 0.1.1__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 (25) hide show
  1. {xcoding-0.1.0/xcoding.egg-info → xcoding-0.1.1}/PKG-INFO +10 -10
  2. {xcoding-0.1.0 → xcoding-0.1.1}/README.md +6 -6
  3. {xcoding-0.1.0 → xcoding-0.1.1}/pyproject.toml +4 -4
  4. {xcoding-0.1.0 → xcoding-0.1.1/xcoding.egg-info}/PKG-INFO +10 -10
  5. {xcoding-0.1.0 → xcoding-0.1.1}/LICENSE +0 -0
  6. {xcoding-0.1.0 → xcoding-0.1.1}/setup.cfg +0 -0
  7. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/__init__.py +0 -0
  8. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/__main__.py +0 -0
  9. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/agent.py +0 -0
  10. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/backends.py +0 -0
  11. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/cli.py +0 -0
  12. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/config.py +0 -0
  13. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/hooks.py +0 -0
  14. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/input_bar.py +0 -0
  15. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/mcp.py +0 -0
  16. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/memory.py +0 -0
  17. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/permissions.py +0 -0
  18. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/session.py +0 -0
  19. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/tools.py +0 -0
  20. {xcoding-0.1.0 → xcoding-0.1.1}/xcode/ui.py +0 -0
  21. {xcoding-0.1.0 → xcoding-0.1.1}/xcoding.egg-info/SOURCES.txt +0 -0
  22. {xcoding-0.1.0 → xcoding-0.1.1}/xcoding.egg-info/dependency_links.txt +0 -0
  23. {xcoding-0.1.0 → xcoding-0.1.1}/xcoding.egg-info/entry_points.txt +0 -0
  24. {xcoding-0.1.0 → xcoding-0.1.1}/xcoding.egg-info/requires.txt +0 -0
  25. {xcoding-0.1.0 → xcoding-0.1.1}/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.0
4
- Summary: A local-model coding agent Claude Code, but powered by Ollama or llama.cpp.
5
- Author: c7s89r nzv
6
- Maintainer: c7s89r nzv
3
+ Version: 0.1.1
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
- # xcode
28
+ # xcoding · by [@c7s89r](https://github.com/c7s89r)
29
29
 
30
- A local-model coding agent — like Claude Code, but it talks to a model
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 xcode` and run `xcode`.
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 xcode
46
+ pip install xcoding
47
47
  xcode
48
48
  ```
49
49
 
50
50
  ## Install
51
51
 
52
52
  ```bash
53
- pip install xcode
53
+ pip install xcoding
54
54
  ```
55
55
 
56
56
  Then just run `xcode` from any project folder.
@@ -1,10 +1,10 @@
1
- # xcode
1
+ # xcoding · by [@c7s89r](https://github.com/c7s89r)
2
2
 
3
- A local-model coding agent — like Claude Code, but it talks to a model
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 xcode` and run `xcode`.
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 xcode
19
+ pip install xcoding
20
20
  xcode
21
21
  ```
22
22
 
23
23
  ## Install
24
24
 
25
25
  ```bash
26
- pip install xcode
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.0"
4
- description = "A local-model coding agent Claude Code, but powered by Ollama or llama.cpp."
3
+ version = "0.1.1"
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 nzv" }]
9
- maintainers = [{ name = "c7s89r nzv" }]
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",
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xcoding
3
- Version: 0.1.0
4
- Summary: A local-model coding agent Claude Code, but powered by Ollama or llama.cpp.
5
- Author: c7s89r nzv
6
- Maintainer: c7s89r nzv
3
+ Version: 0.1.1
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
- # xcode
28
+ # xcoding · by [@c7s89r](https://github.com/c7s89r)
29
29
 
30
- A local-model coding agent — like Claude Code, but it talks to a model
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 xcode` and run `xcode`.
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 xcode
46
+ pip install xcoding
47
47
  xcode
48
48
  ```
49
49
 
50
50
  ## Install
51
51
 
52
52
  ```bash
53
- pip install xcode
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