@pikaa-ai/pikaa 0.3.8 → 0.3.9
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/dist/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -6033,7 +6033,7 @@ function parsePatch(oldSrc, newSrc, contextLines = 3) {
|
|
|
6033
6033
|
// package.json
|
|
6034
6034
|
var package_default = {
|
|
6035
6035
|
name: "@pikaa-ai/pikaa",
|
|
6036
|
-
version: "0.3.
|
|
6036
|
+
version: "0.3.9",
|
|
6037
6037
|
description: "PIKAA CLI - AI coding agent that runs locally in your terminal.",
|
|
6038
6038
|
main: "./dist/index.js",
|
|
6039
6039
|
module: "./dist/index.js",
|
|
@@ -6854,11 +6854,11 @@ class InteractiveLineEditor {
|
|
|
6854
6854
|
} catch {}
|
|
6855
6855
|
}
|
|
6856
6856
|
if (result.trim().length > 0 && !result.startsWith("/")) {
|
|
6857
|
-
process.stdout.write(`\x1B[1A\r\x1B[2K${CliFormatter.formatClaudeUserPrompt(result)}
|
|
6857
|
+
process.stdout.write(`\x1B[1A\r\x1B[2K\x1B[J${CliFormatter.formatClaudeUserPrompt(result)}
|
|
6858
6858
|
|
|
6859
6859
|
`);
|
|
6860
6860
|
} else {
|
|
6861
|
-
process.stdout.write(`\x1B[1A\r\x1B[2K
|
|
6861
|
+
process.stdout.write(`\x1B[1A\r\x1B[2K\x1B[J
|
|
6862
6862
|
`);
|
|
6863
6863
|
}
|
|
6864
6864
|
resolve17(result);
|