Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6026313
feat(webhooks): add webhook error codes
rafa-thayto Jun 9, 2026
4f0739b
feat(webhooks): persist per-instance relay state in CLI config
rafa-thayto Jun 9, 2026
0ee17a4
feat(webhooks): add typed PLAPI client functions for the 13 webhook r…
rafa-thayto Jun 9, 2026
24e05aa
feat(webhooks): register webhooks command group with auth preAction gate
rafa-thayto Jun 9, 2026
a20e865
feat(webhooks): add 'webhooks list' command
rafa-thayto Jun 9, 2026
c39e486
feat(webhooks): add 'webhooks get' command
rafa-thayto Jun 9, 2026
93a3320
feat(webhooks): add 'webhooks event-types' command
rafa-thayto Jun 9, 2026
a2ad165
feat(webhooks): add 'webhooks secret' command with --rotate
rafa-thayto Jun 9, 2026
381e9e5
feat(webhooks): add 'webhooks delete' command
rafa-thayto Jun 9, 2026
e68bf75
feat(webhooks): add 'webhooks update' command
rafa-thayto Jun 9, 2026
0ebc40c
feat(webhooks): add 'webhooks create' command
rafa-thayto Jun 9, 2026
356135f
feat(webhooks): add 'webhooks messages' command
rafa-thayto Jun 9, 2026
371bf45
feat(webhooks): add 'webhooks replay' command
rafa-thayto Jun 9, 2026
ce85669
feat(webhooks): add 'webhooks trigger' command
rafa-thayto Jun 9, 2026
70aaceb
feat(webhooks): add 'webhooks open' command
rafa-thayto Jun 9, 2026
9b73699
feat(webhooks): add offline 'webhooks verify' command
rafa-thayto Jun 9, 2026
67abc48
feat(webhooks): add pure relay protocol helpers
rafa-thayto Jun 9, 2026
f927b38
feat(webhooks): add relay client, forwarder, and listen rendering
rafa-thayto Jun 9, 2026
28e7d17
feat(webhooks): add 'webhooks listen' command
rafa-thayto Jun 9, 2026
80e9104
docs(webhooks): sync root README help output and add agent-mode outpu…
rafa-thayto Jun 9, 2026
4db0106
docs(changeset): add the clerk webhooks command group
rafa-thayto Jun 9, 2026
39f7d96
style(webhooks): resolve all oxlint warnings in the webhooks group
rafa-thayto Jun 9, 2026
e4ebef6
fix(webhooks): validate trigger event type before endpoint resolution…
rafa-thayto Jun 9, 2026
54e9808
feat(webhooks): structured agent-mode output for 'webhooks verify' (s…
rafa-thayto Jun 9, 2026
522437d
fix(webhooks): fail fast on confirmation gates and unblock 'verify' s…
rafa-thayto Jun 9, 2026
2c652bb
test(webhooks): spell the no---json agent case as an empty flags object
rafa-thayto Jun 9, 2026
dc34c07
chore(webhooks): remove stray test fixture committed under packages/c…
rafa-thayto Jun 9, 2026
9f8329d
fix(webhooks): relay token carries the c_ prefix on the wire and in t…
rafa-thayto Jun 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/webhooks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"clerk": minor
---

Add the `clerk webhooks` command group for managing webhook endpoints and deliveries from the terminal: `list`, `get`, `create`, `update`, `delete`, `secret [--rotate]`, `event-types`, `messages`, `replay`, `listen`, `trigger`, `verify`, and `open`.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Commands:
open Open Clerk resources in your browser
apps Manage your Clerk applications
users [options] Manage Clerk users
webhooks [options] Manage webhook endpoints and deliveries
env Manage environment variables
config Manage instance configuration
enable Enable Clerk features on the linked instance
Expand Down
Loading