Back to list
fractary

handler-work-tracker-linear

by fractary

4🍴 0📅 Jan 10, 2026

SKILL.md


name: handler-work-tracker-linear description: "[DEPRECATED] Linear handler - Use Fractary CLI instead" model: haiku handler_type: work-tracker platform: linear deprecated: true

Linear Work Tracker Handler

⚠️ DEPRECATED: This handler is deprecated. Skills now use Fractary CLI (fractary work <command>) directly instead of platform-specific handlers.

Migration: See specs/WORK-00356-implement-faber-cli-work-commands.md for the CLI migration plan.

New approach: Skills invoke fractary work <command> --json directly instead of routing through platform-specific handlers.

Why deprecated:

  1. CLI provides platform abstraction at a lower level
  2. Reduces context by eliminating handler layer
  3. Simplifies skill implementations
  4. Centralized maintenance in CLI codebase

<CRITICAL_RULES>

  1. DEPRECATED - Do not use this handler for new implementations
  2. Skills should use Fractary CLI directly: fractary work <command> --json
  3. Existing scripts retained for backward compatibility only
  4. No new features will be added to this handler </CRITICAL_RULES>

Migration Guide

Before (Handler-based)

Skill → Handler → scripts/*.sh → Linear GraphQL API

After (CLI-based)

Skill → Fractary CLI → Linear GraphQL API

Example Migration

Before (deprecated):

# Skill invokes handler script
./scripts/fetch-issue.sh TEAM-123

After (recommended):

# Skill invokes CLI directly
fractary work issue fetch TEAM-123 --json

CLI Command Mapping

Handler OperationCLI CommandStatus
fetch-issuefractary work issue fetch <id>✅ Available
create-issuefractary work issue create✅ Available
update-issuefractary work issue update <id>✅ Available
close-issuefractary work issue close <id>✅ Available
reopen-issuefractary work issue reopen <id>❌ Missing
list-issuesfractary work issue search✅ Available
create-commentfractary work comment create <id>✅ Available
list-commentsfractary work comment list <id>✅ Available
add-labelfractary work label add <id>✅ Available
remove-labelfractary work label remove <id>✅ Available
assign-issuefractary work issue assign <id>❌ Missing
classify-issuefractary work issue classify <id>❌ Missing

Backward Compatibility

Existing scripts in scripts/ are retained for:

  • Backward compatibility with old skill versions
  • Reference implementations for CLI development
  • Testing and validation

Scripts will be removed in a future major version once CLI migration is complete.

Dependencies (for legacy scripts)

Required Tools

  • curl - HTTP requests
  • jq - JSON processor

Environment Variables

  • LINEAR_API_KEY - Linear API key

Script Locations (Legacy)

handler-work-tracker-linear/
├── SKILL.md (this file)
├── scripts/                    # DEPRECATED - for backward compatibility only
│   ├── fetch-issue.sh
│   ├── classify-issue.sh
│   ├── create-comment.sh
│   ├── add-label.sh
│   ├── remove-label.sh
│   ├── close-issue.sh
│   ├── reopen-issue.sh
│   ├── update-state.sh
│   ├── list-issues.sh
│   └── ...
└── docs/
    └── linear-api.md

Linear-Specific Notes (Reference)

Authentication

Linear uses Bearer token authentication with API key.

Issue Identifiers

Format: TEAM-NUMBER (e.g., ENG-123) or UUIDs internally.

GraphQL API

Linear uses GraphQL for all operations.

UUID Lookups

Labels, states, and users are referenced by UUID. Scripts must lookup UUIDs by name.

See Also

  • specs/WORK-00356-implement-faber-cli-work-commands.md - CLI migration spec
  • specs/WORK-00356-1-missing-cli-work-commands.md - Missing CLI commands
  • plugins/work/skills/cli-helper/SKILL.md - CLI invocation patterns

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon