xcoding 0.1.1__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 (26) hide show
  1. {xcoding-0.1.1/xcoding.egg-info → xcoding-0.1.3}/PKG-INFO +9 -9
  2. {xcoding-0.1.1 → xcoding-0.1.3}/README.md +8 -8
  3. {xcoding-0.1.1 → xcoding-0.1.3}/pyproject.toml +2 -2
  4. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/cli.py +1 -1
  5. {xcoding-0.1.1 → xcoding-0.1.3/xcoding.egg-info}/PKG-INFO +9 -9
  6. xcoding-0.1.3/xcoding.egg-info/entry_points.txt +2 -0
  7. xcoding-0.1.1/xcoding.egg-info/entry_points.txt +0 -2
  8. {xcoding-0.1.1 → xcoding-0.1.3}/LICENSE +0 -0
  9. {xcoding-0.1.1 → xcoding-0.1.3}/setup.cfg +0 -0
  10. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/__init__.py +0 -0
  11. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/__main__.py +0 -0
  12. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/agent.py +0 -0
  13. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/backends.py +0 -0
  14. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/config.py +0 -0
  15. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/hooks.py +0 -0
  16. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/input_bar.py +0 -0
  17. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/mcp.py +0 -0
  18. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/memory.py +0 -0
  19. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/permissions.py +0 -0
  20. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/session.py +0 -0
  21. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/tools.py +0 -0
  22. {xcoding-0.1.1 → xcoding-0.1.3}/xcode/ui.py +0 -0
  23. {xcoding-0.1.1 → xcoding-0.1.3}/xcoding.egg-info/SOURCES.txt +0 -0
  24. {xcoding-0.1.1 → xcoding-0.1.3}/xcoding.egg-info/dependency_links.txt +0 -0
  25. {xcoding-0.1.1 → xcoding-0.1.3}/xcoding.egg-info/requires.txt +0 -0
  26. {xcoding-0.1.1 → xcoding-0.1.3}/xcoding.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xcoding
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: xcoding by @c7s89r — a local-model coding agent. Claude Code, but powered by Ollama or llama.cpp.
5
5
  Author-email: c7s89r <c7s89r@users.noreply.github.com>
6
6
  Maintainer-email: c7s89r <c7s89r@users.noreply.github.com>
@@ -31,7 +31,7 @@ A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to
31
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 xcoding` and run `xcode`.
34
+ > pull a tool-capable model, then `pip install xcoding` and run `xcoding`.
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
@@ -44,7 +44,7 @@ and every shell command asks for your approval first.
44
44
  ollama serve
45
45
  ollama pull qwen2.5-coder # a model that's good at tool use
46
46
  pip install xcoding
47
- xcode
47
+ xcoding
48
48
  ```
49
49
 
50
50
  ## Install
@@ -53,7 +53,7 @@ xcode
53
53
  pip install xcoding
54
54
  ```
55
55
 
56
- Then just run `xcode` from any project folder.
56
+ Then just run `xcoding` from any project folder.
57
57
 
58
58
  Or from source:
59
59
 
@@ -84,7 +84,7 @@ llama-server -m your-model.gguf # listens on :8080, OpenAI-compatible
84
84
  ## Use it
85
85
 
86
86
  ```bash
87
- xcode
87
+ xcoding
88
88
  # or: python -m xcode
89
89
  ```
90
90
 
@@ -103,7 +103,7 @@ In-REPL commands: `/help`, `/models`, `/model`, `/init`, `/todos`, `/perms`,
103
103
  - Attach files inline with `@path` (e.g. `explain @xcode/agent.py`).
104
104
  - The agent tracks a **todo list** for multi-step work (`/todos` to view).
105
105
  - Old turns are **auto-compacted** when the context meter fills; `/compact`
106
- forces it. Conversations are **saved** per project — `xcode --resume` or
106
+ forces it. Conversations are **saved** per project — `xcoding --resume` or
107
107
  `/resume` to pick up where you left off.
108
108
  - Drop an **XCODE.md** at the repo root (or run `/init`) and it's auto-loaded
109
109
  as project memory.
@@ -137,9 +137,9 @@ MCP tools show up to the model as `mcp__<server>__<tool>`.
137
137
  ### Headless / scripting
138
138
 
139
139
  ```bash
140
- xcode -p "summarize what this repo does" # read-only, prints, exits
141
- xcode -p "bump the version to 0.2.0" --yes # auto-approve writes
142
- xcode -p "what changed?" --resume # continue last session
140
+ xcoding -p "summarize what this repo does" # read-only, prints, exits
141
+ xcoding -p "bump the version to 0.2.0" --yes # auto-approve writes
142
+ xcoding -p "what changed?" --resume # continue last session
143
143
  ```
144
144
 
145
145
  ## Configuration (env vars)
@@ -4,7 +4,7 @@ A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to
4
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 xcoding` and run `xcode`.
7
+ > pull a tool-capable model, then `pip install xcoding` and run `xcoding`.
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
@@ -17,7 +17,7 @@ and every shell command asks for your approval first.
17
17
  ollama serve
18
18
  ollama pull qwen2.5-coder # a model that's good at tool use
19
19
  pip install xcoding
20
- xcode
20
+ xcoding
21
21
  ```
22
22
 
23
23
  ## Install
@@ -26,7 +26,7 @@ xcode
26
26
  pip install xcoding
27
27
  ```
28
28
 
29
- Then just run `xcode` from any project folder.
29
+ Then just run `xcoding` from any project folder.
30
30
 
31
31
  Or from source:
32
32
 
@@ -57,7 +57,7 @@ llama-server -m your-model.gguf # listens on :8080, OpenAI-compatible
57
57
  ## Use it
58
58
 
59
59
  ```bash
60
- xcode
60
+ xcoding
61
61
  # or: python -m xcode
62
62
  ```
63
63
 
@@ -76,7 +76,7 @@ In-REPL commands: `/help`, `/models`, `/model`, `/init`, `/todos`, `/perms`,
76
76
  - Attach files inline with `@path` (e.g. `explain @xcode/agent.py`).
77
77
  - The agent tracks a **todo list** for multi-step work (`/todos` to view).
78
78
  - Old turns are **auto-compacted** when the context meter fills; `/compact`
79
- forces it. Conversations are **saved** per project — `xcode --resume` or
79
+ forces it. Conversations are **saved** per project — `xcoding --resume` or
80
80
  `/resume` to pick up where you left off.
81
81
  - Drop an **XCODE.md** at the repo root (or run `/init`) and it's auto-loaded
82
82
  as project memory.
@@ -110,9 +110,9 @@ MCP tools show up to the model as `mcp__<server>__<tool>`.
110
110
  ### Headless / scripting
111
111
 
112
112
  ```bash
113
- xcode -p "summarize what this repo does" # read-only, prints, exits
114
- xcode -p "bump the version to 0.2.0" --yes # auto-approve writes
115
- xcode -p "what changed?" --resume # continue last session
113
+ xcoding -p "summarize what this repo does" # read-only, prints, exits
114
+ xcoding -p "bump the version to 0.2.0" --yes # auto-approve writes
115
+ xcoding -p "what changed?" --resume # continue last session
116
116
  ```
117
117
 
118
118
  ## Configuration (env vars)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "xcoding"
3
- version = "0.1.1"
3
+ version = "0.1.3"
4
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"
@@ -30,7 +30,7 @@ Repository = "https://github.com/c7s89r/xcode"
30
30
  Issues = "https://github.com/c7s89r/xcode/issues"
31
31
 
32
32
  [project.scripts]
33
- xcode = "xcode.cli:main"
33
+ xcoding = "xcode.cli:main"
34
34
 
35
35
  [build-system]
36
36
  requires = ["setuptools>=68"]
@@ -581,7 +581,7 @@ def _run_repl(args) -> int:
581
581
 
582
582
 
583
583
  def main() -> None:
584
- parser = argparse.ArgumentParser(prog="xcode",
584
+ parser = argparse.ArgumentParser(prog="xcoding",
585
585
  description="Local-model coding agent.")
586
586
  parser.add_argument("-p", "--print", metavar="PROMPT",
587
587
  help="headless: run one prompt, print result, exit")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xcoding
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: xcoding by @c7s89r — a local-model coding agent. Claude Code, but powered by Ollama or llama.cpp.
5
5
  Author-email: c7s89r <c7s89r@users.noreply.github.com>
6
6
  Maintainer-email: c7s89r <c7s89r@users.noreply.github.com>
@@ -31,7 +31,7 @@ A local-model coding agent by **@c7s89r** — like Claude Code, but it talks to
31
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 xcoding` and run `xcode`.
34
+ > pull a tool-capable model, then `pip install xcoding` and run `xcoding`.
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
@@ -44,7 +44,7 @@ and every shell command asks for your approval first.
44
44
  ollama serve
45
45
  ollama pull qwen2.5-coder # a model that's good at tool use
46
46
  pip install xcoding
47
- xcode
47
+ xcoding
48
48
  ```
49
49
 
50
50
  ## Install
@@ -53,7 +53,7 @@ xcode
53
53
  pip install xcoding
54
54
  ```
55
55
 
56
- Then just run `xcode` from any project folder.
56
+ Then just run `xcoding` from any project folder.
57
57
 
58
58
  Or from source:
59
59
 
@@ -84,7 +84,7 @@ llama-server -m your-model.gguf # listens on :8080, OpenAI-compatible
84
84
  ## Use it
85
85
 
86
86
  ```bash
87
- xcode
87
+ xcoding
88
88
  # or: python -m xcode
89
89
  ```
90
90
 
@@ -103,7 +103,7 @@ In-REPL commands: `/help`, `/models`, `/model`, `/init`, `/todos`, `/perms`,
103
103
  - Attach files inline with `@path` (e.g. `explain @xcode/agent.py`).
104
104
  - The agent tracks a **todo list** for multi-step work (`/todos` to view).
105
105
  - Old turns are **auto-compacted** when the context meter fills; `/compact`
106
- forces it. Conversations are **saved** per project — `xcode --resume` or
106
+ forces it. Conversations are **saved** per project — `xcoding --resume` or
107
107
  `/resume` to pick up where you left off.
108
108
  - Drop an **XCODE.md** at the repo root (or run `/init`) and it's auto-loaded
109
109
  as project memory.
@@ -137,9 +137,9 @@ MCP tools show up to the model as `mcp__<server>__<tool>`.
137
137
  ### Headless / scripting
138
138
 
139
139
  ```bash
140
- xcode -p "summarize what this repo does" # read-only, prints, exits
141
- xcode -p "bump the version to 0.2.0" --yes # auto-approve writes
142
- xcode -p "what changed?" --resume # continue last session
140
+ xcoding -p "summarize what this repo does" # read-only, prints, exits
141
+ xcoding -p "bump the version to 0.2.0" --yes # auto-approve writes
142
+ xcoding -p "what changed?" --resume # continue last session
143
143
  ```
144
144
 
145
145
  ## Configuration (env vars)
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ xcoding = xcode.cli:main
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- xcode = xcode.cli:main
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