You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Changelog
2
2
3
+
## [v0.23.9] - 2026-04-14
4
+
5
+
### Changed
6
+
7
+
-**README install instructions**: Replaced step-by-step Claude Code setup with single copy-paste messages for Claude Code and Codex, added manual install section
Copy file name to clipboardExpand all lines: README.md
+22-43Lines changed: 22 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,69 +58,48 @@ From here, Pipelex handles model routing across 60+ models, structured output pa
58
58
59
59
# Quick Start
60
60
61
-
```bash
62
-
uv tool install pipelex
63
-
pipelex init
64
-
```
65
-
66
61
## With Claude Code (Recommended)
67
62
68
-
Install the `mthds` npm package:
63
+
Paste this into Claude Code:
69
64
70
-
```bash
71
-
npm install -g mthds
72
65
```
73
-
74
-
Start Claude Code:
75
-
76
-
```bash
77
-
claude
66
+
Install mthds: run bash -c 'npm install -g mthds && mthds-agent bootstrap && claude plugin marketplace add mthds-ai/mthds-plugins && claude plugin install mthds@mthds-plugins'. Then tell me to restart Claude Code.
78
67
```
79
68
80
-
Tell Claude to install the MTHDS skills marketplace:
69
+
## With Codex
81
70
82
-
```
83
-
/plugin marketplace add mthds-ai/mthds-plugins
84
-
```
85
-
86
-
then install the MTHDS skills plugin:
71
+
Paste this into Codex:
87
72
88
73
```
89
-
/plugin install mthds@mthds-plugins
74
+
Install mthds: run bash -c 'npm install -g mthds && mthds-agent bootstrap && bash <(curl -fsSL https://raw.githubusercontent.com/mthds-ai/mthds-plugins/main/bin/install-codex.sh)'. Then tell me to run /plugins, search for MTHDS, and install it.
90
75
```
91
76
92
-
then reload plugins:
93
-
94
-
```
95
-
/reload-plugins
96
-
```
77
+
Install the [VS Code extension](https://go.pipelex.com/vscode) for `.mthds` syntax highlighting and flowchart visualization.
97
78
98
-
If that doesn't work, exit Claude Code and reopen it:
79
+
## From the Terminal
99
80
81
+
```bash
82
+
npm install -g mthds
83
+
mthds-agent bootstrap
84
+
pipelex init
100
85
```
101
-
/exit
102
-
```
103
-
104
-
Build your first method:
105
86
106
-
```
107
-
/mthds-build A method to summarize articles with key takeaways for different audiences
108
-
```
87
+
Install the [VS Code extension](https://go.pipelex.com/vscode) for `.mthds` syntax highlighting and flowchart visualization.
109
88
110
-
Run it:
89
+
Verify everything is set up correctly:
111
90
112
-
```
113
-
/mthds-run
91
+
```bash
92
+
pipelex doctor
114
93
```
115
94
116
-
## Without Claude Code
95
+
## Python Package Only
117
96
118
-
1. Install the [VS Code extension](https://go.pipelex.com/vscode) for `.mthds` syntax highlighting
119
-
2. Browse methods on the [MTHDS Hub](https://mthds.sh) for inspiration
120
-
3. Author your own `.mthds` methods based on these examples
121
-
4. Validate with `pipelex validate bundle your_method.mthds`
122
-
5. Run them with `pipelex run bundle your_method.mthds`
123
-
6. View the flowchart in VS Code thanks to the extension
97
+
If you just need the Pipelex runtime without agent integration:
0 commit comments