Skip to content

Commit ca43312

Browse files
authored
Merge pull request #110 from xpcmdshell/release/0.17.0
Release 0.17.0
2 parents e1e3b77 + 25db3d0 commit ca43312

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ There are two main ways to use py-code-mode:
110110
Use the SDK when you are embedding py-code-mode directly into your own app or agent framework and want control over the runtime and how it is exposed.
111111

112112
```bash
113-
uv add git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1
113+
uv add git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0
114114
```
115115

116116
The SDK gives your app orchestration-side methods for tools, workflows, artifacts, and dependencies. These can be wrapped to expose to your agent as tools via your favorite agent framework.
@@ -197,7 +197,7 @@ For example, to expose py-code-mode to Claude Code agents, add it to your MCP co
197197

198198
```bash
199199
claude mcp add -s user py-code-mode \
200-
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1 \
200+
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0 \
201201
py-code-mode-mcp --base ~/.code-mode
202202
```
203203

docs/cli-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The MCP server exposes py-code-mode to Claude Code and other MCP clients.
1010

1111
```bash
1212
# Add to Claude Code
13-
claude mcp add py-code-mode -- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1 py-code-mode-mcp --base ~/.code-mode
13+
claude mcp add py-code-mode -- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0 py-code-mode-mcp --base ~/.code-mode
1414
```
1515

1616
### Usage

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide walks through installing py-code-mode and running your first agent se
77
### As a Python Library
88

99
```bash
10-
uv add git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1
10+
uv add git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0
1111
```
1212

1313
### For Claude Code (MCP Server)
@@ -16,15 +16,15 @@ uv add git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1
1616

1717
```bash
1818
claude mcp add -s user py-code-mode \
19-
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1 \
19+
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0 \
2020
py-code-mode-mcp --base ~/.code-mode
2121
```
2222

2323
**Project-scoped installation** (only in the current project):
2424

2525
```bash
2626
claude mcp add -s project py-code-mode \
27-
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1 \
27+
-- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0 \
2828
py-code-mode-mcp --base ./.code-mode
2929
```
3030

docs/integrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The MCP server exposes these tools:
4040
#### Claude Code
4141

4242
```bash
43-
claude mcp add py-code-mode -- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.16.1 py-code-mode-mcp --base ~/.code-mode
43+
claude mcp add py-code-mode -- uvx --from git+https://github.com/xpcmdshell/py-code-mode.git@v0.17.0 py-code-mode-mcp --base ~/.code-mode
4444
```
4545

4646
#### Generic MCP Client

examples/azure-container-apps/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/minimal/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "py-code-mode"
3-
version = "0.16.1"
3+
version = "0.17.0"
44
description = "Code mode for LLM agents - tools as Python SDK bindings via Jupyter execution"
55
readme = "README.md"
66
requires-python = ">=3.12"

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)