feat(slack): add Slack connector#77
Draft
volod-vana wants to merge 4 commits into
Draft
Conversation
Exports slack.profile, slack.conversations, and slack.messages from the active Slack workspace. Token is read from app.slack.com localStorage; API calls run in-page from the slack.com origin to bypass the app.slack.com service worker. Auto-skips archived, muted, and non-member channels.
Schema Health Check — Non-blocking inherited issues44/50 scopes consistent | 6 inherited Gateway gap(s) | no new blocking issues in this PR |
- artifacts/slack-playwright/slack-playwright-0.1.0.tgz: new bundle - connector-index.json: append slack-playwright entry, refresh sourceTag / sourceCommit / artifactUrl on all entries to this branch's HEAD (standard regen side-effect) The 16 other byte-different artifacts are gtar-version artifacts from running scripts/generate-connector-index.mjs on macOS (BSD tar lacks --sort=name; gtar via PATH shim). Functionally identical to main's artifacts — same bundle contents, different gzip framing.
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.
Adds a Playwright connector for Slack.
Scopes:
slack.profile,slack.conversations(channels + DMs index),slack.messages(bodies + thread replies).How it works:
app.slack.comlocalStorage.slack.comorigin to bypass theapp.slack.comservice worker (which breaks in-page fetch); the browser supplies thedcookie natively.oldestDaysinput limits history depth.Tested locally end-to-end in DataConnect: 392 conversations / 99,247 messages / 16,345 threads, 0 errors (~1h43m, Slack rate-limited).
Status:
experimental.