Feature/agent friendly - #1557
Open
teknopaul wants to merge 21 commits into
Open
Conversation
Author
Author
Author
Author
Author
Author
Author
|
|
||
| Geany has a "Find in Files..." feature but no "Find File" (by name) feature. | ||
|
|
||
| Windows has no such thing, but Linux has a fast indexed find file features in the OS called "locate" which we can use for the search engine. |
| - If there are **no results** the dialog should stay open, so the user can refine the search. | ||
| - If there is **exactly one result** found, it should presented to the user in the dialog window (without another popup), to open that file, the user just clicks enter. | ||
| - If there are **multiple results** found, it should behave like "Find in Files..." by adding clickable links in the Messages tab. | ||
| - Menu Item "updatedb" whis will run `sudo updatedb` in the background, sudo users privs are needed via popup of some sort. |
There was a problem hiding this comment.
application code initializing a sudo command is risky. I would advise strongly against it, or fork this off to polkit.
| const gchar *root) | ||
| { | ||
| GPtrArray *argv = g_ptr_array_new(); | ||
| g_ptr_array_add(argv, g_strdup("locate")); |
There was a problem hiding this comment.
There are 3 locates that I know of. locate, mlocate, and plocate. Ubuntu seems to be defaulting to plocate now. I am not sure it will build update-alternatives for locate to resolve. This might have to be a search.
…enables visual feedback of Agent multi-phase task progress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.








Adding a tabbed command line interface, that supports copy & paste and naming tabs.
User configured tools can be defined in a conf file (for each file extension type) to run code in the CLI terminal.
Has dedicated side tab for the AI Agent, this is just another CLI that opens your configured AI Agent in the project current directory, supports copy / paste and adding files to the Agents context window.