feat: File Explorer & File Operations (Issue #6)#11
Merged
Conversation
4 tasks
3399e0b to
8ba3ad1
Compare
added 2 commits
March 9, 2026 21:22
- Add file_operations.go with file browser and action handlers - Implement /claude-files command to browse project files - Implement /claude-new-file command to create files - Add file action menu (view, edit, delete) - View file content with syntax highlighting - Delete files with confirmation - Extend BridgeClient with file operation methods - Register HTTP endpoints for file actions - Update help command with file operation docs Bridge server endpoints already implemented in Issue #3. Full interactive editing deferred to Issue #5.
- Remove duplicate ServeHTTP handler from plugin.go - Remove duplicate getPluginURL implementation - Keep unified handlers from actions.go/post_utils.go Verified with make test (backend + frontend passing).
8ba3ad1 to
65a5a9f
Compare
Author
|
Rebased on latest \ and resolved conflicts. I also fixed duplicate handler methods introduced during rebase (\ and ), then ran full test suite via \ (backend + frontend both passing). |
Author
|
Rebased on latest main and resolved conflicts. Also fixed duplicate handler methods introduced during rebase (ServeHTTP and getPluginURL), then ran full test suite with |
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.
Summary
Implements file browsing and basic file operations for the Claude Code Mattermost plugin.
Changes
/claude-filescommand to browse project files/claude-new-filecommand to create new filesBridge Server
File API endpoints were already implemented in Issue #3:
Implementation Notes
Testing
Closes
#6
Related Issues