Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Manage Linear

ASecurity

Manage Linear issues, projects, cycles, initiatives, and teams via the `linear` CLI (schpet/linear-cli)

33 stars
0 votes
0 copies
0 views
Added 9/20/2026
developmentrustgobashnodegitapi

Works with

cliapi

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add ayunis-core/ayunis-core --skill manage-linear --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Manage Linear?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Manage Linear
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ayunis-core-manage-linear/badge)](https://www.skillsdirectory.com/skills/ayunis-core-manage-linear)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: manage-linear
description: "Manage Linear issues, projects, cycles, initiatives, and teams via the `linear` CLI (schpet/linear-cli)"
---

# Manage Linear

CLI tool: `linear` (installed via Homebrew). Authenticated and ready to use.

Run `linear --help` or `linear <command> --help` for full option details — don't memorize flags, look them up.

## Important: --sort flag

`linear issue list` **requires** a sort: `--sort priority` or `--sort manual`. Always include it.

## Core commands

### Issues

- **List issues:** `linear issue list --team <KEY> --sort priority [--limit N]`
- **List all states:** add `--all-states` (default: unstarted only)
- **Filter by state:** `--state started`, `--state backlog`, etc.
- **Other people's issues (was `--all-assignees` on `issue list`):** the flag was removed from `issue list` and moved to a separate `issue query` subcommand:

  ```bash
  linear issue query --team <KEY> --all-assignees --all-states --sort manual
  ```

  Running `linear issue list --all-assignees` now errors out with: `--all-assignees has been removed from 'issue mine'. Use 'linear issue query --all-assignees' for assignee filtering`.
- **Create issue:** `linear issue create --team <KEY> --title "..." [--description "..." | --description-file path] [--assignee self] [--priority 1-4] [--label "..."] [--project "..."] [--state "..."]`
- **View issue:** `linear issue view <ID> [--json]`
- **Update issue:** `linear issue update <ID> [--state "..." | --title "..." | --assignee "..." | --priority N | --label "..." | ...]`
- **Delete issue:** `linear issue delete <ID>`
- **Comments:** `linear issue comment add <ID>`, `linear issue comment list <ID>`
- **Relations:** `linear issue relation add <ID> <type> <relatedID>`

### Gotchas

- **`--project` on `issue create` rejects UUIDs.** Pass the project name or slug:

  ```bash
  linear issue create --team AYC --project "Workspaces" --title "..."   # works
  linear issue create --team AYC --project fb01ed91-... --title "..."   # → "Project not found"
  ```

  UUIDs *do* work on `project view` / `project update`, just not on `issue create`. Look up the slug via `linear project list --json` when uncertain.
- **`linear issue view` does not list sub-issues.** To enumerate children of a parent, use the raw GraphQL fallback:

  ```bash
  linear api 'query($id: String!){ issue(id:$id){ children{ nodes{ identifier title state{ name } } } } }' \
    --variable id=<PARENT_ID>
  ```

- **Newly created issues may not be queryable immediately.** If `linear issue view <ID>` right after `issue create` fails with "Could not find referenced Issue", wait a second and retry — trust the URL printed by `create`.

### Teams

- **List teams:** `linear team list`
- **Team members:** `linear team members [KEY]`

### Projects

- **List:** `linear project list`
- **View:** `linear project view <ID>`
- **Create/update/delete** — see `linear project --help`

### Cycles, Milestones, Initiatives

- `linear cycle list --team <KEY>`, `linear cycle view <ref>`
- `linear milestone list --project <ID>`, `linear milestone create/update/delete`
- `linear initiative list`, `linear initiative view/create/update/archive`
- `linear project-update create <projectId>`, `linear initiative-update create <initId>`

### Labels & Documents

- `linear label list`, `linear label create`
- `linear document list`, `linear document view <ID>`, `linear document create/update`

### Raw GraphQL

For anything the CLI doesn't cover: `linear api '<query>' [--variable key=value] [--paginate]`

## Ayunis workspace teams

| Key  | Name        |
|------|-------------|
| AYC  | Ayunis Core |
| DEM  | Demo        |
| ENG  | Engineering |
| AYL3 | Locaboo 3   |
| AYL4 | Locaboo 4   |
| MGM  | Management  |
| SAL  | Sales       |

### Per-team state names

State names are NOT uniform across teams. **Do not hardcode `"In Progress"`,
`"Merged"`, or `"Done"`** — look up the team's actual state before updating. Confirmed
divergences:

| Team | Started state    | Release-pending state | Closed state |
|------|------------------|-----------------------|--------------|
| AYC  | `In Development` | `Merged`              | `Done`       |

(Other teams default to the standard `In Progress` / `Done`; look up whether a
release-pending state exists before moving a merged code ticket.)

To enumerate any team's states yourself:

```bash
linear api 'query($key: String!){ team(id: $key){ states { nodes { name type } } } }' \
  --variable key=<TEAM_KEY>
```

## Guidelines

- **Always use `--no-interactive`** on `issue create` when running non-interactively (avoids prompts).
- **Use `--json`** on `issue view` when you need structured data to process.
- **Issue IDs** look like `AYC-4` (team key + number).
- **Ask before creating/updating/deleting** — treat writes with care.
- **For code-backed issues, merge is not completion.** The Git integration should move the issue to the team's release-pending state after merge (`Merged` for AYC). Only the release process may move it to `Done` after a production release contains the change. Before reopening an unexpectedly completed issue, inspect its state history and linked release; restore it only when completion preceded the containing release.
- **Subtasks** should always be created with `--state Backlog`, not `Triage` — the parent has already been triaged.
- **Create sub-issues upfront when a ticket enumerates iterations.** If the parent ticket spells out "iter 1 / iter 2 / iter 3" or numbered phases, propose creating one sub-issue per iteration during planning, *before* implementation starts. Progress each sub-issue through the team's workflow; code-backed subtasks follow the same release-pending/`Done` lifecycle as their parent.

Attribution

ayunis-coreayunis-core
View sourceMore from ayunis-core →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →