airbyte-agent-github 0.18.25__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 (58) hide show
  1. airbyte_agent_github-0.18.25/.gitignore +29 -0
  2. airbyte_agent_github-0.18.25/CHANGELOG.md +216 -0
  3. airbyte_agent_github-0.18.25/PKG-INFO +120 -0
  4. airbyte_agent_github-0.18.25/README.md +86 -0
  5. airbyte_agent_github-0.18.25/REFERENCE.md +1760 -0
  6. airbyte_agent_github-0.18.25/airbyte_agent_github/__init__.py +96 -0
  7. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/__init__.py +1 -0
  8. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/auth_strategies.py +1123 -0
  10. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/connector_model_loader.py +957 -0
  14. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  18. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/executor/local_executor.py +1504 -0
  19. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/extensions.py +655 -0
  21. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http/response.py +102 -0
  28. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/logging/__init__.py +11 -0
  30. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/logging/logger.py +264 -0
  31. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/logging/types.py +92 -0
  32. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/observability/__init__.py +11 -0
  33. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/observability/models.py +19 -0
  34. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/observability/redactor.py +81 -0
  35. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/observability/session.py +94 -0
  36. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/performance/__init__.py +6 -0
  37. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  38. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/performance/metrics.py +93 -0
  39. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/__init__.py +75 -0
  40. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/base.py +161 -0
  41. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/components.py +238 -0
  42. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/connector.py +131 -0
  43. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/extensions.py +109 -0
  44. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/operations.py +146 -0
  45. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/schema/security.py +213 -0
  46. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/secrets.py +182 -0
  47. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  48. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/telemetry/config.py +32 -0
  49. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/telemetry/events.py +58 -0
  50. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  51. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/types.py +241 -0
  52. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/utils.py +60 -0
  53. airbyte_agent_github-0.18.25/airbyte_agent_github/_vendored/connector_sdk/validation.py +822 -0
  54. airbyte_agent_github-0.18.25/airbyte_agent_github/connector.py +2380 -0
  55. airbyte_agent_github-0.18.25/airbyte_agent_github/connector_model.py +2571 -0
  56. airbyte_agent_github-0.18.25/airbyte_agent_github/models.py +189 -0
  57. airbyte_agent_github-0.18.25/airbyte_agent_github/types.py +301 -0
  58. airbyte_agent_github-0.18.25/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,216 @@
1
+ # Github changelog
2
+
3
+ ## [0.18.25] - 2025-12-19
4
+ - Updated connector definition (YAML version 0.1.6)
5
+ - Source commit: 07f8a58d
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.18.24] - 2025-12-18
9
+ - Updated connector definition (YAML version 0.1.5)
10
+ - Source commit: f7c55d3e
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.18.23] - 2025-12-17
14
+ - Updated connector definition (YAML version 0.1.5)
15
+ - Source commit: af456521
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.18.22] - 2025-12-17
19
+ - Updated connector definition (YAML version 0.1.5)
20
+ - Source commit: 6a6c981e
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.18.21] - 2025-12-16
24
+ - Updated connector definition (YAML version 0.1.5)
25
+ - Source commit: 57f08f60
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.18.20] - 2025-12-16
29
+ - Updated connector definition (YAML version 0.1.4)
30
+ - Source commit: 6dfa2d12
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.18.19] - 2025-12-16
34
+ - Updated connector definition (YAML version 0.1.3)
35
+ - Source commit: 420c6ad3
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.18.18] - 2025-12-15
39
+ - Updated connector definition (YAML version 0.1.2)
40
+ - Source commit: c4c39c27
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.18.17] - 2025-12-15
44
+ - Updated connector definition (YAML version 0.1.2)
45
+ - Source commit: 85f4e6b0
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.18.16] - 2025-12-15
49
+ - Updated connector definition (YAML version 0.1.2)
50
+ - Source commit: 274aa10c
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.18.15] - 2025-12-15
54
+ - Updated connector definition (YAML version 0.1.1)
55
+ - Source commit: 0bfa6500
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.18.14] - 2025-12-15
59
+ - Updated connector definition (YAML version 0.1.1)
60
+ - Source commit: ea5a02a3
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.18.13] - 2025-12-15
64
+ - Updated connector definition (YAML version 0.1.1)
65
+ - Source commit: f13dee0a
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.18.12] - 2025-12-15
69
+ - Updated connector definition (YAML version 0.1.1)
70
+ - Source commit: d79da1e7
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.18.11] - 2025-12-15
74
+ - Updated connector definition (YAML version 0.1.1)
75
+ - Source commit: 06e7d5c6
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.18.10] - 2025-12-13
79
+ - Updated connector definition (YAML version 0.1.1)
80
+ - Source commit: 1ab72bd8
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.18.9] - 2025-12-12
84
+ - Updated connector definition (YAML version 0.1.1)
85
+ - Source commit: 4d366cb5
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.18.8] - 2025-12-12
89
+ - Updated connector definition (YAML version 0.1.0)
90
+ - Source commit: dc79dc8b
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.18.7] - 2025-12-12
94
+ - Updated connector definition (YAML version 0.1.0)
95
+ - Source commit: 9f7f8a98
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.18.6] - 2025-12-11
99
+ - Updated connector definition (YAML version 0.1.0)
100
+ - Source commit: 8c06aa10
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.18.5] - 2025-12-11
104
+ - Updated connector definition (YAML version 0.1.0)
105
+ - Source commit: 11427ac3
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.18.4] - 2025-12-11
109
+ - Updated connector definition (YAML version 0.1.0)
110
+ - Source commit: bdd5df6d
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.18.3] - 2025-12-11
114
+ - Updated connector definition (YAML version 0.1.0)
115
+ - Source commit: f2497f71
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.18.2] - 2025-12-11
119
+ - Updated connector definition (YAML version 0.1.0)
120
+ - Source commit: 7d738be5
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.18.1] - 2025-12-10
124
+ - Updated connector definition (YAML version 0.1.0)
125
+ - Source commit: 76636830
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.18.0] - 2025-12-08
129
+ - Updated connector definition (YAML version 0.1.0)
130
+ - Source commit: f2ad5029
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.17.0] - 2025-12-08
134
+ - Updated connector definition (YAML version 0.1.0)
135
+ - Source commit: 139b0b0d
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.16.0] - 2025-12-05
139
+ - Updated connector definition (YAML version 0.1.0)
140
+ - Source commit: e96bed3d
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.15.0] - 2025-12-05
144
+ - Updated connector definition (YAML version 0.1.0)
145
+ - Source commit: ed697b90
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.14.0] - 2025-12-05
149
+ - Updated connector definition (YAML version 1.0.0)
150
+ - Source commit: 20618410
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.13.0] - 2025-12-04
154
+ - Updated connector definition (YAML version 1.0.0)
155
+ - Source commit: 4a01e446
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.12.0] - 2025-12-04
159
+ - Updated connector definition (YAML version 1.0.0)
160
+ - Source commit: 5ec76dde
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.11.0] - 2025-12-04
164
+ - Updated connector definition (YAML version 1.0.0)
165
+ - Source commit: df32a458
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.10.0] - 2025-12-04
169
+ - Updated connector definition (YAML version 1.0.0)
170
+ - Source commit: a506b369
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.9.0] - 2025-12-03
174
+ - Updated connector definition (YAML version 1.0.0)
175
+ - Source commit: 92a39ab5
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.8.0] - 2025-12-03
179
+ - Updated connector definition (YAML version 1.0.0)
180
+ - Source commit: 0ce38253
181
+ - SDK version: 0.1.0
182
+
183
+ ## [0.7.0] - 2025-12-02
184
+ - Updated connector definition (YAML version 1.0.0)
185
+ - Source commit: c8e326d9
186
+ - SDK version: 0.1.0
187
+
188
+ ## [0.6.0] - 2025-12-02
189
+ - Updated connector definition (YAML version 1.0.0)
190
+ - Source commit: ad0b961b
191
+ - SDK version: 0.1.0
192
+
193
+ ## [0.5.0] - 2025-12-02
194
+ - Updated connector definition (YAML version 1.0.0)
195
+ - Source commit: 7153780a
196
+ - SDK version: 0.1.0
197
+
198
+ ## [0.4.0] - 2025-12-02
199
+ - Updated connector definition (YAML version 1.0.0)
200
+ - Source commit: 01f71cad
201
+ - SDK version: 0.1.0
202
+
203
+ ## [0.3.0] - 2025-12-02
204
+ - Updated connector definition (YAML version 1.0.0)
205
+ - Source commit: 4c17f060
206
+ - SDK version: 0.1.0
207
+
208
+ ## [0.2.0] - 2025-12-02
209
+ - Updated connector definition (YAML version 1.0.0)
210
+ - Source commit: 430a4e68
211
+ - SDK version: 0.1.0
212
+
213
+ ## [0.1.0] - 2025-12-02
214
+ - Updated connector definition (YAML version 1.0.0)
215
+ - Source commit: b261c3a2
216
+ - SDK version: 0.1.0
@@ -0,0 +1,120 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-github
3
+ Version: 0.18.25
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
+ - Show me all open issues in my repositories this month
46
+ - List the top 5 repositories I've starred recently
47
+ - Analyze the commit trends in my main project over the last quarter
48
+ - Find all pull requests created by [teamMember] in the past two weeks
49
+ - Search for repositories related to machine learning in my organizations
50
+ - Compare the number of contributors across my different team projects
51
+ - Identify the most active branches in my main repository
52
+ - Get details about the most recent releases in my organization
53
+ - List all milestones for our current development sprint
54
+ - Show me insights about pull request review patterns in our team
55
+
56
+ ## Unsupported questions
57
+
58
+ - Create a new issue in the project repository
59
+ - Update the status of this pull request
60
+ - Delete an old branch from the repository
61
+ - Schedule a team review for this code
62
+ - Assign a new label to this issue
63
+
64
+ ## Installation
65
+
66
+ ```bash
67
+ uv pip install airbyte-agent-github
68
+ ```
69
+
70
+ ## Usage
71
+
72
+ ```python
73
+ from airbyte_agent_github import GithubConnector, GithubAuthConfig
74
+
75
+ connector = GithubConnector(
76
+ auth_config=GithubAuthConfig(
77
+ access_token="..."
78
+ )
79
+ )
80
+ result = await connector.repositories.get()
81
+ ```
82
+
83
+ ## Full documentation
84
+
85
+ This connector supports the following entities and actions.
86
+
87
+ | Entity | Actions |
88
+ |--------|---------|
89
+ | Repositories | [Get](./REFERENCE.md#repositories-get), [List](./REFERENCE.md#repositories-list), [Search](./REFERENCE.md#repositories-search) |
90
+ | Org Repositories | [List](./REFERENCE.md#org-repositories-list) |
91
+ | Branches | [List](./REFERENCE.md#branches-list), [Get](./REFERENCE.md#branches-get) |
92
+ | Commits | [List](./REFERENCE.md#commits-list), [Get](./REFERENCE.md#commits-get) |
93
+ | Releases | [List](./REFERENCE.md#releases-list), [Get](./REFERENCE.md#releases-get) |
94
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get), [Search](./REFERENCE.md#issues-search) |
95
+ | Pull Requests | [List](./REFERENCE.md#pull-requests-list), [Get](./REFERENCE.md#pull-requests-get), [Search](./REFERENCE.md#pull-requests-search) |
96
+ | Reviews | [List](./REFERENCE.md#reviews-list) |
97
+ | Comments | [List](./REFERENCE.md#comments-list), [Get](./REFERENCE.md#comments-get) |
98
+ | Pr Comments | [List](./REFERENCE.md#pr-comments-list), [Get](./REFERENCE.md#pr-comments-get) |
99
+ | Labels | [List](./REFERENCE.md#labels-list), [Get](./REFERENCE.md#labels-get) |
100
+ | Milestones | [List](./REFERENCE.md#milestones-list), [Get](./REFERENCE.md#milestones-get) |
101
+ | Organizations | [Get](./REFERENCE.md#organizations-get), [List](./REFERENCE.md#organizations-list) |
102
+ | Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Search](./REFERENCE.md#users-search) |
103
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
104
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
105
+ | Stargazers | [List](./REFERENCE.md#stargazers-list) |
106
+ | Viewer | [Get](./REFERENCE.md#viewer-get) |
107
+ | Viewer Repositories | [List](./REFERENCE.md#viewer-repositories-list) |
108
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
109
+ | Project Items | [List](./REFERENCE.md#project-items-list) |
110
+
111
+
112
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
113
+
114
+ For the service's official API docs, see the [Github API reference](https://docs.github.com/en/rest).
115
+
116
+ ## Version information
117
+
118
+ - **Package version:** 0.18.25
119
+ - **Connector version:** 0.1.6
120
+ - **Generated with Connector SDK commit SHA:** 07f8a58d1e66c482b15b787e88fa0bcf83ba79ae
@@ -0,0 +1,86 @@
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
+ - Show me all open issues in my repositories this month
12
+ - List the top 5 repositories I've starred recently
13
+ - Analyze the commit trends in my main project over the last quarter
14
+ - Find all pull requests created by [teamMember] in the past two weeks
15
+ - Search for repositories related to machine learning in my organizations
16
+ - Compare the number of contributors across my different team projects
17
+ - Identify the most active branches in my main repository
18
+ - Get details about the most recent releases in my organization
19
+ - List all milestones for our current development sprint
20
+ - Show me insights about pull request review patterns in our team
21
+
22
+ ## Unsupported questions
23
+
24
+ - Create a new issue in the project repository
25
+ - Update the status of this pull request
26
+ - Delete an old branch from the repository
27
+ - Schedule a team review for this code
28
+ - Assign a new label to this issue
29
+
30
+ ## Installation
31
+
32
+ ```bash
33
+ uv pip install airbyte-agent-github
34
+ ```
35
+
36
+ ## Usage
37
+
38
+ ```python
39
+ from airbyte_agent_github import GithubConnector, GithubAuthConfig
40
+
41
+ connector = GithubConnector(
42
+ auth_config=GithubAuthConfig(
43
+ access_token="..."
44
+ )
45
+ )
46
+ result = await connector.repositories.get()
47
+ ```
48
+
49
+ ## Full documentation
50
+
51
+ This connector supports the following entities and actions.
52
+
53
+ | Entity | Actions |
54
+ |--------|---------|
55
+ | Repositories | [Get](./REFERENCE.md#repositories-get), [List](./REFERENCE.md#repositories-list), [Search](./REFERENCE.md#repositories-search) |
56
+ | Org Repositories | [List](./REFERENCE.md#org-repositories-list) |
57
+ | Branches | [List](./REFERENCE.md#branches-list), [Get](./REFERENCE.md#branches-get) |
58
+ | Commits | [List](./REFERENCE.md#commits-list), [Get](./REFERENCE.md#commits-get) |
59
+ | Releases | [List](./REFERENCE.md#releases-list), [Get](./REFERENCE.md#releases-get) |
60
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get), [Search](./REFERENCE.md#issues-search) |
61
+ | Pull Requests | [List](./REFERENCE.md#pull-requests-list), [Get](./REFERENCE.md#pull-requests-get), [Search](./REFERENCE.md#pull-requests-search) |
62
+ | Reviews | [List](./REFERENCE.md#reviews-list) |
63
+ | Comments | [List](./REFERENCE.md#comments-list), [Get](./REFERENCE.md#comments-get) |
64
+ | Pr Comments | [List](./REFERENCE.md#pr-comments-list), [Get](./REFERENCE.md#pr-comments-get) |
65
+ | Labels | [List](./REFERENCE.md#labels-list), [Get](./REFERENCE.md#labels-get) |
66
+ | Milestones | [List](./REFERENCE.md#milestones-list), [Get](./REFERENCE.md#milestones-get) |
67
+ | Organizations | [Get](./REFERENCE.md#organizations-get), [List](./REFERENCE.md#organizations-list) |
68
+ | Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Search](./REFERENCE.md#users-search) |
69
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
70
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
71
+ | Stargazers | [List](./REFERENCE.md#stargazers-list) |
72
+ | Viewer | [Get](./REFERENCE.md#viewer-get) |
73
+ | Viewer Repositories | [List](./REFERENCE.md#viewer-repositories-list) |
74
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
75
+ | Project Items | [List](./REFERENCE.md#project-items-list) |
76
+
77
+
78
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
79
+
80
+ For the service's official API docs, see the [Github API reference](https://docs.github.com/en/rest).
81
+
82
+ ## Version information
83
+
84
+ - **Package version:** 0.18.25
85
+ - **Connector version:** 0.1.6
86
+ - **Generated with Connector SDK commit SHA:** 07f8a58d1e66c482b15b787e88fa0bcf83ba79ae