airbyte-agent-github 0.18.35__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.
Files changed (59) hide show
  1. airbyte_agent_github-0.18.35/.gitignore +29 -0
  2. airbyte_agent_github-0.18.35/CHANGELOG.md +266 -0
  3. airbyte_agent_github-0.18.35/PKG-INFO +144 -0
  4. airbyte_agent_github-0.18.35/README.md +110 -0
  5. airbyte_agent_github-0.18.35/REFERENCE.md +1760 -0
  6. airbyte_agent_github-0.18.35/airbyte_agent_github/__init__.py +96 -0
  7. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/__init__.py +1 -0
  8. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/auth_strategies.py +1123 -0
  10. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/connector_model_loader.py +965 -0
  14. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  18. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/executor/local_executor.py +1524 -0
  19. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/extensions.py +694 -0
  21. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http/response.py +102 -0
  28. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/introspection.py +262 -0
  30. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/logging/__init__.py +11 -0
  31. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/logging/logger.py +264 -0
  32. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/logging/types.py +92 -0
  33. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/observability/__init__.py +11 -0
  34. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/observability/models.py +19 -0
  35. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/observability/redactor.py +81 -0
  36. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/observability/session.py +94 -0
  37. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/performance/__init__.py +6 -0
  38. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  39. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/performance/metrics.py +93 -0
  40. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/__init__.py +75 -0
  41. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/base.py +161 -0
  42. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/components.py +239 -0
  43. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/connector.py +131 -0
  44. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/extensions.py +109 -0
  45. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/operations.py +146 -0
  46. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/schema/security.py +223 -0
  47. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/secrets.py +182 -0
  48. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  49. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/telemetry/config.py +32 -0
  50. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/telemetry/events.py +58 -0
  51. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  52. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/types.py +245 -0
  53. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/utils.py +60 -0
  54. airbyte_agent_github-0.18.35/airbyte_agent_github/_vendored/connector_sdk/validation.py +822 -0
  55. airbyte_agent_github-0.18.35/airbyte_agent_github/connector.py +2465 -0
  56. airbyte_agent_github-0.18.35/airbyte_agent_github/connector_model.py +2571 -0
  57. airbyte_agent_github-0.18.35/airbyte_agent_github/models.py +189 -0
  58. airbyte_agent_github-0.18.35/airbyte_agent_github/types.py +301 -0
  59. airbyte_agent_github-0.18.35/pyproject.toml +51 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+
10
+ # Testing
11
+ .pytest_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+
24
+ # OS
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ .env
29
+ configured_connectors.yaml
@@ -0,0 +1,266 @@
1
+ # Github changelog
2
+
3
+ ## [0.18.35] - 2026-01-09
4
+ - Updated connector definition (YAML version 0.1.7)
5
+ - Source commit: 3bcb33e8
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.18.34] - 2026-01-09
9
+ - Updated connector definition (YAML version 0.1.7)
10
+ - Source commit: da9b741b
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.18.33] - 2026-01-07
14
+ - Updated connector definition (YAML version 0.1.7)
15
+ - Source commit: d023e05f
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.18.32] - 2026-01-06
19
+ - Updated connector definition (YAML version 0.1.7)
20
+ - Source commit: 0580c727
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.18.31] - 2026-01-06
24
+ - Updated connector definition (YAML version 0.1.7)
25
+ - Source commit: e0e2f989
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.18.30] - 2026-01-05
29
+ - Updated connector definition (YAML version 0.1.7)
30
+ - Source commit: 3e274293
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.18.29] - 2025-12-22
34
+ - Updated connector definition (YAML version 0.1.7)
35
+ - Source commit: 0eb1b1c4
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.18.28] - 2025-12-19
39
+ - Updated connector definition (YAML version 0.1.6)
40
+ - Source commit: 12f6b994
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.18.27] - 2025-12-19
44
+ - Updated connector definition (YAML version 0.1.6)
45
+ - Source commit: 5d11bfdf
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.18.26] - 2025-12-19
49
+ - Updated connector definition (YAML version 0.1.6)
50
+ - Source commit: e996e848
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.18.25] - 2025-12-19
54
+ - Updated connector definition (YAML version 0.1.6)
55
+ - Source commit: 07f8a58d
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.18.24] - 2025-12-18
59
+ - Updated connector definition (YAML version 0.1.5)
60
+ - Source commit: f7c55d3e
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.18.23] - 2025-12-17
64
+ - Updated connector definition (YAML version 0.1.5)
65
+ - Source commit: af456521
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.18.22] - 2025-12-17
69
+ - Updated connector definition (YAML version 0.1.5)
70
+ - Source commit: 6a6c981e
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.18.21] - 2025-12-16
74
+ - Updated connector definition (YAML version 0.1.5)
75
+ - Source commit: 57f08f60
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.18.20] - 2025-12-16
79
+ - Updated connector definition (YAML version 0.1.4)
80
+ - Source commit: 6dfa2d12
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.18.19] - 2025-12-16
84
+ - Updated connector definition (YAML version 0.1.3)
85
+ - Source commit: 420c6ad3
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.18.18] - 2025-12-15
89
+ - Updated connector definition (YAML version 0.1.2)
90
+ - Source commit: c4c39c27
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.18.17] - 2025-12-15
94
+ - Updated connector definition (YAML version 0.1.2)
95
+ - Source commit: 85f4e6b0
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.18.16] - 2025-12-15
99
+ - Updated connector definition (YAML version 0.1.2)
100
+ - Source commit: 274aa10c
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.18.15] - 2025-12-15
104
+ - Updated connector definition (YAML version 0.1.1)
105
+ - Source commit: 0bfa6500
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.18.14] - 2025-12-15
109
+ - Updated connector definition (YAML version 0.1.1)
110
+ - Source commit: ea5a02a3
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.18.13] - 2025-12-15
114
+ - Updated connector definition (YAML version 0.1.1)
115
+ - Source commit: f13dee0a
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.18.12] - 2025-12-15
119
+ - Updated connector definition (YAML version 0.1.1)
120
+ - Source commit: d79da1e7
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.18.11] - 2025-12-15
124
+ - Updated connector definition (YAML version 0.1.1)
125
+ - Source commit: 06e7d5c6
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.18.10] - 2025-12-13
129
+ - Updated connector definition (YAML version 0.1.1)
130
+ - Source commit: 1ab72bd8
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.18.9] - 2025-12-12
134
+ - Updated connector definition (YAML version 0.1.1)
135
+ - Source commit: 4d366cb5
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.18.8] - 2025-12-12
139
+ - Updated connector definition (YAML version 0.1.0)
140
+ - Source commit: dc79dc8b
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.18.7] - 2025-12-12
144
+ - Updated connector definition (YAML version 0.1.0)
145
+ - Source commit: 9f7f8a98
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.18.6] - 2025-12-11
149
+ - Updated connector definition (YAML version 0.1.0)
150
+ - Source commit: 8c06aa10
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.18.5] - 2025-12-11
154
+ - Updated connector definition (YAML version 0.1.0)
155
+ - Source commit: 11427ac3
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.18.4] - 2025-12-11
159
+ - Updated connector definition (YAML version 0.1.0)
160
+ - Source commit: bdd5df6d
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.18.3] - 2025-12-11
164
+ - Updated connector definition (YAML version 0.1.0)
165
+ - Source commit: f2497f71
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.18.2] - 2025-12-11
169
+ - Updated connector definition (YAML version 0.1.0)
170
+ - Source commit: 7d738be5
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.18.1] - 2025-12-10
174
+ - Updated connector definition (YAML version 0.1.0)
175
+ - Source commit: 76636830
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.18.0] - 2025-12-08
179
+ - Updated connector definition (YAML version 0.1.0)
180
+ - Source commit: f2ad5029
181
+ - SDK version: 0.1.0
182
+
183
+ ## [0.17.0] - 2025-12-08
184
+ - Updated connector definition (YAML version 0.1.0)
185
+ - Source commit: 139b0b0d
186
+ - SDK version: 0.1.0
187
+
188
+ ## [0.16.0] - 2025-12-05
189
+ - Updated connector definition (YAML version 0.1.0)
190
+ - Source commit: e96bed3d
191
+ - SDK version: 0.1.0
192
+
193
+ ## [0.15.0] - 2025-12-05
194
+ - Updated connector definition (YAML version 0.1.0)
195
+ - Source commit: ed697b90
196
+ - SDK version: 0.1.0
197
+
198
+ ## [0.14.0] - 2025-12-05
199
+ - Updated connector definition (YAML version 1.0.0)
200
+ - Source commit: 20618410
201
+ - SDK version: 0.1.0
202
+
203
+ ## [0.13.0] - 2025-12-04
204
+ - Updated connector definition (YAML version 1.0.0)
205
+ - Source commit: 4a01e446
206
+ - SDK version: 0.1.0
207
+
208
+ ## [0.12.0] - 2025-12-04
209
+ - Updated connector definition (YAML version 1.0.0)
210
+ - Source commit: 5ec76dde
211
+ - SDK version: 0.1.0
212
+
213
+ ## [0.11.0] - 2025-12-04
214
+ - Updated connector definition (YAML version 1.0.0)
215
+ - Source commit: df32a458
216
+ - SDK version: 0.1.0
217
+
218
+ ## [0.10.0] - 2025-12-04
219
+ - Updated connector definition (YAML version 1.0.0)
220
+ - Source commit: a506b369
221
+ - SDK version: 0.1.0
222
+
223
+ ## [0.9.0] - 2025-12-03
224
+ - Updated connector definition (YAML version 1.0.0)
225
+ - Source commit: 92a39ab5
226
+ - SDK version: 0.1.0
227
+
228
+ ## [0.8.0] - 2025-12-03
229
+ - Updated connector definition (YAML version 1.0.0)
230
+ - Source commit: 0ce38253
231
+ - SDK version: 0.1.0
232
+
233
+ ## [0.7.0] - 2025-12-02
234
+ - Updated connector definition (YAML version 1.0.0)
235
+ - Source commit: c8e326d9
236
+ - SDK version: 0.1.0
237
+
238
+ ## [0.6.0] - 2025-12-02
239
+ - Updated connector definition (YAML version 1.0.0)
240
+ - Source commit: ad0b961b
241
+ - SDK version: 0.1.0
242
+
243
+ ## [0.5.0] - 2025-12-02
244
+ - Updated connector definition (YAML version 1.0.0)
245
+ - Source commit: 7153780a
246
+ - SDK version: 0.1.0
247
+
248
+ ## [0.4.0] - 2025-12-02
249
+ - Updated connector definition (YAML version 1.0.0)
250
+ - Source commit: 01f71cad
251
+ - SDK version: 0.1.0
252
+
253
+ ## [0.3.0] - 2025-12-02
254
+ - Updated connector definition (YAML version 1.0.0)
255
+ - Source commit: 4c17f060
256
+ - SDK version: 0.1.0
257
+
258
+ ## [0.2.0] - 2025-12-02
259
+ - Updated connector definition (YAML version 1.0.0)
260
+ - Source commit: 430a4e68
261
+ - SDK version: 0.1.0
262
+
263
+ ## [0.1.0] - 2025-12-02
264
+ - Updated connector definition (YAML version 1.0.0)
265
+ - Source commit: b261c3a2
266
+ - SDK version: 0.1.0
@@ -0,0 +1,144 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-github
3
+ Version: 0.18.35
4
+ Summary: Airbyte Github Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
+ Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: airbyte,api,connector,github
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: httpx>=0.24.0
24
+ Requires-Dist: jinja2>=3.0.0
25
+ Requires-Dist: jsonpath-ng>=1.6.1
26
+ Requires-Dist: jsonref>=1.1.0
27
+ Requires-Dist: opentelemetry-api>=1.37.0
28
+ Requires-Dist: opentelemetry-sdk>=1.37.0
29
+ Requires-Dist: pydantic>=2.0.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: segment-analytics-python>=2.2.0
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Github agent connector
36
+
37
+ GitHub is a platform for version control and collaborative software development
38
+ using Git. This connector provides access to repositories, branches, commits, issues,
39
+ pull requests, reviews, comments, releases, organizations, teams, and users for
40
+ development workflow analysis and project management insights.
41
+
42
+
43
+ ## Example questions
44
+
45
+ The Github connector is optimized to handle prompts like these.
46
+
47
+ - Show me all open issues in my repositories this month
48
+ - List the top 5 repositories I've starred recently
49
+ - Analyze the commit trends in my main project over the last quarter
50
+ - Find all pull requests created by \{team_member\} in the past two weeks
51
+ - Search for repositories related to machine learning in my organizations
52
+ - Compare the number of contributors across my different team projects
53
+ - Identify the most active branches in my main repository
54
+ - Get details about the most recent releases in my organization
55
+ - List all milestones for our current development sprint
56
+ - Show me insights about pull request review patterns in our team
57
+
58
+ ## Unsupported questions
59
+
60
+ The Github connector isn't currently able to handle prompts like these.
61
+
62
+ - Create a new issue in the project repository
63
+ - Update the status of this pull request
64
+ - Delete an old branch from the repository
65
+ - Schedule a team review for this code
66
+ - Assign a new label to this issue
67
+
68
+ ## Installation
69
+
70
+ ```bash
71
+ uv pip install airbyte-agent-github
72
+ ```
73
+
74
+ ## Usage
75
+
76
+ This connector supports multiple authentication methods:
77
+
78
+ ### OAuth 2
79
+
80
+ ```python
81
+ from airbyte_agent_github import GithubConnector
82
+ from airbyte_agent_github.models import GithubOauth2AuthConfig
83
+
84
+ connector = GithubConnector(
85
+ auth_config=GithubOauth2AuthConfig(
86
+ access_token="..."
87
+ )
88
+ )
89
+ result = await connector.repositories.get()
90
+ ```
91
+
92
+ ### Personal Access Token
93
+
94
+ ```python
95
+ from airbyte_agent_github import GithubConnector
96
+ from airbyte_agent_github.models import GithubPersonalAccessTokenAuthConfig
97
+
98
+ connector = GithubConnector(
99
+ auth_config=GithubPersonalAccessTokenAuthConfig(
100
+ token="..."
101
+ )
102
+ )
103
+ result = await connector.repositories.get()
104
+ ```
105
+
106
+
107
+ ## Full documentation
108
+
109
+ This connector supports the following entities and actions.
110
+
111
+ | Entity | Actions |
112
+ |--------|---------|
113
+ | Repositories | [Get](./REFERENCE.md#repositories-get), [List](./REFERENCE.md#repositories-list), [Search](./REFERENCE.md#repositories-search) |
114
+ | Org Repositories | [List](./REFERENCE.md#org-repositories-list) |
115
+ | Branches | [List](./REFERENCE.md#branches-list), [Get](./REFERENCE.md#branches-get) |
116
+ | Commits | [List](./REFERENCE.md#commits-list), [Get](./REFERENCE.md#commits-get) |
117
+ | Releases | [List](./REFERENCE.md#releases-list), [Get](./REFERENCE.md#releases-get) |
118
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get), [Search](./REFERENCE.md#issues-search) |
119
+ | Pull Requests | [List](./REFERENCE.md#pull-requests-list), [Get](./REFERENCE.md#pull-requests-get), [Search](./REFERENCE.md#pull-requests-search) |
120
+ | Reviews | [List](./REFERENCE.md#reviews-list) |
121
+ | Comments | [List](./REFERENCE.md#comments-list), [Get](./REFERENCE.md#comments-get) |
122
+ | Pr Comments | [List](./REFERENCE.md#pr-comments-list), [Get](./REFERENCE.md#pr-comments-get) |
123
+ | Labels | [List](./REFERENCE.md#labels-list), [Get](./REFERENCE.md#labels-get) |
124
+ | Milestones | [List](./REFERENCE.md#milestones-list), [Get](./REFERENCE.md#milestones-get) |
125
+ | Organizations | [Get](./REFERENCE.md#organizations-get), [List](./REFERENCE.md#organizations-list) |
126
+ | Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Search](./REFERENCE.md#users-search) |
127
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
128
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
129
+ | Stargazers | [List](./REFERENCE.md#stargazers-list) |
130
+ | Viewer | [Get](./REFERENCE.md#viewer-get) |
131
+ | Viewer Repositories | [List](./REFERENCE.md#viewer-repositories-list) |
132
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
133
+ | Project Items | [List](./REFERENCE.md#project-items-list) |
134
+
135
+
136
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
137
+
138
+ For the service's official API docs, see the [Github API reference](https://docs.github.com/en/rest).
139
+
140
+ ## Version information
141
+
142
+ - **Package version:** 0.18.35
143
+ - **Connector version:** 0.1.7
144
+ - **Generated with Connector SDK commit SHA:** 3bcb33e8122bbe7f7e52f786cc94c8d2f3ba9e12
@@ -0,0 +1,110 @@
1
+ # Github agent connector
2
+
3
+ GitHub is a platform for version control and collaborative software development
4
+ using Git. This connector provides access to repositories, branches, commits, issues,
5
+ pull requests, reviews, comments, releases, organizations, teams, and users for
6
+ development workflow analysis and project management insights.
7
+
8
+
9
+ ## Example questions
10
+
11
+ The Github connector is optimized to handle prompts like these.
12
+
13
+ - Show me all open issues in my repositories this month
14
+ - List the top 5 repositories I've starred recently
15
+ - Analyze the commit trends in my main project over the last quarter
16
+ - Find all pull requests created by \{team_member\} in the past two weeks
17
+ - Search for repositories related to machine learning in my organizations
18
+ - Compare the number of contributors across my different team projects
19
+ - Identify the most active branches in my main repository
20
+ - Get details about the most recent releases in my organization
21
+ - List all milestones for our current development sprint
22
+ - Show me insights about pull request review patterns in our team
23
+
24
+ ## Unsupported questions
25
+
26
+ The Github connector isn't currently able to handle prompts like these.
27
+
28
+ - Create a new issue in the project repository
29
+ - Update the status of this pull request
30
+ - Delete an old branch from the repository
31
+ - Schedule a team review for this code
32
+ - Assign a new label to this issue
33
+
34
+ ## Installation
35
+
36
+ ```bash
37
+ uv pip install airbyte-agent-github
38
+ ```
39
+
40
+ ## Usage
41
+
42
+ This connector supports multiple authentication methods:
43
+
44
+ ### OAuth 2
45
+
46
+ ```python
47
+ from airbyte_agent_github import GithubConnector
48
+ from airbyte_agent_github.models import GithubOauth2AuthConfig
49
+
50
+ connector = GithubConnector(
51
+ auth_config=GithubOauth2AuthConfig(
52
+ access_token="..."
53
+ )
54
+ )
55
+ result = await connector.repositories.get()
56
+ ```
57
+
58
+ ### Personal Access Token
59
+
60
+ ```python
61
+ from airbyte_agent_github import GithubConnector
62
+ from airbyte_agent_github.models import GithubPersonalAccessTokenAuthConfig
63
+
64
+ connector = GithubConnector(
65
+ auth_config=GithubPersonalAccessTokenAuthConfig(
66
+ token="..."
67
+ )
68
+ )
69
+ result = await connector.repositories.get()
70
+ ```
71
+
72
+
73
+ ## Full documentation
74
+
75
+ This connector supports the following entities and actions.
76
+
77
+ | Entity | Actions |
78
+ |--------|---------|
79
+ | Repositories | [Get](./REFERENCE.md#repositories-get), [List](./REFERENCE.md#repositories-list), [Search](./REFERENCE.md#repositories-search) |
80
+ | Org Repositories | [List](./REFERENCE.md#org-repositories-list) |
81
+ | Branches | [List](./REFERENCE.md#branches-list), [Get](./REFERENCE.md#branches-get) |
82
+ | Commits | [List](./REFERENCE.md#commits-list), [Get](./REFERENCE.md#commits-get) |
83
+ | Releases | [List](./REFERENCE.md#releases-list), [Get](./REFERENCE.md#releases-get) |
84
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get), [Search](./REFERENCE.md#issues-search) |
85
+ | Pull Requests | [List](./REFERENCE.md#pull-requests-list), [Get](./REFERENCE.md#pull-requests-get), [Search](./REFERENCE.md#pull-requests-search) |
86
+ | Reviews | [List](./REFERENCE.md#reviews-list) |
87
+ | Comments | [List](./REFERENCE.md#comments-list), [Get](./REFERENCE.md#comments-get) |
88
+ | Pr Comments | [List](./REFERENCE.md#pr-comments-list), [Get](./REFERENCE.md#pr-comments-get) |
89
+ | Labels | [List](./REFERENCE.md#labels-list), [Get](./REFERENCE.md#labels-get) |
90
+ | Milestones | [List](./REFERENCE.md#milestones-list), [Get](./REFERENCE.md#milestones-get) |
91
+ | Organizations | [Get](./REFERENCE.md#organizations-get), [List](./REFERENCE.md#organizations-list) |
92
+ | Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Search](./REFERENCE.md#users-search) |
93
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
94
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
95
+ | Stargazers | [List](./REFERENCE.md#stargazers-list) |
96
+ | Viewer | [Get](./REFERENCE.md#viewer-get) |
97
+ | Viewer Repositories | [List](./REFERENCE.md#viewer-repositories-list) |
98
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
99
+ | Project Items | [List](./REFERENCE.md#project-items-list) |
100
+
101
+
102
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
103
+
104
+ For the service's official API docs, see the [Github API reference](https://docs.github.com/en/rest).
105
+
106
+ ## Version information
107
+
108
+ - **Package version:** 0.18.35
109
+ - **Connector version:** 0.1.7
110
+ - **Generated with Connector SDK commit SHA:** 3bcb33e8122bbe7f7e52f786cc94c8d2f3ba9e12