AgentSkillsCN

linear-workflow

支持自动生成 Neptune ACL 申请报文并直接发起申请。该功能可适配多环境(BOE、Online-CN、i18n-BD)、多区域选择,并允许指定源集群与目标集群;同时,它还能自动处理非 BOE 环境下的 Pre-release 申请。

SKILL.md
--- frontmatter
name: linear-workflow
description: Start/stop work on Linear issues. Use when beginning work, creating branches, or getting current issue context.
allowed-tools: Bash

Workflow Commands

Start Work

bash
# Start working (assigns to you, sets In Progress)
linear-cli i start LIN-123

# Start + create git branch
linear-cli i start LIN-123 --checkout

Stop Work

bash
# Stop working (unassigns, resets status)
linear-cli i stop LIN-123

Get Current Issue

bash
# Get issue from current git branch
linear-cli context
linear-cli context --output json

Full Workflow

bash
# 1. Start
linear-cli i start LIN-123 --checkout

# 2. Code...

# 3. Create PR
linear-cli g pr LIN-123

# 4. Done
linear-cli i update LIN-123 -s Done