linear-webhooks

📁 finesssee/linear-cli 📅 Today
4
总安装量
2
周安装量
#54022
全站排名
安装命令
npx skills add https://github.com/finesssee/linear-cli --skill linear-webhooks

Agent 安装分布

amp 2
cline 2
opencode 2
cursor 2
kimi-cli 2
codex 2

Skill 文档

Webhooks

# List all webhooks
linear-cli wh list

# Create a webhook
linear-cli wh create https://example.com/hook --events Issue

# Get webhook details
linear-cli wh get WEBHOOK_ID

# Update a webhook
linear-cli wh update WEBHOOK_ID --url https://new-url.com

# Delete a webhook
linear-cli wh delete WEBHOOK_ID --force

# Rotate signing secret
linear-cli wh rotate-secret WEBHOOK_ID

# Listen for events locally (dev/testing)
linear-cli wh listen --port 9000
linear-cli wh listen --port 9000 --secret SIGNING_SECRET

Subcommands

Command Purpose
list List all webhooks
get View webhook details
create Create webhook
update Update webhook
delete Delete webhook
rotate-secret Rotate signing secret
listen Local event listener with HMAC verification

Flags

Flag Purpose
--events TYPE Event types to subscribe
--port N Local listener port
--secret KEY HMAC signing secret
--output json JSON output

Exit Codes

0=Success, 1=Error, 2=Not found, 3=Auth error