natureco-cli 5.7.11 → 5.7.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.12",
|
|
4
4
|
"description": "OpenClaw'dan daha güvenli, daha hızlı, daha ucuz AI agent CLI. Multi-agent, self-evolving skills, audit log, maliyet optimizasyonu ve NatureCo platform-native.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"natureco": "bin/natureco.js"
|
|
@@ -104,7 +104,8 @@ function onPasteDetected(pasteStr) {
|
|
|
104
104
|
const newlineCount = (pasteStr.match(/\r\n|\r|\n/g) || []).length;
|
|
105
105
|
const lineCount = newlineCount + 1;
|
|
106
106
|
_pasteContext = { lineCount };
|
|
107
|
-
|
|
107
|
+
// Mevcut satırı temizle (prompt + öncesinde yazılan text) ve özet yaz
|
|
108
|
+
process.stdout.write(`\r\x1b[2K[Pasted ~${lineCount} lines]\n`);
|
|
108
109
|
}
|
|
109
110
|
|
|
110
111
|
function createPasteSafeInput(source = process.stdin) {
|