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>
51 lines
687 B
Text
51 lines
687 B
Text
|
|
### LLM ###
|
|
|
|
OPENAI_API_KEY=
|
|
ANTHROPIC_API_KEY=
|
|
|
|
### Auth providers ###
|
|
|
|
GITHUB_CLIENT_ID=
|
|
GITHUB_CLIENT_SECRET=
|
|
|
|
GOOGLE_CLIENT_ID=""
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
LINKEDIN_CLIENT_ID=
|
|
LINKEDIN_CLIENT_SECRET=""
|
|
|
|
LINEAR_CLIENT_ID=
|
|
LINEAR_CLIENT_SECRET=
|
|
|
|
MICROSOFT_CLIENT_ID=
|
|
MICROSOFT_CLIENT_SECRET=""
|
|
|
|
SLACK_CLIENT_ID=""
|
|
SLACK_CLIENT_SECRET=
|
|
|
|
SPOTIFY_CLIENT_ID=
|
|
SPOTIFY_CLIENT_SECRET=
|
|
|
|
X_CLIENT_ID=
|
|
X_CLIENT_SECRET=
|
|
|
|
ZOOM_CLIENT_ID=
|
|
ZOOM_CLIENT_SECRET=
|
|
|
|
### WORKER ###
|
|
|
|
WORKER_URL="http://arcade-worker:8002"
|
|
|
|
### Redis ###
|
|
|
|
REDIS_HOST=arcade-redis
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=""
|
|
RATE_LIMIT_REQS_PER_MIN=100
|
|
|
|
### ARCADE ###
|
|
|
|
ARCADE_HOME=/app
|
|
ARCADE_WORKER_SECRET=dev
|
|
ROOT_KEY_1=supersecret
|