linctl: A Powerful CLI Tool for Linear API Management

This repository profile is provided by osrepos.com, an open source repository discovery platform.

linctl: A Powerful CLI Tool for Linear API Management

Summary

linctl is a robust command-line interface designed for managing Linear's API, catering to both automated agents and human users. Built in Go with Cobra, it offers extensive features for issue, project, and team management. This tool streamlines Linear workflows, providing flexible output formats and powerful filtering capabilities.

Repository Information

Analyzed by OSRepos on January 1, 2026

Topics

Click on any tag to explore related repositories

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

Introduction

linctl is a comprehensive command-line interface for interacting with Linear's API. Developed in Go with the Cobra framework, it's designed to be highly efficient and versatile, making it suitable for both developer workflows and automated scripting. It provides a rich set of commands for managing issues, projects, teams, users, and comments directly from your terminal.

Key features include secure authentication via personal API keys, detailed issue management with sub-issue hierarchies and Git branch integration, comprehensive project tracking, and flexible output formats like table, plaintext, and JSON. linctl also emphasizes performance with time-based filtering and sorting options, ensuring a smooth experience even with large Linear workspaces.

Installation

Getting started with linctl is straightforward. Choose the method that best suits your environment:

Homebrew (macOS/Linux)

brew tap dorkitude/linctl
brew install linctl
linctl docs      # Render the README.md

From Source

git clone https://github.com/dorkitude/linctl.git
cd linctl
make deps        # Install dependencies
make build       # Build the binary
make install     # Install to /usr/local/bin (requires sudo)
linctl docs      # Render the README.md

Examples

linctl offers a wide range of commands to manage your Linear workspace. Here are a few examples to get you started:

Authentication and User Info

# Interactive authentication
linctl auth

# Check authentication status
linctl auth status

# Show current user
linctl whoami

Issue Management

# List all issues (defaults to last 6 months)
linctl issue list

# List issues assigned to you, sorted by update date
linctl issue list --assignee me --sort updated

# Search issues using Linear's full-text index
linctl issue search "login bug" --team ENG

# Get issue details (includes git branch, cycle, project, attachments, comments)
linctl issue get LIN-123

# Create a new issue and assign it to yourself
linctl issue create --title "Bug fix" --team ENG --assign-me

# Update issue fields
linctl issue update LIN-123 --title "New title" --state "In Progress" --priority 1

Project and Team Management

# List all projects, including older ones
linctl project list --newer-than all_time

# Get project details by ID
linctl project get 65a77a62-ec5e-491e-b1d9-84aebee01b33

# List all teams with issue counts
linctl team list

# List team members for a specific team
linctl team members ENG

Scripting with JSON Output

#!/bin/bash

# Get all urgent issues in JSON format and parse with jq
urgent_issues=$(linctl issue list --priority 1 --json)
echo "$urgent_issues" | jq '.[] | select(.assignee == "me") | .id'

# Get issue count for different time periods
echo "Last week: $(linctl issue list --newer-than 1_week_ago --json | jq '. | length')"

Why Use It

linctl stands out as an essential tool for anyone working with Linear, especially those looking to enhance productivity and automation. Its agent-first design, combined with human-friendly features, makes it incredibly versatile. You can streamline daily tasks, automate complex workflows, and integrate Linear data into custom scripts and reports with ease. The tool's focus on performance, flexible output formats (table, plaintext, JSON), and comprehensive filtering capabilities ensures that you can quickly access and manipulate the exact information you need, without being overwhelmed by data. Whether you're a developer, project manager, or an automated system, linctl provides the granular control and efficiency required to manage your Linear workspace effectively.

Links

Related repositories

Similar repositories that may be relevant next.

GoBooks: A Curated List of Essential Golang Books for All Skill Levels

GoBooks: A Curated List of Essential Golang Books for All Skill Levels

July 20, 2026

GoBooks is a highly popular GitHub repository offering a meticulously curated collection of Golang books, catering to developers from beginners to advanced practitioners. It serves as a comprehensive resource for finding the right learning materials on topics like concurrency, performance, and system design, making it easier to navigate the vast Go ecosystem.

GoGolangBooks
Zero: The AI Coding Agent for Your Local Terminal

Zero: The AI Coding Agent for Your Local Terminal

July 6, 2026

Zero is an innovative AI coding agent designed for your local terminal, offering powerful capabilities to inspect repositories, edit files, run commands, and utilize browser/terminal helpers. It provides durable local sessions while giving users full control over the AI model and permission levels. This tool empowers developers with a customizable and secure AI assistant directly within their development environment.

aiai-agentcli
no-mistakes: AI-Driven Git Proxy for Flawless Pull Requests

no-mistakes: AI-Driven Git Proxy for Flawless Pull Requests

June 30, 2026

no-mistakes is an innovative Git proxy that streamlines the pull request workflow by ensuring code quality before it reaches your remote. It uses an AI-driven validation pipeline in a disposable worktree, automatically applying safe fixes and escalating complex issues for human review. This tool helps developers maintain clean, high-quality codebases and open perfect PRs effortlessly.

GitAIDeveloper Tools
Gogcli: Google Workspace Management from Your Terminal

Gogcli: Google Workspace Management from Your Terminal

June 24, 2026

Gogcli is a powerful command-line interface for Google Workspace, allowing users to manage Gmail, Calendar, Drive, Docs, Sheets, and many other services directly from their terminal. It is designed for both interactive use and robust automation, providing predictable output, agent safety features, and support for multiple accounts.

gcalgcontactsgdrive

Source repository

Open the original repository on GitHub.

12 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️