-
Notifications
You must be signed in to change notification settings - Fork 78
feat: add Slack adapter with multi-platform ChatAdapter architecture #259
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
Open
dogzzdogzz
wants to merge
18
commits into
openabdev:main
Choose a base branch
from
dogzzdogzz:feat/slack-adapter
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6e3015c
feat: add Slack adapter with multi-platform ChatAdapter architecture
tonylee-shopback bd61069
refactor: extract shared media module, centralize sender context
tonylee-shopback 67d76ab
chore: remove unused methods (is_thread, pool, is_image_mime)
tonylee-shopback ecb983b
fix: review findings — regex LazyLock, user name resolution, thread f…
tonylee-shopback 9c1c35a
feat(helm): add Slack adapter support to Helm chart
tonylee-shopback a76f7a6
docs: add Slack adapter documentation
tonylee-shopback 0e04df0
fix(helm): align discord/slack enabled conditions across all templates
dogzzdogzz 1560206
feat(helm): add global labels/annotations and per-agent podLabels/pod…
dogzzdogzz 74387eb
fix(slack): allow file_share subtype in thread follow-ups
dogzzdogzz 7811e76
fix: address PR review feedback
dogzzdogzz 4a159dc
fix: resolve clippy errors (too_many_arguments, unnecessary_map_or)
dogzzdogzz 37b6275
feat(slack): convert Markdown to Slack mrkdwn format
dogzzdogzz a7c5f50
feat(helm): support automountServiceAccountToken in deployment
dogzzdogzz 6ec589c
Merge origin/main into feat/slack-adapter
dogzzdogzz cd9ea56
Merge origin/main into feat/slack-adapter
dogzzdogzz 42bb000
Merge origin/main (v0.7.5) into feat/slack-adapter
dogzzdogzz b758fd3
Merge origin/main: port voice message 🎤 reaction (STT disabled)
dogzzdogzz eeae9de
Merge origin/main: add OpenCode agent backend support
dogzzdogzz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -14,6 +14,8 @@ serenity = { version = "0.12", default-features = false, features = ["client", " | |||||||||
| uuid = { version = "1", features = ["v4"] } | ||||||||||
| regex = "1" | ||||||||||
| anyhow = "1" | ||||||||||
| async-trait = "0.1" | ||||||||||
| futures-util = "0.3" | ||||||||||
| rand = "0.8" | ||||||||||
| clap = { version = "4", features = ["derive"] } | ||||||||||
| rpassword = "7" | ||||||||||
|
|
@@ -22,3 +24,4 @@ base64 = "0.22" | |||||||||
| image = { version = "0.25", default-features = false, features = ["jpeg", "png", "gif", "webp"] } | ||||||||||
| unicode-width = "0.2" | ||||||||||
| libc = "0.2" | ||||||||||
| tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] } | ||||||||||
|
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. Add
Suggested change
|
||||||||||
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Add
lrucrate for bounded user cache: