airbyte-agent-slack 0.1.7__tar.gz → 0.1.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/CHANGELOG.md +20 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/PKG-INFO +32 -13
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/README.md +31 -12
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/REFERENCE.md +507 -1
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/__init__.py +47 -3
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/auth_strategies.py +57 -4
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py +29 -8
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py +50 -1
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/base.py +7 -2
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/security.py +14 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/types.py +9 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/connector.py +334 -1
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/connector_model.py +1771 -704
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/models.py +143 -21
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/types.py +41 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/pyproject.toml +1 -1
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/.gitignore +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/auth_template.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/constants.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/exceptions.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/executor/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/executor/hosted_executor.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/executor/models.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/extensions.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/config.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/exceptions.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/protocols.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http/response.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/http_client.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/introspection.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/logging/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/logging/types.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/observability/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/observability/config.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/observability/models.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/observability/redactor.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/observability/session.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/performance/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/performance/instrumentation.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/performance/metrics.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/components.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/connector.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/extensions.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/schema/operations.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/secrets.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/__init__.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/config.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/events.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/tracker.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/utils.py +0 -0
- {airbyte_agent_slack-0.1.7 → airbyte_agent_slack-0.1.11}/airbyte_agent_slack/_vendored/connector_sdk/validation.py +0 -0
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Slack changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.11] - 2026-01-21
|
|
4
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
5
|
+
- Source commit: d9dfd306
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.1.10] - 2026-01-21
|
|
9
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
10
|
+
- Source commit: c7dab975
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.1.9] - 2026-01-21
|
|
14
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
15
|
+
- Source commit: 3e52abfa
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.1.8] - 2026-01-20
|
|
19
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
20
|
+
- Source commit: 3d42e4e8
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
3
23
|
## [0.1.7] - 2026-01-19
|
|
4
24
|
- Updated connector definition (YAML version 0.1.1)
|
|
5
25
|
- Source commit: 529cebb7
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-slack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.11
|
|
4
4
|
Summary: Airbyte Slack Connector for AI platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
|
|
6
6
|
Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
|
|
@@ -34,8 +34,10 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
# Slack agent connector
|
|
35
35
|
|
|
36
36
|
Slack is a business communication platform that offers messaging, file sharing, and integrations
|
|
37
|
-
with other tools. This connector provides access to users, channels, channel members, channel
|
|
38
|
-
messages, and threads for workspace analytics
|
|
37
|
+
with other tools. This connector provides read access to users, channels, channel members, channel
|
|
38
|
+
messages, and threads for workspace analytics. It also supports write operations including sending
|
|
39
|
+
and updating messages, creating and renaming channels, setting channel topics and purposes, and
|
|
40
|
+
adding reactions to messages.
|
|
39
41
|
|
|
40
42
|
|
|
41
43
|
## Example questions
|
|
@@ -52,17 +54,30 @@ The Slack connector is optimized to handle prompts like these.
|
|
|
52
54
|
- What messages were posted in channel \{channel_id\} last week?
|
|
53
55
|
- Show me the conversation history for channel \{channel_id\}
|
|
54
56
|
- List channel members for the general channel
|
|
57
|
+
- Send a message to channel \{channel_id\} saying 'Hello team!'
|
|
58
|
+
- Post a message in the general channel
|
|
59
|
+
- Update the message with timestamp \{ts\} in channel \{channel_id\}
|
|
60
|
+
- Create a new public channel called 'project-updates'
|
|
61
|
+
- Create a private channel named 'team-internal'
|
|
62
|
+
- Rename channel \{channel_id\} to 'new-channel-name'
|
|
63
|
+
- Set the topic for channel \{channel_id\} to 'Daily standup notes'
|
|
64
|
+
- Update the purpose of channel \{channel_id\}
|
|
65
|
+
- Add a thumbsup reaction to message \{ts\} in channel \{channel_id\}
|
|
66
|
+
- React with :rocket: to the latest message in channel \{channel_id\}
|
|
67
|
+
- Reply to thread \{ts\} in channel \{channel_id\} with 'Thanks for the update!'
|
|
55
68
|
|
|
56
69
|
## Unsupported questions
|
|
57
70
|
|
|
58
71
|
The Slack connector isn't currently able to handle prompts like these.
|
|
59
72
|
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
73
|
+
- Delete a message from channel \{channel_id\}
|
|
74
|
+
- Remove a reaction from a message
|
|
75
|
+
- Archive channel \{channel_id\}
|
|
76
|
+
- Invite user \{user_id\} to channel \{channel_id\}
|
|
77
|
+
- Remove user \{user_id\} from channel \{channel_id\}
|
|
78
|
+
- Delete channel \{channel_id\}
|
|
79
|
+
- Create a new user in the workspace
|
|
80
|
+
- Update user profile information
|
|
66
81
|
|
|
67
82
|
## Installation
|
|
68
83
|
|
|
@@ -112,9 +127,13 @@ This connector supports the following entities and actions.
|
|
|
112
127
|
| Entity | Actions |
|
|
113
128
|
|--------|---------|
|
|
114
129
|
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
115
|
-
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get) |
|
|
130
|
+
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get), [Create](./REFERENCE.md#channels-create), [Update](./REFERENCE.md#channels-update) |
|
|
116
131
|
| Channel Messages | [List](./REFERENCE.md#channel-messages-list) |
|
|
117
132
|
| Threads | [List](./REFERENCE.md#threads-list) |
|
|
133
|
+
| Messages | [Create](./REFERENCE.md#messages-create), [Update](./REFERENCE.md#messages-update) |
|
|
134
|
+
| Channel Topics | [Create](./REFERENCE.md#channel-topics-create) |
|
|
135
|
+
| Channel Purposes | [Create](./REFERENCE.md#channel-purposes-create) |
|
|
136
|
+
| Reactions | [Create](./REFERENCE.md#reactions-create) |
|
|
118
137
|
|
|
119
138
|
|
|
120
139
|
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
@@ -123,6 +142,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
|
|
|
123
142
|
|
|
124
143
|
## Version information
|
|
125
144
|
|
|
126
|
-
- **Package version:** 0.1.
|
|
127
|
-
- **Connector version:** 0.1.
|
|
128
|
-
- **Generated with Connector SDK commit SHA:**
|
|
145
|
+
- **Package version:** 0.1.11
|
|
146
|
+
- **Connector version:** 0.1.4
|
|
147
|
+
- **Generated with Connector SDK commit SHA:** d9dfd306cb7789621cc84e01d83f9401b03ab839
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# Slack agent connector
|
|
2
2
|
|
|
3
3
|
Slack is a business communication platform that offers messaging, file sharing, and integrations
|
|
4
|
-
with other tools. This connector provides access to users, channels, channel members, channel
|
|
5
|
-
messages, and threads for workspace analytics
|
|
4
|
+
with other tools. This connector provides read access to users, channels, channel members, channel
|
|
5
|
+
messages, and threads for workspace analytics. It also supports write operations including sending
|
|
6
|
+
and updating messages, creating and renaming channels, setting channel topics and purposes, and
|
|
7
|
+
adding reactions to messages.
|
|
6
8
|
|
|
7
9
|
|
|
8
10
|
## Example questions
|
|
@@ -19,17 +21,30 @@ The Slack connector is optimized to handle prompts like these.
|
|
|
19
21
|
- What messages were posted in channel \{channel_id\} last week?
|
|
20
22
|
- Show me the conversation history for channel \{channel_id\}
|
|
21
23
|
- List channel members for the general channel
|
|
24
|
+
- Send a message to channel \{channel_id\} saying 'Hello team!'
|
|
25
|
+
- Post a message in the general channel
|
|
26
|
+
- Update the message with timestamp \{ts\} in channel \{channel_id\}
|
|
27
|
+
- Create a new public channel called 'project-updates'
|
|
28
|
+
- Create a private channel named 'team-internal'
|
|
29
|
+
- Rename channel \{channel_id\} to 'new-channel-name'
|
|
30
|
+
- Set the topic for channel \{channel_id\} to 'Daily standup notes'
|
|
31
|
+
- Update the purpose of channel \{channel_id\}
|
|
32
|
+
- Add a thumbsup reaction to message \{ts\} in channel \{channel_id\}
|
|
33
|
+
- React with :rocket: to the latest message in channel \{channel_id\}
|
|
34
|
+
- Reply to thread \{ts\} in channel \{channel_id\} with 'Thanks for the update!'
|
|
22
35
|
|
|
23
36
|
## Unsupported questions
|
|
24
37
|
|
|
25
38
|
The Slack connector isn't currently able to handle prompts like these.
|
|
26
39
|
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
40
|
+
- Delete a message from channel \{channel_id\}
|
|
41
|
+
- Remove a reaction from a message
|
|
42
|
+
- Archive channel \{channel_id\}
|
|
43
|
+
- Invite user \{user_id\} to channel \{channel_id\}
|
|
44
|
+
- Remove user \{user_id\} from channel \{channel_id\}
|
|
45
|
+
- Delete channel \{channel_id\}
|
|
46
|
+
- Create a new user in the workspace
|
|
47
|
+
- Update user profile information
|
|
33
48
|
|
|
34
49
|
## Installation
|
|
35
50
|
|
|
@@ -79,9 +94,13 @@ This connector supports the following entities and actions.
|
|
|
79
94
|
| Entity | Actions |
|
|
80
95
|
|--------|---------|
|
|
81
96
|
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
82
|
-
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get) |
|
|
97
|
+
| Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get), [Create](./REFERENCE.md#channels-create), [Update](./REFERENCE.md#channels-update) |
|
|
83
98
|
| Channel Messages | [List](./REFERENCE.md#channel-messages-list) |
|
|
84
99
|
| Threads | [List](./REFERENCE.md#threads-list) |
|
|
100
|
+
| Messages | [Create](./REFERENCE.md#messages-create), [Update](./REFERENCE.md#messages-update) |
|
|
101
|
+
| Channel Topics | [Create](./REFERENCE.md#channel-topics-create) |
|
|
102
|
+
| Channel Purposes | [Create](./REFERENCE.md#channel-purposes-create) |
|
|
103
|
+
| Reactions | [Create](./REFERENCE.md#reactions-create) |
|
|
85
104
|
|
|
86
105
|
|
|
87
106
|
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
@@ -90,6 +109,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
|
|
|
90
109
|
|
|
91
110
|
## Version information
|
|
92
111
|
|
|
93
|
-
- **Package version:** 0.1.
|
|
94
|
-
- **Connector version:** 0.1.
|
|
95
|
-
- **Generated with Connector SDK commit SHA:**
|
|
112
|
+
- **Package version:** 0.1.11
|
|
113
|
+
- **Connector version:** 0.1.4
|
|
114
|
+
- **Generated with Connector SDK commit SHA:** d9dfd306cb7789621cc84e01d83f9401b03ab839
|