Skip to content

Commit 5ebb3ff

Browse files
committed
small blog tweaks
1 parent 0979682 commit 5ebb3ff

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

blog/_posts/2026-03-02-wizard-of-drift-oz-and-dotenvx.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ layout: blog
33
author: "Scott Motte – Mot"
44
title: "Stop .env Drift Before Merge with Wizard of Drift"
55
image: "/assets/img/blog/blog-13.png"
6-
excerpt: "Catch .env key drift on pull requests automatically with Warp Oz + Dotenvx."
6+
excerpt: "Catch .env key drift on pull requests automatically with Warp's Oz + Dotenvx."
77
---
88

99
I shipped a small GitHub Action this week: [wizard-of-drift](https://github.com/dotenvx/wizard-of-drift).
1010

1111
It catches `.env*` key drift in pull requests and leaves a review comment with concrete fixes.
1212

13-
It uses [Warp Oz](https://warp.dev/oz) under the hood to do the review, and it works great.
13+
It uses [Warp's Oz](https://warp.dev/oz) under the hood to do the review, and it works great.
1414

1515
<img src="https://github.com/user-attachments/assets/b77d8c0f-a96e-4e31-905d-6c76c42882a9" />
1616

@@ -72,7 +72,7 @@ jobs:
7272
warp_agent_profile: "" # optional
7373
```
7474
75-
## Why Oz Works Well Here
75+
## Why A Coding Agent Works Well Here
7676
7777
This is a great use case for an agent because the input is high-context but bounded:
7878
@@ -81,11 +81,11 @@ This is a great use case for an agent because the input is high-context but boun
8181
- the `.env*` diff in the PR
8282
- explicit rules about `DOTENV_PUBLIC_KEY` naming
8383

84-
Wizard of Drift builds that context first, then gives Oz a tight prompt and asks for one output: a concise review summary with exact keys to add.
84+
Wizard of Drift builds that context first, then gives the agent (in this case Oz) a tight prompt and asks for one output: a concise review summary with exact keys to add.
8585

8686
That pattern matters.
8787

88-
Oz is not guessing from vague code context. It is reviewing a purpose-built context document generated by CI, then returning actionable output directly into the PR conversation.
88+
The agent is not guessing from vague code context. It is reviewing a purpose-built context document generated by CI, then returning actionable output directly into the PR conversation.
8989

9090
So the reviewer sees concrete fixes, not generic AI advice.
9191

@@ -97,8 +97,8 @@ This is the kind of workflow I want more of:
9797
- AI agent review
9898
- deterministic output in PR comments
9999

100-
Oz helps amplify what Dotenvx is already good at: making `.env` workflows safer and easier to operate at scale.
100+
And Oz was a great choice here because I wanted to easily trigger a coding agent from a GitHub action. Plus it supports any model and can be monitored from [its dashboard](https://oz.warp.dev).
101101

102-
Dotenvx gives you the secure env model. Oz gives you a practical enforcement loop at review time.
102+
The combination makkes my `.env` workflows safer and easier to operate at scale. Dotenvx gives you the secure env model and the agent gives you a practical enforcement loop at review time.
103103

104104
Together, they remove a class of annoying config breakages before they merge.

0 commit comments

Comments
 (0)