par5-mcp 0.1.2 → 0.2.0
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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +11 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/jrandolf/par5-mcp/compare/v0.1.2...v0.2.0) (2025-12-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* only return text
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* only return text ([0b73afd](https://github.com/jrandolf/par5-mcp/commit/0b73afdadcb71c583ea87958ef89e920d7517d8e))
|
|
13
|
+
|
|
3
14
|
## [0.1.2](https://github.com/jrandolf/par5-mcp/compare/v0.1.1...v0.1.2) (2025-12-30)
|
|
4
15
|
|
|
5
16
|
|
package/dist/index.js
CHANGED
|
@@ -549,12 +549,12 @@ VARIABLE SUBSTITUTION:
|
|
|
549
549
|
case "claude": {
|
|
550
550
|
// Claude Code CLI with --dangerously-skip-permissions and streaming output
|
|
551
551
|
const claudeArgs = process.env.PAR5_CLAUDE_ARGS || "";
|
|
552
|
-
return `claude --dangerously-skip-permissions --output-format
|
|
552
|
+
return `claude --dangerously-skip-permissions --output-format text --verbose ${agentArgs} ${claudeArgs} -p '${escapedPrompt}'`;
|
|
553
553
|
}
|
|
554
554
|
case "gemini": {
|
|
555
555
|
// Gemini CLI with yolo mode and streaming JSON output
|
|
556
556
|
const geminiArgs = process.env.PAR5_GEMINI_ARGS || "";
|
|
557
|
-
return `gemini --yolo --output-format
|
|
557
|
+
return `gemini --yolo --output-format text ${agentArgs} ${geminiArgs} '${escapedPrompt}'`;
|
|
558
558
|
}
|
|
559
559
|
case "codex": {
|
|
560
560
|
// Codex CLI exec subcommand with full-auto flag and JSON streaming output
|