agentk8 2.1.2 → 2.1.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/dist/cli.js +4 -4
- package/dist/components/App.js +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -4,10 +4,10 @@ import { render } from 'ink';
|
|
|
4
4
|
import meow from 'meow';
|
|
5
5
|
import { App } from './components/App.js';
|
|
6
6
|
import { checkClaudeInstalled } from './lib/claude.js';
|
|
7
|
-
const VERSION = '2.1.
|
|
7
|
+
const VERSION = '2.1.4';
|
|
8
8
|
const cli = meow(`
|
|
9
9
|
Usage
|
|
10
|
-
$
|
|
10
|
+
$ agentk8 [options]
|
|
11
11
|
|
|
12
12
|
Options
|
|
13
13
|
--mode, -m Set mode: dev (default) or ml
|
|
@@ -15,8 +15,8 @@ const cli = meow(`
|
|
|
15
15
|
--help, -h Show this help
|
|
16
16
|
|
|
17
17
|
Examples
|
|
18
|
-
$
|
|
19
|
-
$
|
|
18
|
+
$ agentk8 Start dev mode
|
|
19
|
+
$ agentk8 --mode ml Start ML mode
|
|
20
20
|
|
|
21
21
|
Commands (inside app)
|
|
22
22
|
/help Show available commands
|
package/dist/components/App.js
CHANGED
|
@@ -114,7 +114,7 @@ Ctrl+A/E - Jump to start/end`,
|
|
|
114
114
|
exit();
|
|
115
115
|
}
|
|
116
116
|
});
|
|
117
|
-
return (_jsxs(Box, { flexDirection: "column", children: [_jsx(Banner, { version: version }), _jsx(Static, { items: messages, children: (msg) => (_jsx(ChatMessage, { role: msg.role, agentName: msg.agentName, content: msg.content, tokens: msg.tokens }, msg.id)) }), isProcessing && processingStartTime && (_jsx(ThinkingIndicator, { startTime: processingStartTime })), error && (_jsx(Box, { marginY: 1, marginLeft: 1, children: _jsxs(Text, { color: "#e53e3e", children: ["\u2717 Error: ", error] }) })), _jsx(Input, { onSubmit: handleSubmit, disabled: isProcessing, placeholder: "Type a message or /help for commands..." }), _jsx(StatusBar, { mode: mode, tokens: totalTokens, startTime: startTime, isProcessing: isProcessing })] }));
|
|
117
|
+
return (_jsxs(Box, { flexDirection: "column", children: [messages.length === 0 && _jsx(Banner, { version: version }), _jsx(Static, { items: messages, children: (msg) => (_jsx(ChatMessage, { role: msg.role, agentName: msg.agentName, content: msg.content, tokens: msg.tokens }, msg.id)) }), isProcessing && processingStartTime && (_jsx(ThinkingIndicator, { startTime: processingStartTime })), error && (_jsx(Box, { marginY: 1, marginLeft: 1, children: _jsxs(Text, { color: "#e53e3e", children: ["\u2717 Error: ", error] }) })), _jsx(Input, { onSubmit: handleSubmit, disabled: isProcessing, placeholder: "Type a message or /help for commands..." }), _jsx(StatusBar, { mode: mode, tokens: totalTokens, startTime: startTime, isProcessing: isProcessing })] }));
|
|
118
118
|
};
|
|
119
119
|
function formatElapsed(start) {
|
|
120
120
|
const secs = Math.floor((Date.now() - start.getTime()) / 1000);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentk8",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "Multi-Agent Claude Code Terminal Suite",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
|
-
"
|
|
8
|
+
"agentk8": "dist/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|