This PR adds a simplified Linear toolkit focused on core functionality: ## What's Included **Tools:** - `get_issue` - Get detailed information about Linear issues - `get_teams` - Get team information and details **Models:** - `DateRange` enum with comprehensive date range support (TODAY, YESTERDAY, THIS_WEEK, LAST_WEEK, THIS_MONTH, LAST_MONTH, THIS_YEAR, LAST_YEAR, LAST_7_DAYS, LAST_30_DAYS) - Timezone-aware datetime handling following Google toolkit patterns ## What's Simplified This toolkit has been streamlined by removing: - Cycles management tools - Projects management tools - Users management tools - Workflows management tools - Corresponding tests and evaluations for removed features ## Quality Assurance - All linting and formatting checks pass - Comprehensive test coverage for included functionality - Follows established patterns from Google toolkit --------- Co-authored-by: Eric Gustin <34000337+EricGustin@users.noreply.github.com>
13 lines
265 B
Python
13 lines
265 B
Python
"""Linear Toolkit for Arcade AI"""
|
|
|
|
from arcade_linear.models import DateRange
|
|
from arcade_linear.tools import (
|
|
get_issue, # Get specific issue details
|
|
get_teams, # Get team information
|
|
)
|
|
|
|
__all__ = [
|
|
"DateRange",
|
|
"get_issue",
|
|
"get_teams",
|
|
]
|