airbyte-agent-linear 0.19.17__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 (106) hide show
  1. airbyte_agent_linear-0.19.17/.gitignore +29 -0
  2. airbyte_agent_linear-0.19.17/CHANGELOG.md +181 -0
  3. airbyte_agent_linear-0.19.17/PKG-INFO +101 -0
  4. airbyte_agent_linear-0.19.17/README.md +67 -0
  5. airbyte_agent_linear-0.19.17/REFERENCE.md +326 -0
  6. airbyte_agent_linear-0.19.17/airbyte_agent_linear/__init__.py +43 -0
  7. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/__init__.py +1 -0
  8. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/auth_strategies.py +1123 -0
  10. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/connector_model_loader.py +938 -0
  12. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/constants.py +78 -0
  13. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/exceptions.py +23 -0
  14. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/executor/__init__.py +31 -0
  15. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/executor/hosted_executor.py +188 -0
  16. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/executor/local_executor.py +1504 -0
  17. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/executor/models.py +190 -0
  18. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/extensions.py +655 -0
  19. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/__init__.py +37 -0
  20. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  21. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  22. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/config.py +98 -0
  23. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/exceptions.py +119 -0
  24. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/protocols.py +114 -0
  25. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http/response.py +102 -0
  26. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/http_client.py +679 -0
  27. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/logging/__init__.py +11 -0
  28. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/logging/logger.py +264 -0
  29. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/logging/types.py +92 -0
  30. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/observability/__init__.py +11 -0
  31. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/observability/models.py +19 -0
  32. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/observability/redactor.py +81 -0
  33. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/observability/session.py +94 -0
  34. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/performance/__init__.py +6 -0
  35. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  36. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/performance/metrics.py +93 -0
  37. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/__init__.py +75 -0
  38. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/base.py +160 -0
  39. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/components.py +238 -0
  40. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/connector.py +131 -0
  41. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/extensions.py +109 -0
  42. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/operations.py +146 -0
  43. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/schema/security.py +213 -0
  44. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/secrets.py +182 -0
  45. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  46. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/telemetry/config.py +32 -0
  47. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/telemetry/events.py +58 -0
  48. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  49. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/types.py +239 -0
  50. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/utils.py +60 -0
  51. airbyte_agent_linear-0.19.17/airbyte_agent_linear/_vendored/connector_sdk/validation.py +822 -0
  52. airbyte_agent_linear-0.19.17/airbyte_agent_linear/connector.py +462 -0
  53. airbyte_agent_linear-0.19.17/airbyte_agent_linear/connector_model.py +776 -0
  54. airbyte_agent_linear-0.19.17/airbyte_agent_linear/models.py +221 -0
  55. airbyte_agent_linear-0.19.17/airbyte_agent_linear/types.py +44 -0
  56. airbyte_agent_linear-0.19.17/airbyte_ai_linear/__init__.py +43 -0
  57. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/__init__.py +1 -0
  58. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/__init__.py +82 -0
  59. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/auth_strategies.py +1123 -0
  60. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/auth_template.py +135 -0
  61. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/config_loader.py +938 -0
  62. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/constants.py +78 -0
  63. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/exceptions.py +23 -0
  64. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/executor/__init__.py +31 -0
  65. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/executor/hosted_executor.py +188 -0
  66. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/executor/local_executor.py +1493 -0
  67. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/executor/models.py +190 -0
  68. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/extensions.py +655 -0
  69. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/__init__.py +37 -0
  70. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  71. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  72. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/config.py +98 -0
  73. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/exceptions.py +119 -0
  74. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/protocols.py +114 -0
  75. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http/response.py +102 -0
  76. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/http_client.py +679 -0
  77. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/logging/__init__.py +11 -0
  78. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/logging/logger.py +264 -0
  79. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/logging/types.py +92 -0
  80. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/observability/__init__.py +11 -0
  81. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/observability/models.py +19 -0
  82. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/observability/redactor.py +81 -0
  83. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/observability/session.py +94 -0
  84. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/performance/__init__.py +6 -0
  85. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  86. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/performance/metrics.py +93 -0
  87. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/__init__.py +75 -0
  88. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/base.py +160 -0
  89. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/components.py +238 -0
  90. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/connector.py +131 -0
  91. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/extensions.py +109 -0
  92. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/operations.py +146 -0
  93. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/schema/security.py +213 -0
  94. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/secrets.py +182 -0
  95. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  96. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/telemetry/config.py +32 -0
  97. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/telemetry/events.py +58 -0
  98. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  99. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/types.py +239 -0
  100. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/utils.py +60 -0
  101. airbyte_agent_linear-0.19.17/airbyte_ai_linear/_vendored/connector_sdk/validation.py +819 -0
  102. airbyte_agent_linear-0.19.17/airbyte_ai_linear/connector.py +472 -0
  103. airbyte_agent_linear-0.19.17/airbyte_ai_linear/connector.yaml +620 -0
  104. airbyte_agent_linear-0.19.17/airbyte_ai_linear/models.py +221 -0
  105. airbyte_agent_linear-0.19.17/airbyte_ai_linear/types.py +44 -0
  106. airbyte_agent_linear-0.19.17/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,181 @@
1
+ # Changelog
2
+
3
+ ## [0.19.17] - 2025-12-15
4
+ - Updated connector definition (YAML version 0.1.1)
5
+ - Source commit: c4c39c27
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.19.16] - 2025-12-15
9
+ - Updated connector definition (YAML version 0.1.1)
10
+ - Source commit: 85f4e6b0
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.19.15] - 2025-12-15
14
+ - Updated connector definition (YAML version 0.1.1)
15
+ - Source commit: 0bfa6500
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.19.14] - 2025-12-15
19
+ - Updated connector definition (YAML version 0.1.1)
20
+ - Source commit: ea5a02a3
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.19.13] - 2025-12-15
24
+ - Updated connector definition (YAML version 0.1.1)
25
+ - Source commit: f13dee0a
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.19.12] - 2025-12-15
29
+ - Updated connector definition (YAML version 0.1.1)
30
+ - Source commit: d79da1e7
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.19.11] - 2025-12-15
34
+ - Updated connector definition (YAML version 0.1.1)
35
+ - Source commit: 06e7d5c6
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.19.10] - 2025-12-13
39
+ - Updated connector definition (YAML version 0.1.1)
40
+ - Source commit: 1ab72bd8
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.19.9] - 2025-12-12
44
+ - Updated connector definition (YAML version 0.1.1)
45
+ - Source commit: 4d366cb5
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.19.8] - 2025-12-12
49
+ - Updated connector definition (YAML version 0.1.0)
50
+ - Source commit: dc79dc8b
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.19.7] - 2025-12-12
54
+ - Updated connector definition (YAML version 0.1.0)
55
+ - Source commit: 9f7f8a98
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.19.6] - 2025-12-11
59
+ - Updated connector definition (YAML version 0.1.0)
60
+ - Source commit: 8c06aa10
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.19.5] - 2025-12-11
64
+ - Updated connector definition (YAML version 0.1.0)
65
+ - Source commit: 11427ac3
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.19.4] - 2025-12-11
69
+ - Updated connector definition (YAML version 0.1.0)
70
+ - Source commit: bdd5df6d
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.19.3] - 2025-12-11
74
+ - Updated connector definition (YAML version 0.1.0)
75
+ - Source commit: f2497f71
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.19.2] - 2025-12-11
79
+ - Updated connector definition (YAML version 0.1.0)
80
+ - Source commit: 7d738be5
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.19.1] - 2025-12-10
84
+ - Updated connector definition (YAML version 0.1.0)
85
+ - Source commit: 76636830
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.19.0] - 2025-12-08
89
+ - Updated connector definition (YAML version 0.1.0)
90
+ - Source commit: f2ad5029
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.18.0] - 2025-12-08
94
+ - Updated connector definition (YAML version 0.1.0)
95
+ - Source commit: 139b0b0d
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.17.0] - 2025-12-05
99
+ - Updated connector definition (YAML version 0.1.0)
100
+ - Source commit: e96bed3d
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.16.0] - 2025-12-05
104
+ - Updated connector definition (YAML version 0.1.0)
105
+ - Source commit: ed697b90
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.15.0] - 2025-12-05
109
+ - Updated connector definition (YAML version 1.0.0)
110
+ - Source commit: 20618410
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.14.0] - 2025-12-04
114
+ - Updated connector definition (YAML version 1.0.0)
115
+ - Source commit: 4a01e446
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.13.0] - 2025-12-04
119
+ - Updated connector definition (YAML version 1.0.0)
120
+ - Source commit: 5ec76dde
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.12.0] - 2025-12-04
124
+ - Updated connector definition (YAML version 1.0.0)
125
+ - Source commit: df32a458
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.11.0] - 2025-12-04
129
+ - Updated connector definition (YAML version 1.0.0)
130
+ - Source commit: a506b369
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.10.0] - 2025-12-03
134
+ - Updated connector definition (YAML version 1.0.0)
135
+ - Source commit: 92a39ab5
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.9.0] - 2025-12-03
139
+ - Updated connector definition (YAML version 1.0.0)
140
+ - Source commit: 0ce38253
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.8.0] - 2025-12-02
144
+ - Updated connector definition (YAML version 1.0.0)
145
+ - Source commit: c8e326d9
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.7.0] - 2025-12-02
149
+ - Updated connector definition (YAML version 1.0.0)
150
+ - Source commit: ad0b961b
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.6.0] - 2025-12-02
154
+ - Updated connector definition (YAML version 1.0.0)
155
+ - Source commit: 7153780a
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.5.0] - 2025-12-02
159
+ - Updated connector definition (YAML version 1.0.0)
160
+ - Source commit: 01f71cad
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.4.0] - 2025-12-02
164
+ - Updated connector definition (YAML version 1.0.0)
165
+ - Source commit: 4c17f060
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.3.0] - 2025-12-02
169
+ - Updated connector definition (YAML version 1.0.0)
170
+ - Source commit: 430a4e68
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.2.0] - 2025-12-02
174
+ - Updated connector definition (YAML version 1.0.0)
175
+ - Source commit: cd499acd
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.1.0] - 2025-12-02
179
+ - Updated connector definition (YAML version 1.0.0)
180
+ - Source commit: b261c3a2
181
+ - SDK version: 0.1.0
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-linear
3
+ Version: 0.19.17
4
+ Summary: Airbyte Linear 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,linear
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
+ # Airbyte Linear AI Connector
36
+
37
+ Linear is a modern issue tracking and project management tool built for software
38
+ development teams. This connector provides access to issues, projects, and teams
39
+ for sprint planning, backlog management, and development workflow analysis.
40
+
41
+
42
+ ## Example Questions
43
+
44
+ - Show me the open issues assigned to my team this week
45
+ - List out all projects I'm currently involved in
46
+ - Analyze the workload distribution across my development team
47
+ - What are the top priority issues in our current sprint?
48
+ - Identify the most active projects in our organization right now
49
+ - Summarize the recent issues for [teamMember] in the last two weeks
50
+ - Compare the issue complexity across different teams
51
+ - Which projects have the most unresolved issues?
52
+ - Give me an overview of my team's current project backlog
53
+
54
+ ## Unsupported Questions
55
+
56
+ - Create a new issue for the backend team
57
+ - Update the priority of this specific issue
58
+ - Assign a team member to this project
59
+ - Delete an outdated project from our workspace
60
+ - Schedule a sprint planning meeting
61
+ - Move an issue to a different project
62
+
63
+ ## Installation
64
+
65
+ ```bash
66
+ uv pip install airbyte-agent-linear
67
+ ```
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from airbyte_agent_linear import LinearConnector, LinearAuthConfig
73
+
74
+ connector = LinearConnector(
75
+ auth_config=LinearAuthConfig(
76
+ api_key="..."
77
+ )
78
+ )
79
+ result = connector.issues.list()
80
+ ```
81
+
82
+ ## Documentation
83
+
84
+ | Entity | Actions |
85
+ |--------|---------|
86
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get) |
87
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
88
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
89
+
90
+
91
+ For detailed documentation on available actions and parameters, see [REFERENCE.md](./REFERENCE.md).
92
+
93
+ For the service's official API docs, see [Linear API Reference](https://linear.app/developers/graphql).
94
+
95
+ ## Version Information
96
+
97
+ **Package Version:** 0.19.17
98
+
99
+ **Connector Version:** 0.1.1
100
+
101
+ **Generated with connector-sdk:** c4c39c2797ecd929407c9417c728d425f77b37ed
@@ -0,0 +1,67 @@
1
+ # Airbyte Linear AI Connector
2
+
3
+ Linear is a modern issue tracking and project management tool built for software
4
+ development teams. This connector provides access to issues, projects, and teams
5
+ for sprint planning, backlog management, and development workflow analysis.
6
+
7
+
8
+ ## Example Questions
9
+
10
+ - Show me the open issues assigned to my team this week
11
+ - List out all projects I'm currently involved in
12
+ - Analyze the workload distribution across my development team
13
+ - What are the top priority issues in our current sprint?
14
+ - Identify the most active projects in our organization right now
15
+ - Summarize the recent issues for [teamMember] in the last two weeks
16
+ - Compare the issue complexity across different teams
17
+ - Which projects have the most unresolved issues?
18
+ - Give me an overview of my team's current project backlog
19
+
20
+ ## Unsupported Questions
21
+
22
+ - Create a new issue for the backend team
23
+ - Update the priority of this specific issue
24
+ - Assign a team member to this project
25
+ - Delete an outdated project from our workspace
26
+ - Schedule a sprint planning meeting
27
+ - Move an issue to a different project
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ uv pip install airbyte-agent-linear
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from airbyte_agent_linear import LinearConnector, LinearAuthConfig
39
+
40
+ connector = LinearConnector(
41
+ auth_config=LinearAuthConfig(
42
+ api_key="..."
43
+ )
44
+ )
45
+ result = connector.issues.list()
46
+ ```
47
+
48
+ ## Documentation
49
+
50
+ | Entity | Actions |
51
+ |--------|---------|
52
+ | Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get) |
53
+ | Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
54
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
55
+
56
+
57
+ For detailed documentation on available actions and parameters, see [REFERENCE.md](./REFERENCE.md).
58
+
59
+ For the service's official API docs, see [Linear API Reference](https://linear.app/developers/graphql).
60
+
61
+ ## Version Information
62
+
63
+ **Package Version:** 0.19.17
64
+
65
+ **Connector Version:** 0.1.1
66
+
67
+ **Generated with connector-sdk:** c4c39c2797ecd929407c9417c728d425f77b37ed
@@ -0,0 +1,326 @@
1
+ # Linear
2
+
3
+ ## Supported Entities and Actions
4
+
5
+ | Entity | Actions |
6
+ |--------|---------|
7
+ | Issues | [List](#issues-list), [Get](#issues-get) |
8
+ | Projects | [List](#projects-list), [Get](#projects-get) |
9
+ | Teams | [List](#teams-list), [Get](#teams-get) |
10
+
11
+ ### Issues
12
+
13
+ #### Issues List
14
+
15
+ Returns a paginated list of issues via GraphQL with pagination support
16
+
17
+ **Python SDK**
18
+
19
+ ```python
20
+ linear.issues.list()
21
+ ```
22
+
23
+ **API**
24
+
25
+ ```bash
26
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
27
+ --header 'Content-Type: application/json' \
28
+ --header 'Authorization: Bearer {your_auth_token}' \
29
+ --data '{
30
+ "entity": "issues",
31
+ "action": "list"
32
+ }'
33
+ ```
34
+
35
+
36
+ **Params**
37
+
38
+ | Parameter Name | Type | Required | Description |
39
+ |----------------|------|----------|-------------|
40
+ | `first` | `integer` | No | Number of items to return (max 250) |
41
+ | `after` | `string` | No | Cursor to start after (for pagination) |
42
+
43
+
44
+ <details>
45
+ <summary><b>Response Schema</b></summary>
46
+
47
+ **Records**
48
+
49
+ | Field Name | Type | Description |
50
+ |------------|------|-------------|
51
+ | `data` | `object` | |
52
+
53
+
54
+ </details>
55
+
56
+ #### Issues Get
57
+
58
+ Get a single issue by ID via GraphQL
59
+
60
+ **Python SDK**
61
+
62
+ ```python
63
+ linear.issues.get(
64
+ id="<str>"
65
+ )
66
+ ```
67
+
68
+ **API**
69
+
70
+ ```bash
71
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
72
+ --header 'Content-Type: application/json' \
73
+ --header 'Authorization: Bearer {your_auth_token}' \
74
+ --data '{
75
+ "entity": "issues",
76
+ "action": "get",
77
+ "params": {
78
+ "id": "<str>"
79
+ }
80
+ }'
81
+ ```
82
+
83
+
84
+ **Params**
85
+
86
+ | Parameter Name | Type | Required | Description |
87
+ |----------------|------|----------|-------------|
88
+ | `id` | `string` | Yes | Issue ID |
89
+
90
+
91
+ <details>
92
+ <summary><b>Response Schema</b></summary>
93
+
94
+ **Records**
95
+
96
+ | Field Name | Type | Description |
97
+ |------------|------|-------------|
98
+ | `data` | `object` | |
99
+
100
+
101
+ </details>
102
+
103
+ ### Projects
104
+
105
+ #### Projects List
106
+
107
+ Returns a paginated list of projects via GraphQL with pagination support
108
+
109
+ **Python SDK**
110
+
111
+ ```python
112
+ linear.projects.list()
113
+ ```
114
+
115
+ **API**
116
+
117
+ ```bash
118
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
119
+ --header 'Content-Type: application/json' \
120
+ --header 'Authorization: Bearer {your_auth_token}' \
121
+ --data '{
122
+ "entity": "projects",
123
+ "action": "list"
124
+ }'
125
+ ```
126
+
127
+
128
+ **Params**
129
+
130
+ | Parameter Name | Type | Required | Description |
131
+ |----------------|------|----------|-------------|
132
+ | `first` | `integer` | No | Number of items to return (max 250) |
133
+ | `after` | `string` | No | Cursor to start after (for pagination) |
134
+
135
+
136
+ <details>
137
+ <summary><b>Response Schema</b></summary>
138
+
139
+ **Records**
140
+
141
+ | Field Name | Type | Description |
142
+ |------------|------|-------------|
143
+ | `data` | `object` | |
144
+
145
+
146
+ </details>
147
+
148
+ #### Projects Get
149
+
150
+ Get a single project by ID via GraphQL
151
+
152
+ **Python SDK**
153
+
154
+ ```python
155
+ linear.projects.get(
156
+ id="<str>"
157
+ )
158
+ ```
159
+
160
+ **API**
161
+
162
+ ```bash
163
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
164
+ --header 'Content-Type: application/json' \
165
+ --header 'Authorization: Bearer {your_auth_token}' \
166
+ --data '{
167
+ "entity": "projects",
168
+ "action": "get",
169
+ "params": {
170
+ "id": "<str>"
171
+ }
172
+ }'
173
+ ```
174
+
175
+
176
+ **Params**
177
+
178
+ | Parameter Name | Type | Required | Description |
179
+ |----------------|------|----------|-------------|
180
+ | `id` | `string` | Yes | Project ID |
181
+
182
+
183
+ <details>
184
+ <summary><b>Response Schema</b></summary>
185
+
186
+ **Records**
187
+
188
+ | Field Name | Type | Description |
189
+ |------------|------|-------------|
190
+ | `data` | `object` | |
191
+
192
+
193
+ </details>
194
+
195
+ ### Teams
196
+
197
+ #### Teams List
198
+
199
+ Returns a list of teams via GraphQL with pagination support
200
+
201
+ **Python SDK**
202
+
203
+ ```python
204
+ linear.teams.list()
205
+ ```
206
+
207
+ **API**
208
+
209
+ ```bash
210
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
211
+ --header 'Content-Type: application/json' \
212
+ --header 'Authorization: Bearer {your_auth_token}' \
213
+ --data '{
214
+ "entity": "teams",
215
+ "action": "list"
216
+ }'
217
+ ```
218
+
219
+
220
+ **Params**
221
+
222
+ | Parameter Name | Type | Required | Description |
223
+ |----------------|------|----------|-------------|
224
+ | `first` | `integer` | No | Number of items to return (max 250) |
225
+ | `after` | `string` | No | Cursor to start after (for pagination) |
226
+
227
+
228
+ <details>
229
+ <summary><b>Response Schema</b></summary>
230
+
231
+ **Records**
232
+
233
+ | Field Name | Type | Description |
234
+ |------------|------|-------------|
235
+ | `data` | `object` | |
236
+
237
+
238
+ </details>
239
+
240
+ #### Teams Get
241
+
242
+ Get a single team by ID via GraphQL
243
+
244
+ **Python SDK**
245
+
246
+ ```python
247
+ linear.teams.get(
248
+ id="<str>"
249
+ )
250
+ ```
251
+
252
+ **API**
253
+
254
+ ```bash
255
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connector_instance_id}/execute' \
256
+ --header 'Content-Type: application/json' \
257
+ --header 'Authorization: Bearer {your_auth_token}' \
258
+ --data '{
259
+ "entity": "teams",
260
+ "action": "get",
261
+ "params": {
262
+ "id": "<str>"
263
+ }
264
+ }'
265
+ ```
266
+
267
+
268
+ **Params**
269
+
270
+ | Parameter Name | Type | Required | Description |
271
+ |----------------|------|----------|-------------|
272
+ | `id` | `string` | Yes | Team ID |
273
+
274
+
275
+ <details>
276
+ <summary><b>Response Schema</b></summary>
277
+
278
+ **Records**
279
+
280
+ | Field Name | Type | Description |
281
+ |------------|------|-------------|
282
+ | `data` | `object` | |
283
+
284
+
285
+ </details>
286
+
287
+
288
+
289
+ ## Authentication
290
+
291
+ The Linear connector supports the following authentication methods:
292
+
293
+
294
+ ### Authentication
295
+
296
+ | Field Name | Type | Required | Description |
297
+ |------------|------|----------|-------------|
298
+ | `api_key` | `str` | Yes | API authentication key |
299
+
300
+ #### Example
301
+
302
+ **Python SDK**
303
+
304
+ ```python
305
+ LinearConnector(
306
+ auth_config=LinearAuthConfig(
307
+ api_key="<API authentication key>"
308
+ )
309
+ )
310
+ ```
311
+
312
+ **API**
313
+
314
+ ```bash
315
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances' \
316
+ --header 'Content-Type: application/json' \
317
+ --header 'Authorization: Bearer {your_auth_token}' \
318
+ --data '{
319
+ "connector_definition_id": "1c5d8316-ed42-4473-8fbc-2626f03f070c",
320
+ "auth_config": {
321
+ "api_key": "<API authentication key>"
322
+ },
323
+ "name": "My Linear Connector"
324
+ }'
325
+ ```
326
+