Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: ian.alton@airbyte.io <ian.alton@airbyte.io> Co-authored-by: octavia-bot[bot] <108746235+octavia-bot[bot]@users.noreply.github.com>
67 lines
2.0 KiB
Markdown
67 lines
2.0 KiB
Markdown
# Airbyte Linear AI Connector
|
|
|
|
Linear is a modern issue tracking and project management tool built for software
|
|
development teams. This connector provides access to issues, projects, and teams
|
|
for sprint planning, backlog management, and development workflow analysis.
|
|
|
|
|
|
## Example Questions
|
|
|
|
- Show me the open issues assigned to my team this week
|
|
- List out all projects I'm currently involved in
|
|
- Analyze the workload distribution across my development team
|
|
- What are the top priority issues in our current sprint?
|
|
- Identify the most active projects in our organization right now
|
|
- Summarize the recent issues for [teamMember] in the last two weeks
|
|
- Compare the issue complexity across different teams
|
|
- Which projects have the most unresolved issues?
|
|
- Give me an overview of my team's current project backlog
|
|
|
|
## Unsupported Questions
|
|
|
|
- Create a new issue for the backend team
|
|
- Update the priority of this specific issue
|
|
- Assign a team member to this project
|
|
- Delete an outdated project from our workspace
|
|
- Schedule a sprint planning meeting
|
|
- Move an issue to a different project
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
uv pip install airbyte-ai-linear
|
|
```
|
|
|
|
## Usage
|
|
|
|
```python
|
|
from airbyte_ai_linear import LinearConnector, LinearAuthConfig
|
|
|
|
connector = LinearConnector(
|
|
auth_config=LinearAuthConfig(
|
|
api_key="..."
|
|
)
|
|
)
|
|
result = connector.issues.list()
|
|
```
|
|
|
|
## Documentation
|
|
|
|
| Entity | Actions |
|
|
|--------|---------|
|
|
| Issues | [List](./REFERENCE.md#issues-list), [Get](./REFERENCE.md#issues-get) |
|
|
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
| Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
|
|
|
|
|
|
For detailed documentation on available actions and parameters, see [REFERENCE.md](./REFERENCE.md).
|
|
|
|
For the service's official API docs, see [Linear API Reference](https://linear.app/developers/graphql).
|
|
|
|
## Version Information
|
|
|
|
**Package Version:** 0.19.10
|
|
|
|
**Connector Version:** 0.1.1
|
|
|
|
**Generated with connector-sdk:** 1ab72bd8e7249872a4cf66327dd1a0bf68905acb |