nesszer/linear-cli

linear-webhooks

Manage webhooks - create, listen for events, rotate secrets. Use when setting up integrations or event listeners.

First seen Feb 28, 2026

Installation

$ npx skills add nesszer/linear-cli --skill linear-webhooks

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from nesszer/linear-cli · top by installs.

npx skills add nesszer/linear-cli

Browse all from nesszer/linear-cli

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 133
License LICENSE
Default branch master
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,305 B
  • docs SUMMARY.md 136 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 109 installs

SKILL.md

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