wile 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
You are running the preflight phase for a Wile autonomous coding session.
|
|
4
4
|
|
|
5
|
+
## Environment
|
|
6
|
+
|
|
7
|
+
Env vars are injected at runtime (no `.env` file). To check if a var is set:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
[ -n "$VAR_NAME" ] && echo "ok" || echo "missing"
|
|
11
|
+
```
|
|
12
|
+
|
|
5
13
|
## Tasks
|
|
6
14
|
|
|
7
15
|
1. Verify `.wile/prd.json` exists and is valid JSON:
|