Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
04facd6
feat: basic ai assistant setup and ui
bajrangCoder May 11, 2025
ab8c589
Merge remote-tracking branch 'origin/main' into ai-agent
bajrangCoder May 13, 2025
2be29a2
feat: profile selection dialog
bajrangCoder May 17, 2025
69e4170
toggle able history panel
bajrangCoder May 20, 2025
6c399c8
feat: basic ai assistant chat feature
bajrangCoder May 24, 2025
c103c75
Merge remote-tracking branch 'origin/main' into ai-agent
bajrangCoder May 29, 2025
d890d91
feat: improved code block and fix highlighting
bajrangCoder May 29, 2025
3758122
feat: show loader before ai response stream
bajrangCoder May 30, 2025
6ae8cea
feat: AI assistant with streaming chat,in memory context with agentch…
vizzyfreezy Jun 1, 2025
2d536be
fix: formatting
bajrangCoder Jun 1, 2025
b831048
fix: highlighting, message sync, searchTool
bajrangCoder Jun 1, 2025
863382b
feat: add delete history button and improved few ui styling
bajrangCoder Jun 1, 2025
7884868
Merge branch 'main' into ai-agent
bajrangCoder Jun 1, 2025
4dbb288
feat: system prompt and fix html rendering in codeblock
bajrangCoder Jun 1, 2025
a1d34ce
add edit ui(not the edit functionality)
bajrangCoder Jun 2, 2025
7715ae6
fix: handle error message case and add workspace info in prompt
bajrangCoder Jun 2, 2025
71a33a2
Merge branch 'main' into ai-agent
bajrangCoder Jun 3, 2025
672fbbd
feat: add readFile tool
bajrangCoder Jun 3, 2025
53e1a20
Ai agent in- Memory saver to custom sqlite saver(#3)
vizzyfreezy Jun 3, 2025
3adf208
fix: checkpointers , db issue and tool resp
bajrangCoder Jun 4, 2025
79a229b
feat: add fetch tool
bajrangCoder Jun 4, 2025
086bc2d
Merge remote-tracking branch 'origin/main' into ai-agent
bajrangCoder Jun 6, 2025
40da706
Merge branch 'main' into ai-agent
bajrangCoder Jun 23, 2025
0ec7f37
Merge branch 'main' into ai-agent
bajrangCoder Jun 28, 2025
c53a941
Merge branch 'main' into ai-agent
bajrangCoder Jun 29, 2025
70ced55
Merge branch 'main' into ai-agent
bajrangCoder Jun 29, 2025
71d57fc
feat: add listDirectory tool
bajrangCoder Jun 29, 2025
f9290d2
Merge branch 'main' into ai-agent
bajrangCoder Jul 1, 2025
ad7a427
fix: handle different types of saf uri format in readFile tool
bajrangCoder Jul 1, 2025
f4ff306
resolve conflicts
bajrangCoder Aug 16, 2025
81811cf
Merge branch 'main' into ai-agent
bajrangCoder Aug 17, 2025
949a0e4
fix
bajrangCoder Aug 17, 2025
1a4d4de
fix formatting
bajrangCoder Aug 17, 2025
c047ada
update stuff
bajrangCoder Aug 17, 2025
3a33bf0
feat: add createDir and editFile tool
bajrangCoder Aug 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,894 changes: 1,844 additions & 50 deletions package-lock.json

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"cordova-plugin-advanced-http": {
"ANDROIDBLACKLISTSECURESOCKETPROTOCOLS": "SSLv3,TLSv1"
},
"cordova-sqlite-storage": {},
"cordova-plugin-websocket": {},
"cordova-plugin-buildinfo": {},
"com.foxdebug.acode.rk.exec.terminal": {},
Expand Down Expand Up @@ -79,6 +80,7 @@
"cordova-plugin-sftp": "file:src/plugins/sftp",
"cordova-plugin-system": "file:src/plugins/system",
"cordova-plugin-websocket": "file:src/plugins/websocket",
"cordova-sqlite-storage": "^7.0.0",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.3",
"path-browserify": "^1.0.1",
Expand All @@ -95,6 +97,11 @@
},
"dependencies": {
"@deadlyjack/ajax": "^1.2.6",
"@langchain/core": "^0.3.57",
"@langchain/google-genai": "^0.2.10",
"@langchain/langgraph": "^0.2.74",
"@langchain/langgraph-checkpoint": "^0.0.18",
"@langchain/langgraph-swarm": "^0.0.3",
"@ungap/custom-elements": "^1.3.0",
"@xterm/addon-attach": "^0.11.0",
"@xterm/addon-fit": "^0.10.0",
Expand All @@ -112,9 +119,11 @@
"escape-string-regexp": "^5.0.0",
"esprima": "^4.0.1",
"filesize": "^11.0.2",
"he": "^1.2.0",
"html-tag-js": "^2.4.15",
"js-base64": "^3.7.7",
"jszip": "^3.10.1",
"langchain": "^0.3.27",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
Expand All @@ -124,9 +133,11 @@
"minimatch": "^10.0.3",
"moment": "^2.30.1",
"mustache": "^4.2.0",
"turndown": "^7.2.0",
"url-parse": "^1.5.10",
"vanilla-picker": "^2.12.3",
"yargs": "^18.0.0"
"yargs": "^18.0.0",
"zod": "^3.25.47"
},
"browserslist": "cover 100%,not android < 5"
}
8 changes: 8 additions & 0 deletions src/ace/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,14 @@ const commands = [
},
readOnly: true,
},
{
name: "openAiAssistant",
description: "AI Assistant",
exec() {
acode.exec("open", "ai_assistant");
},
readOnly: true,
},
{
name: "openFileExplorer",
description: "File Explorer",
Expand Down
5 changes: 5 additions & 0 deletions src/lib/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import prompt from "dialogs/prompt";
import select from "dialogs/select";
import actions from "handlers/quickTools";
import recents from "lib/recents";
import AiAssistant from "pages/aiAssistant";
import FileBrowser from "pages/fileBrowser";
import plugins from "pages/plugins";
import Problems from "pages/problems/problems";
Expand Down Expand Up @@ -188,6 +189,10 @@ export default {
FileBrowser();
break;

case "ai_assistant":
AiAssistant();
break;

default:
return;
}
Expand Down
Loading