-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Add fuzzy file search functionality #3240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
78e35d3
f3fdf77
da00e27
89a5204
234ba44
2db486c
9b1d66e
37ba8e7
b093f94
7a3c620
4f6d0cd
4bf9517
1eed6af
8598402
2b59946
2e5a36e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "demo": { | ||
| "title": "Goose File Operations Demo", | ||
| "version": "1.0.0", | ||
| "features": [ | ||
| "File creation", | ||
| "File reading", | ||
| "Content modification", | ||
| "Multiple formats" | ||
| ], | ||
| "metadata": { | ||
| "created_by": "Goose AI Assistant", | ||
| "created_at": "2025-07-02T17:33:32Z", | ||
| "file_type": "demonstration" | ||
| } | ||
| } | ||
| } | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what is this file? |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| Hello, World! | ||
|
|
||
| This is a demonstration of file operations in Goose. | ||
|
|
||
| Here are some key points: | ||
| - Files can be created and edited | ||
| - Content can be viewed and modified | ||
| - Multiple file formats are supported | ||
|
|
||
| Current timestamp: 2025-07-02 17:33:32 | ||
|
|
||
| --- UPDATE --- | ||
| This content was added after the initial file creation! | ||
| File modification operations include: | ||
| - String replacement | ||
| - Line insertion | ||
| - Content appending | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and this one? |
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,6 +132,9 @@ export type ExtensionConfig = { | |
| description?: string | null; | ||
| env_keys?: Array<string>; | ||
| envs?: Envs; | ||
| headers?: { | ||
| [key: string]: string; | ||
| }; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we need this? |
||
| /** | ||
| * The name used to identify this extension | ||
| */ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this?