<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Clayton Oliveira</title>
    <description>The latest articles on DEV Community by Clayton Oliveira (@clayton_oliveira_6cf7e919).</description>
    <link>https://dev.to/clayton_oliveira_6cf7e919</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3925591%2F15e3562d-9753-4c6c-b49c-fd095d1fabcb.jpg</url>
      <title>DEV Community: Clayton Oliveira</title>
      <link>https://dev.to/clayton_oliveira_6cf7e919</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/clayton_oliveira_6cf7e919"/>
    <language>en</language>
    <item>
      <title>HookScope v1.2 — Full CLI Management, Pause Live Updates, CLI Replay, and Endpoint Groups</title>
      <dc:creator>Clayton Oliveira</dc:creator>
      <pubDate>Mon, 11 May 2026 18:10:14 +0000</pubDate>
      <link>https://dev.to/clayton_oliveira_6cf7e919/hookscope-v12-full-cli-management-pause-live-updates-cli-replay-and-endpoint-groups-4k35</link>
      <guid>https://dev.to/clayton_oliveira_6cf7e919/hookscope-v12-full-cli-management-pause-live-updates-cli-replay-and-endpoint-groups-4k35</guid>
      <description>&lt;p&gt;If you've ever integrated with Stripe, GitHub, Mercado Pago, or any service that sends webhooks, you know the pain: you push a fix, deploy, and then wait for the provider to actually send another event so you can test it. Or worse, you're staring at a live stream of incoming requests and the one you need scrolls away before you can inspect it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://hookscope.com.br" rel="noopener noreferrer"&gt;HookScope&lt;/a&gt; is a tool for capturing, inspecting, and replaying webhooks in real time. We just shipped v1.2, and it's the biggest update since launch. Here's what changed.&lt;/p&gt;

&lt;h2&gt;
  
  
  CLI Beyond &lt;code&gt;listen&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;The CLI (distributed as a &lt;code&gt;dotnet tool&lt;/code&gt;) now does a lot more than just forwarding webhooks to localhost. New commands let you manage endpoints, workflows, and your plan directly from the terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# List all endpoints with status, forward mode, and group&lt;/span&gt;
hookscope endpoints

&lt;span class="c"&gt;# Interactive menu to manage a specific endpoint&lt;/span&gt;
hookscope endpoint stripe-prod

&lt;span class="c"&gt;# View configured workflows&lt;/span&gt;
hookscope workflows

&lt;span class="c"&gt;# Check your plan usage&lt;/span&gt;
hookscope plan
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The &lt;code&gt;hookscope endpoint &amp;lt;slug&amp;gt;&lt;/code&gt; command opens an interactive menu where you can toggle forwarding, change the destination URL, enable proxy mode, pause the endpoint, and configure mock responses — all without leaving the terminal.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pause Live Updates
&lt;/h2&gt;

&lt;p&gt;On high-volume endpoints, inspecting a specific request was frustrating because the list kept updating in real time. The dashboard now has a &lt;strong&gt;pause button&lt;/strong&gt; that freezes the visible list while webhooks continue to be captured in the background.&lt;/p&gt;

&lt;p&gt;When you resume, all accumulated requests appear at once. The pause state persists even if you navigate into a request's detail view and back.&lt;/p&gt;

&lt;h2&gt;
  
  
  CLI Replay
&lt;/h2&gt;

&lt;p&gt;Replay already existed in the dashboard (re-sends the payload to the forward URL). Now there's &lt;strong&gt;CLI Replay&lt;/strong&gt;: it sends the webhook payload via WebSocket directly to the CLI session listening on that endpoint.&lt;/p&gt;

&lt;p&gt;The workflow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;code&gt;hookscope listen my-endpoint --to http://localhost:3000/webhook&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Open any request from the history in the dashboard&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;CLI Replay&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;The payload hits your localhost in milliseconds&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is especially useful for re-testing payloads after fixing a bug, without asking the external service to resend the event.&lt;/p&gt;

&lt;h2&gt;
  
  
  Endpoint Groups
&lt;/h2&gt;

&lt;p&gt;You can now organize endpoints into named groups — by project, team, or environment. In the dashboard they show up as collapsible headers. In the CLI they appear as an extra column in the listing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Availability
&lt;/h2&gt;

&lt;p&gt;All features are available on &lt;strong&gt;every plan&lt;/strong&gt;, including Free. To update the CLI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;dotnet tool update &lt;span class="nt"&gt;-g&lt;/span&gt; HookScope.Cli
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The dashboard is already updated automatically.&lt;/p&gt;




&lt;p&gt;Full blog post (in Portuguese): &lt;a href="https://hookscope.com.br/blog/hookscope-v1-2-novidades-cli-pausar-replay-grupos/" rel="noopener noreferrer"&gt;hookscope.com.br/blog/hookscope-v1-2-novidades-cli-pausar-replay-grupos&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create a free account at &lt;a href="https://hookscope.app" rel="noopener noreferrer"&gt;hookscope.app&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;HookScope is built by &lt;a href="https://devplus.com.br" rel="noopener noreferrer"&gt;DevPlus&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>webhooks</category>
      <category>dotnet</category>
      <category>devtools</category>
      <category>api</category>
    </item>
  </channel>
</rss>
