一键导入
linear-webhooks
Manage webhooks - create, listen for events, rotate secrets. Use when setting up integrations or event listeners.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage webhooks - create, listen for events, rotate secrets. Use when setting up integrations or event listeners.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Execute raw GraphQL queries and mutations against the Linear API. Use for advanced operations not covered by other commands.
Manage issue attachments - link URLs, create, update, delete. Use when attaching files or links to issues.
Manage issue comments - list, create, update, delete. Use when reading or posting comments on issues.
Configure linear-cli - auth (API key + OAuth), workspaces, diagnostics, setup wizard.
Manage Linear sprint cycles - list, create, update, delete, complete. Use when managing cycles.
Mark the current branch's issue as Done. Use as a quick shortcut to close the issue you're working on.
| name | linear-webhooks |
| description | Manage webhooks - create, listen for events, rotate secrets. Use when setting up integrations or event listeners. |
| allowed-tools | Bash |
# 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
| 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 |
| Flag | Purpose |
|---|---|
--events TYPE | Event types to subscribe |
--port N | Local listener port |
--secret KEY | HMAC signing secret |
--output json | JSON output |
0=Success, 1=Error, 2=Not found, 3=Auth error