SIRT Triage Agent Workshop
~10 min

Welcome and setup

Get your workshop account ready and authenticate wrangler.

Steps0 / 4
~10 min
  1. Log in to your workshop account at labs.cloudflare.com

    You should see the Cloudflare dashboard for your lab account.

  2. Verify Node.js 20+ is installed

    Run `node --version` — should show v20 or higher.

  3. Authenticate wrangler with your workshop account

    Run `npx wrangler login` and complete the OAuth flow in your browser.

  4. Verify authentication

    Run `npx wrangler whoami` — it should show your lab account email.

Welcome to the SIRT Triage Agent Workshop. In this lesson you will get your development environment ready so you can deploy the workshop app.

Set up your workshop account

Your workshop account has been provisioned via labs.cloudflare.com. This gives you a fully-featured Cloudflare account with Workers, D1, Durable Objects, Workers AI, and Dynamic Workers enabled.

Step 1: Log in to labs.cloudflare.com

Open labs.cloudflare.com in your browser and log in with the credentials provided by your facilitator.

Once logged in, you should see the Cloudflare dashboard.

Step 2: Verify Node.js

Open a terminal and check your Node.js version:

node --version

You need Node.js 20 or higher. If you need to install it, visit nodejs.org.

Step 3: Authenticate wrangler

Wrangler is the Cloudflare Workers CLI. Authenticate it with your lab account:

npx wrangler login

This opens your browser for OAuth. Log in with the same lab account credentials.

Step 4: Verify authentication

Confirm wrangler is connected to the right account:

npx wrangler whoami

You should see your lab account email and account ID. If you see the wrong account, run npx wrangler logout and repeat step 3.

You are ready

Once wrangler whoami shows your lab account, you are set up. Mark this lesson complete and move on to the SIRT overview.

Knowledge check