tabminal 2.0.2 → 2.0.4
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 +7 -7
- package/src/terminal-session.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tabminal",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "A modern, persistent web terminal with multi-tab support and real-time system monitoring.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@fontsource/monaspace-neon": "^5.2.5",
|
|
36
|
-
"@koa/router": "^15.3.
|
|
36
|
+
"@koa/router": "^15.3.1",
|
|
37
37
|
"@mozilla/readability": "^0.6.0",
|
|
38
|
-
"jsdom": "^28.
|
|
39
|
-
"koa": "^3.1.
|
|
38
|
+
"jsdom": "^28.1.0",
|
|
39
|
+
"koa": "^3.1.2",
|
|
40
40
|
"koa-bodyparser": "^4.4.1",
|
|
41
41
|
"koa-static": "^5.0.0",
|
|
42
42
|
"node-ansiparser": "^2.2.1",
|
|
43
43
|
"node-pty": "^1.1.0",
|
|
44
|
-
"openai": "^6.
|
|
45
|
-
"utilitas": "^2001.1.
|
|
44
|
+
"openai": "^6.27.0",
|
|
45
|
+
"utilitas": "^2001.1.132",
|
|
46
46
|
"ws": "^8.19.0"
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://github.com/leask/tabminal#readme",
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"eslint": "^
|
|
57
|
+
"eslint": "^10.0.3"
|
|
58
58
|
}
|
|
59
59
|
}
|
package/src/terminal-session.mjs
CHANGED
|
@@ -552,7 +552,7 @@ export class TerminalSession {
|
|
|
552
552
|
// Don't trigger on simple interruptions (SIGINT=130) or common non-errors?
|
|
553
553
|
// 130 = Ctrl+C. Usually user intention.
|
|
554
554
|
if (exitCode !== 130) {
|
|
555
|
-
this._handleAiCommand(PROMPT_PREFIX + 'The previous command failed. Help me fix it.', { isAutoFix: true });
|
|
555
|
+
this._handleAiCommand(PROMPT_PREFIX + 'The previous command failed. Help me fix it. Focus on the recent commands and provide concise, clear answers. Avoid long explanations unless explicitly requested by the user.', { isAutoFix: true });
|
|
556
556
|
}
|
|
557
557
|
}
|
|
558
558
|
}
|