Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b599204
feat(webhooks): add webhook error codes
rafa-thayto Jun 9, 2026
5183113
feat(webhooks): persist per-instance relay state in CLI config
rafa-thayto Jun 9, 2026
95ac0a7
feat(webhooks): add typed PLAPI client functions for the 13 webhook r…
rafa-thayto Jun 9, 2026
d7cd2ff
feat(webhooks): register webhooks command group with auth preAction gate
rafa-thayto Jun 9, 2026
95f6cec
feat(webhooks): add 'webhooks list' command
rafa-thayto Jun 9, 2026
2e0ddc4
feat(webhooks): add 'webhooks get' command
rafa-thayto Jun 9, 2026
4b22cc9
feat(webhooks): add 'webhooks event-types' command
rafa-thayto Jun 9, 2026
5732d19
feat(webhooks): add 'webhooks secret' command with --rotate
rafa-thayto Jun 9, 2026
6b6b376
feat(webhooks): add 'webhooks delete' command
rafa-thayto Jun 9, 2026
cb23121
feat(webhooks): add 'webhooks update' command
rafa-thayto Jun 9, 2026
510f2f4
feat(webhooks): add 'webhooks create' command
rafa-thayto Jun 9, 2026
1ebc42f
feat(webhooks): add 'webhooks messages' command
rafa-thayto Jun 9, 2026
425a213
feat(webhooks): add 'webhooks replay' command
rafa-thayto Jun 9, 2026
285905d
feat(webhooks): add 'webhooks trigger' command
rafa-thayto Jun 9, 2026
4ecae9d
feat(webhooks): add 'webhooks open' command
rafa-thayto Jun 9, 2026
420e784
feat(webhooks): add offline 'webhooks verify' command
rafa-thayto Jun 9, 2026
3054dc0
feat(webhooks): add pure relay protocol helpers
rafa-thayto Jun 9, 2026
fbd62de
feat(webhooks): add relay client, forwarder, and listen rendering
rafa-thayto Jun 9, 2026
11763eb
feat(webhooks): add 'webhooks listen' command
rafa-thayto Jun 9, 2026
a9fb029
docs(webhooks): sync root README help output and add agent-mode outpu…
rafa-thayto Jun 9, 2026
cabd2e8
docs(changeset): add the clerk webhooks command group
rafa-thayto Jun 9, 2026
c67d486
style(webhooks): resolve all oxlint warnings in the webhooks group
rafa-thayto Jun 9, 2026
4ebecdc
fix(webhooks): validate trigger event type before endpoint resolution…
rafa-thayto Jun 9, 2026
e65962a
feat(webhooks): structured agent-mode output for 'webhooks verify' (s…
rafa-thayto Jun 9, 2026
37ce41b
fix(webhooks): fail fast on confirmation gates and unblock 'verify' s…
rafa-thayto Jun 9, 2026
1d1feaa
test(webhooks): spell the no---json agent case as an empty flags object
rafa-thayto Jun 9, 2026
4eaa629
chore(webhooks): remove stray test fixture committed under packages/c…
rafa-thayto Jun 9, 2026
ef2fce0
fix(webhooks): relay token carries the c_ prefix on the wire and in t…
rafa-thayto Jun 10, 2026
7a249e6
fix(webhooks): add missing imports and clean up rebase artifacts in c…
rafa-thayto Jun 15, 2026
99624a2
test(webhooks): cover relay client and harden splitCommaList empty ha…
rafa-thayto Jun 18, 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