codeep 1.0.109 → 1.0.111
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/app.js +13 -19
- package/package.json +1 -1
package/dist/app.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useState, useEffect, useCallback } from 'react';
|
|
2
|
+
import React, { useState, useEffect, useCallback } from 'react';
|
|
3
3
|
import { Box, Text, useApp, useInput, useStdout } from 'ink';
|
|
4
4
|
import clipboardy from 'clipboardy';
|
|
5
5
|
import { logger } from './utils/logger.js';
|
|
@@ -37,21 +37,11 @@ import { learnFromProject, addCustomRule, getLearningStatus } from './utils/lear
|
|
|
37
37
|
import { getAllSkills, findSkill, formatSkillsList, formatSkillHelp, generateSkillPrompt, saveCustomSkill, deleteCustomSkill, parseSkillChain, parseSkillArgs, searchSkills, trackSkillUsage, getSkillStats } from './utils/skills.js';
|
|
38
38
|
import { AgentProgress, AgentSummary, LiveCodeStream } from './components/AgentProgress.js';
|
|
39
39
|
import { createActionLog } from './utils/tools.js';
|
|
40
|
-
// Modal overlay component - renders modal content on top of chat
|
|
41
|
-
const ModalOverlay = ({ children, onClose }) => {
|
|
42
|
-
useInput((input, key) => {
|
|
43
|
-
if (key.escape) {
|
|
44
|
-
onClose();
|
|
45
|
-
}
|
|
46
|
-
});
|
|
47
|
-
return (_jsxs(Box, { flexDirection: "column", borderStyle: "round", borderColor: "#f02a30", padding: 1, marginTop: 2, marginBottom: 2, children: [children, _jsx(Box, { marginTop: 1, children: _jsx(Text, { color: "cyan", children: "Press Escape to close" }) })] }));
|
|
48
|
-
};
|
|
49
40
|
export const App = () => {
|
|
50
41
|
const { exit } = useApp();
|
|
51
42
|
const { stdout } = useStdout();
|
|
52
43
|
// Start with 'chat' screen, will switch to login if needed after loading API key
|
|
53
44
|
const [screen, setScreen] = useState('chat');
|
|
54
|
-
const [modalScreen, setModalScreen] = useState(null);
|
|
55
45
|
const [messages, setMessages] = useState([]);
|
|
56
46
|
const [inputHistory, setInputHistory] = useState([]);
|
|
57
47
|
const [isLoading, setIsLoading] = useState(false);
|
|
@@ -173,12 +163,16 @@ export const App = () => {
|
|
|
173
163
|
return () => clearTimeout(timer);
|
|
174
164
|
}
|
|
175
165
|
}, [notification, notificationDuration]);
|
|
176
|
-
// Clear
|
|
166
|
+
// Clear terminal when switching to fullscreen views (prevents ghost content from Static)
|
|
167
|
+
const prevScreenRef = React.useRef(screen);
|
|
177
168
|
useEffect(() => {
|
|
178
|
-
|
|
179
|
-
|
|
169
|
+
const fullscreenViews = ['help', 'status', 'settings', 'sessions', 'search', 'export'];
|
|
170
|
+
if (fullscreenViews.includes(screen) && prevScreenRef.current === 'chat') {
|
|
171
|
+
// Clear screen when entering fullscreen view from chat
|
|
172
|
+
stdout?.write('\x1b[2J\x1b[H');
|
|
180
173
|
}
|
|
181
|
-
|
|
174
|
+
prevScreenRef.current = screen;
|
|
175
|
+
}, [screen, stdout]);
|
|
182
176
|
// Handle keyboard shortcuts
|
|
183
177
|
useInput((input, key) => {
|
|
184
178
|
// Ctrl+L to clear chat (F5 doesn't work reliably in all terminals)
|
|
@@ -538,10 +532,10 @@ export const App = () => {
|
|
|
538
532
|
exit();
|
|
539
533
|
break;
|
|
540
534
|
case '/help':
|
|
541
|
-
|
|
535
|
+
setScreen('help');
|
|
542
536
|
break;
|
|
543
537
|
case '/status':
|
|
544
|
-
|
|
538
|
+
setScreen('status');
|
|
545
539
|
break;
|
|
546
540
|
case '/version': {
|
|
547
541
|
const version = getCurrentVersion();
|
|
@@ -629,7 +623,7 @@ export const App = () => {
|
|
|
629
623
|
}
|
|
630
624
|
break;
|
|
631
625
|
case '/settings':
|
|
632
|
-
|
|
626
|
+
setScreen('settings');
|
|
633
627
|
break;
|
|
634
628
|
case '/grant': {
|
|
635
629
|
// Always open permission dialog to allow users to manage permissions
|
|
@@ -1410,7 +1404,7 @@ export const App = () => {
|
|
|
1410
1404
|
const actionColor = change.action === 'delete' ? 'red' : change.action === 'edit' ? 'yellow' : 'green';
|
|
1411
1405
|
const actionLabel = change.action === 'delete' ? 'DELETE' : change.action === 'edit' ? 'EDIT' : 'CREATE';
|
|
1412
1406
|
return (_jsxs(Text, { children: ["\u2022 ", _jsxs(Text, { color: actionColor, children: ["[", actionLabel, "]"] }), " ", change.path, change.action !== 'delete' && change.content.includes('\n') && ` (${change.content.split('\n').length} lines)`] }, i));
|
|
1413
|
-
}), _jsx(Text, { children: " " }), _jsxs(Text, { children: ["Apply changes? ", _jsx(Text, { color: "#f02a30", bold: true, children: "[Y/n]" })] }), _jsx(Text, { color: "cyan", children: "Press Y to apply, N or Esc to reject" })] })), notification && (_jsx(Box, { justifyContent: "center", children: _jsx(Text, { color: "cyan", children: notification }) })),
|
|
1407
|
+
}), _jsx(Text, { children: " " }), _jsxs(Text, { children: ["Apply changes? ", _jsx(Text, { color: "#f02a30", bold: true, children: "[Y/n]" })] }), _jsx(Text, { color: "cyan", children: "Press Y to apply, N or Esc to reject" })] })), notification && (_jsx(Box, { justifyContent: "center", children: _jsx(Text, { color: "cyan", children: notification }) })), _jsxs(Box, { flexDirection: "column", children: [_jsx(Text, { color: "#f02a30", children: '─'.repeat(Math.max(20, stdout?.columns || 80)) }), _jsx(Box, { paddingX: 1, children: _jsx(ChatInput, { onSubmit: handleSubmit, disabled: isLoading || isAgentRunning || pendingFileChanges.length > 0, history: inputHistory, clearTrigger: clearInputTrigger }) }), _jsx(Text, { color: "#f02a30", children: '─'.repeat(Math.max(20, stdout?.columns || 80)) })] }), _jsxs(Box, { flexDirection: "column", children: [_jsx(Box, { children: _jsxs(Text, { children: [_jsx(Text, { color: "#f02a30", bold: true, children: "Ctrl+V" }), _jsx(Text, { children: " Paste " }), _jsx(Text, { color: "#f02a30", bold: true, children: "Ctrl+L" }), _jsx(Text, { children: " Clear " }), _jsx(Text, { color: "#f02a30", bold: true, children: "Esc" }), _jsx(Text, { children: " Cancel " }), _jsx(Text, { color: "#f02a30", bold: true, children: "\u2191\u2193" }), _jsx(Text, { children: " History " }), _jsx(Text, { color: "#f02a30", bold: true, children: "/help" }), _jsx(Text, { children: " Commands" })] }) }), _jsx(Box, { children: config.get('agentMode') === 'on' ? (hasWriteAccess && projectContext ? (_jsx(Text, { color: "green", children: "Agent: ON \u2713" })) : (_jsx(Text, { color: "yellow", children: "Agent: ON (no permission - use /grant)" }))) : (_jsx(Text, { color: "cyan", children: "Agent: Manual (use /agent)" })) })] })] }, "chat-screen"));
|
|
1414
1408
|
};
|
|
1415
1409
|
// Model selection component
|
|
1416
1410
|
const ModelSelect = ({ onClose, notify }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeep",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.111",
|
|
4
4
|
"description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|