hirann commited on
Commit
36ca88f
·
verified ·
1 Parent(s): 4930340

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +211 -186
README.md CHANGED
@@ -1,186 +1,211 @@
1
- ---
2
- title: ImmunoOrg 2.0
3
- emoji: 🛡️
4
- colorFrom: blue
5
- colorTo: green
6
- sdk: docker
7
- pinned: false
8
- ---
9
-
10
- # ImmunoOrg 2.0 — The Autonomous, Self-Healing Enterprise
11
-
12
- > An OpenEnv RL environment where an LLM defender learns to contain
13
- > cyber-attacks **and** restructure the organization that lets them
14
- > succeed. Built for the OpenEnv Hackathon (India 2026).
15
-
16
- | Resource | Link |
17
- | --- | --- |
18
- | 🟢 **Live demo (click → "Launch interactive demo")** | https://hirann-immunoorg-v3.hf.space |
19
- | 🤗 **HF Space** | https://huggingface.co/spaces/hirann/immunoorg-v3 |
20
- | 📋 **Problem statement (Round 2 formal)** | [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) |
21
- | 📝 **Mini-blog** | [`BLOG_POST.md`](./BLOG_POST.md) |
22
- | 🎬 **Video script (90 sec)** | [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md) |
23
- | 📔 **Training notebook (Colab)** | [`ImmunoOrg_Training_Colab.ipynb`](./ImmunoOrg_Training_Colab.ipynb) |
24
- | 🖥️ **HPC training pipeline** | [`scripts/hpc/HANDOFF.md`](./scripts/hpc/HANDOFF.md) |
25
- | 🔬 **Research notes (architecture deep-dive)** | [`RESEARCH.md`](./RESEARCH.md) |
26
- | 🧪 **Judges' walkthrough** | [`JUDGING_GUIDE.md`](./JUDGING_GUIDE.md) |
27
- | 💻 **GitHub source** | https://github.com/Charannoo/immunoorg |
28
-
29
- ---
30
-
31
- ## TL;DR
32
-
33
- Two graphs run in parallel inside one episode:
34
-
35
- 1. **A technical network** 7-23 nodes (web servers, DBs, CI/CD, DNS) with
36
- real vulnerability scores.
37
- 2. **An organizational graph** departments with approval chains, trust
38
- scores, and political deadlocks.
39
-
40
- The agent has 28 actions across 3 categories (tactical / strategic /
41
- diagnostic) and must fix both layers simultaneously, against an adversary
42
- that adapts to its policy, under conflicting board directives, with a
43
- **5-track composable reward** that no single signal can hack.
44
-
45
- Read [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) for the formal
46
- Round 2 definition (problem / env / capabilities / tasks / reward /
47
- post-training).
48
-
49
- ---
50
-
51
- ## Evidence (committed PNGs — judges scan these in seconds)
52
-
53
- All charts are produced by `python generate_evidence.py` and
54
- `python scripts/generate_training_evidence.py` and committed to the repo.
55
-
56
- ![Random vs Heuristic policies across difficulty levels 1-4](./evidence_policy_comparison.png)
57
- *Random vs Heuristic across all 4 difficulty levels — Heuristic policy
58
- (gold standard for reward shaping) beats Random by 4-11 points,
59
- proving the env is learnable and reward shaping has signal.*
60
-
61
- ![Per-scenario reward lift Random vs Heuristic](./evidence_scenario_rewards.png)
62
- *Per-family reward (10 episodes each, real env rollouts). The heuristic
63
- policy beats the random baseline in **every** scenario family that
64
- lift is the signal the GRPO trainer climbs.*
65
-
66
- ![Self-improvement across 6 generations of org mutation](./evidence_self_improvement.png)
67
- *6 generations of self-improvement: reward-per-step trends up, time-to-
68
- containment trends down, org efficiency rises as mutations accumulate.*
69
-
70
- ![5-track composable reward breakdown](./evidence_5track_reward.png)
71
- *Per-step contribution of the 5 reward tracks. No single track dominates
72
- anti-reward-hacking property called out in the brief.*
73
-
74
- ![Org graph: 3-day vs 4-hour approval](./evidence_org_before_after.png)
75
- *The "self-healed enterprise" moment: org graph after the agent
76
- restructures it via `ESTABLISH_DEVSECOPS` + `REDUCE_BUREAUCRACY`.
77
- Approval latency drops from 72h to 4h.*
78
-
79
- ![War Room debate + DevSecOps Mesh activity](./evidence_war_room_mesh.png)
80
- *Multi-agent War Room consensus dynamics + 4-gate DevSecOps Mesh event counts.*
81
-
82
- > **`evidence_grpo_training.png`** + **`evidence_eval_per_family.png`** +
83
- > **`evidence_eval_summary.png`** are produced by stages 2 + 3 of the
84
- > [HPC pipeline](./scripts/hpc/HANDOFF.md) currently running on the
85
- > supercomputer. They will be committed to the repo + auto-uploaded to
86
- > [`hirann/immunoorg-grpo-defender`](https://huggingface.co/hirann/immunoorg-grpo-defender)
87
- > when the run finishes.
88
-
89
- ---
90
-
91
- ## Quick start
92
-
93
- ### Click the live demo
94
- → https://hirann-immunoorg-v3.hf.space → **▶ Launch interactive demo**
95
-
96
- ### Run the OpenEnv environment locally
97
-
98
- ```bash
99
- git clone https://github.com/Charannoo/immunoorg
100
- cd immunoorg
101
- python -m venv .venv && . .venv/Scripts/activate # PowerShell on Windows
102
- pip install -r requirements.txt
103
- uvicorn server.main:app --reload --port 7860
104
- ```
105
-
106
- Then visit http://localhost:7860 (landing) or http://localhost:7860/demo (Gradio UI).
107
-
108
- ### Train with GRPO (3 paths)
109
-
110
- | Where | When to use | Time |
111
- | --- | --- | --- |
112
- | **HPC** (`scripts/hpc/run_all.sh`) | Best evidence: full datasets + SFT + GRPO + 100-ep eval, all chained via SLURM, auto-pushes to HF Hub | ~3-4 hr (1× A100) / ~1-1.5 hr (4× A100) |
113
- | **Colab T4** (`ImmunoOrg_Training_Colab.ipynb`) | Free, browser-only, Qwen2.5-3B | ~30-45 min |
114
- | **Local CPU smoke** (`python -m training.train_grpo --smoke-test`) | Sanity check only | very slow |
115
-
116
- See [`scripts/hpc/HANDOFF.md`](./scripts/hpc/HANDOFF.md) for the friend-facing
117
- HPC instructions.
118
-
119
- ### Run the test suite
120
-
121
- ```bash
122
- pytest tests -q # 32 passed, 1 skipped (live API, only runs when uvicorn is up)
123
- ```
124
-
125
- ---
126
-
127
- ## OpenEnv API surface
128
-
129
- | Endpoint | Method | Purpose |
130
- | --- | --- | --- |
131
- | `/` | GET | Landing page (HTML) with link to /demo |
132
- | `/demo` | (Gradio) | Interactive visual demo |
133
- | `/health` | GET | Liveness + version |
134
- | `/reset` | POST | Start a fresh episode (`{"difficulty": 1, "seed": 42}`) |
135
- | `/step` | POST | Apply an action (`{"action": {...}}`) |
136
- | `/state` | GET | Full server-side state (debug / dashboard) |
137
- | `/directive` | POST | Inject a Board Directive mid-episode |
138
- | `/trained_status` | GET | Is the trained LoRA loaded yet? |
139
- | `/openenv.yaml` | GET | Serve the manifest |
140
- | `/admin/training/start` | GET | Kick off GRPO training (token-gated) |
141
- | `/admin/training/status` | GET | JSON status of the training job |
142
- | `/admin/training/log` | GET | Tail the training log |
143
-
144
- Action schema lives in [`openenv.yaml`](./openenv.yaml) and matches
145
- `immunoorg.models.ImmunoAction`.
146
-
147
- ---
148
-
149
- ## How this maps to the judging criteria
150
-
151
- | Criterion | Weight | Where to look |
152
- | --- | ---: | --- |
153
- | **Environment Innovation** | 40% | Socio-technical RL, 5-track reward, War Room, DevSecOps Mesh, 50-step Polymorphic Migration. See [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) §1. |
154
- | **Storytelling** | 30% | Live demo on the Space + [`BLOG_POST.md`](./BLOG_POST.md) + 6 evidence PNGs above + [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md). |
155
- | **Improvement in Rewards** | 20% | `evidence_*.png` files committed; HPC pipeline produces `evidence_grpo_training.png` + `evidence_eval_per_family.png` from a real Qwen2.5-7B GRPO run. |
156
- | **Reward & Training Pipeline** | 10% | [`training/train_grpo.py`](./training/train_grpo.py) (3 verifiable reward fns), [`training/dataset_generator.py`](./training/dataset_generator.py) (1700+ scenarios), [`training/scenario_hooks.py`](./training/scenario_hooks.py) (5 elite families), [`scripts/hpc/`](./scripts/hpc/) (full SFT→GRPO→eval pipeline). |
157
-
158
- ---
159
-
160
- ## Anti-reward-hacking measures (judge guidance §7 + §21)
161
-
162
- - 3 independent reward functions at the trainer + 5-track composable reward in the env.
163
- - False-positive isolation penalty (burns half the uptime budget).
164
- - Phase-gated transitions require *real work*, not step counts.
165
- - Org friction tactical spam denied; agent must do strategic work.
166
- - War-Room hallucination flagging via shared FactStore.
167
- - Per-step training penalties for ignoring board directives or retrying denied isolations.
168
-
169
- Full details in [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) §5c and
170
- [`RESEARCH.md`](./RESEARCH.md).
171
-
172
- ---
173
-
174
- ## Status
175
-
176
- - OpenEnv-compliant environment + manifest + Gym-style API + client/server separation
177
- - ✅ Hugging Face Space deployed: https://huggingface.co/spaces/hirann/immunoorg-v3
178
- - Visual Gradio demo at `/demo` with live trained-vs-baseline comparison
179
- - 1700+ scenario dataset generator + 5-family elite mix + heuristic-trajectory SFT data
180
- - 6 evidence PNGs committed
181
- - HPC training pipeline (4 SLURM stages, multi-GPU ready)
182
- - HPC GRPO run in progress on supercomputer will produce `evidence_grpo_training.png` + trained adapter at [`hirann/immunoorg-grpo-defender`](https://huggingface.co/hirann/immunoorg-grpo-defender)
183
- - Mini-blog at [`BLOG_POST.md`](./BLOG_POST.md), 90-sec video script at [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md)
184
- - ✅ pytest: 32 passed, 1 skipped
185
-
186
- Built for the OpenEnv Hackathon (India 2026).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: ImmunoOrg 2.0
3
+ emoji: 🛡️
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: docker
7
+ pinned: false
8
+ ---
9
+
10
+ # ImmunoOrg 2.0 — The Autonomous, Self-Healing Enterprise
11
+
12
+ > An OpenEnv RL environment where an LLM defender learns to contain
13
+ > cyber-attacks **and** restructure the organization that lets them
14
+ > succeed. Built for the OpenEnv Hackathon (India 2026).
15
+
16
+ ### For judges (60 s)
17
+
18
+ **[`JUDGES_60_SECONDS.md`](./JUDGES_60_SECONDS.md)** · Live app: https://hirann-immunoorg-v3.hf.space/demo (War Room + episode demo on **one** page).
19
+
20
+ **⏱ Crunch time?** **[`WIN_30MIN.md`](./WIN_30MIN.md)** (fastest calm path) then **[`SUBMIT_NOW.md`](./SUBMIT_NOW.md)** for the full checklist.
21
+ Run **`python scripts/make_hackathon_training_figure.py`** to create **`evidence_grpo_training.png`** in ~2 minutes (real env curve + Colab pointer).
22
+
23
+ | Resource | Link |
24
+ | --- | --- |
25
+ | 🟢 **Live Space (direct host)** | https://hirann-immunoorg-v3.hf.space |
26
+ | 🤗 **HF Space card** | https://huggingface.co/spaces/hirann/immunoorg-v3 |
27
+ | 🎭 **War Room (Theme #1, inside `/demo`)** | Same page as episode demo — **Live LLM War Room** section |
28
+ | 👩‍⚖️ **Judges — 60 s** | [`JUDGES_60_SECONDS.md`](./JUDGES_60_SECONDS.md) |
29
+ | 📋 **Problem statement (Round 2 formal)** | [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) |
30
+ | 📝 **Mini-blog (source — paste into HF)** | [`BLOG_POST.md`](./BLOG_POST.md) |
31
+ | ✍️ **Publish HF post + YouTube** | [`PUBLISH_HACKATHON.md`](./PUBLISH_HACKATHON.md) |
32
+ | 🌐 **HF mini-blog (public URL)** | *Replace after publishing:* `HF_MINI_BLOG_URL` |
33
+ | ▶️ **YouTube demo (< 2 min)** | *Replace after upload:* `YOUTUBE_DEMO_URL` |
34
+ | 📖 **Judges’ guide (official)** | [What judges look for](https://docs.google.com/document/d/1Odznuzwtb1ecDOm2t6ToZd4MuMXXfO6vWUGcxbC6mFs/edit?tab=t.0#bookmark=kix.2dz0x0nie3me) |
35
+ | 🎬 **Video script (90 sec)** | [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md) |
36
+ | 📔 **Training notebook (Colab + TRL GRPO)** | [Open in Colab](https://colab.research.google.com/github/Charannoo/immunoorg/blob/master/ImmunoOrg_Training_Colab.ipynb) · [`ImmunoOrg_Training_Colab.ipynb`](./ImmunoOrg_Training_Colab.ipynb) |
37
+ | **Win in ~30 min (start here if stressed)** | [`WIN_30MIN.md`](./WIN_30MIN.md) |
38
+ | **Deadline playbook (~5 h)** | [`SUBMIT_NOW.md`](./SUBMIT_NOW.md) |
39
+ | 🖥️ **HPC training pipeline** | [`scripts/hpc/HANDOFF.md`](./scripts/hpc/HANDOFF.md) |
40
+ | **Pre-submit checklist script** | `python scripts/verify_hackathon_submission.py` |
41
+ | 🔬 **Research notes** | [`RESEARCH.md`](./RESEARCH.md) |
42
+ | 🧪 **Judges' walkthrough** | [`JUDGING_GUIDE.md`](./JUDGING_GUIDE.md) |
43
+ | 💻 **GitHub source** | https://github.com/Charannoo/immunoorg |
44
+
45
+ **Before you submit:** publish a Hugging Face **post** or **YouTube** link (see [`PUBLISH_HACKATHON.md`](./PUBLISH_HACKATHON.md)), replace the two placeholder rows above with real URLs, run `python scripts/verify_hackathon_submission.py`, then push GitHub + Space.
46
+
47
+ **Windows + TRL:** if `import trl` fails with `UnicodeDecodeError`, run with UTF-8:
48
+ `set PYTHONUTF8=1` (cmd) or `$env:PYTHONUTF8=1` (PowerShell).
49
+
50
+ ---
51
+
52
+ ## TL;DR
53
+
54
+ Two graphs run in parallel inside one episode:
55
+
56
+ 1. **A technical network** 7-23 nodes (web servers, DBs, CI/CD, DNS) with
57
+ real vulnerability scores.
58
+ 2. **An organizational graph** departments with approval chains, trust
59
+ scores, and political deadlocks.
60
+
61
+ The agent has 28 actions across 3 categories (tactical / strategic /
62
+ diagnostic) and must fix both layers simultaneously, against an adversary
63
+ that adapts to its policy, under conflicting board directives, with a
64
+ **5-track composable reward** that no single signal can hack.
65
+
66
+ Read [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) for the formal
67
+ Round 2 definition (problem / env / capabilities / tasks / reward /
68
+ post-training).
69
+
70
+ ---
71
+
72
+ ## Evidence (committed PNGs judges scan these in seconds)
73
+
74
+ All charts are produced by `python generate_evidence.py` and
75
+ `python scripts/generate_training_evidence.py` and committed to the repo.
76
+
77
+ ![Random vs Heuristic policies across difficulty levels 1-4](./evidence_policy_comparison.png)
78
+ *Random vs Heuristic across all 4 difficulty levels — Heuristic policy
79
+ (gold standard for reward shaping) beats Random by 4-11 points,
80
+ proving the env is learnable and reward shaping has signal.*
81
+
82
+ ![Per-scenario reward lift Random vs Heuristic](./evidence_scenario_rewards.png)
83
+ *Per-family reward (10 episodes each, real env rollouts). The heuristic
84
+ policy beats the random baseline in **every** scenario family — that
85
+ lift is the signal the GRPO trainer climbs.*
86
+
87
+ ![Self-improvement across 6 generations of org mutation](./evidence_self_improvement.png)
88
+ *6 generations of self-improvement: reward-per-step trends up, time-to-
89
+ containment trends down, org efficiency rises as mutations accumulate.*
90
+
91
+ ![5-track composable reward breakdown](./evidence_5track_reward.png)
92
+ *Per-step contribution of the 5 reward tracks. No single track dominates
93
+ anti-reward-hacking property called out in the brief.*
94
+
95
+ ![Org graph: 3-day vs 4-hour approval](./evidence_org_before_after.png)
96
+ *The "self-healed enterprise" moment: org graph after the agent
97
+ restructures it via `ESTABLISH_DEVSECOPS` + `REDUCE_BUREAUCRACY`.
98
+ Approval latency drops from 72h to 4h.*
99
+
100
+ ![War Room debate + DevSecOps Mesh activity](./evidence_war_room_mesh.png)
101
+ *Multi-agent War Room consensus dynamics + 4-gate DevSecOps Mesh event counts.*
102
+
103
+ **GRPO training curve (`evidence_grpo_training.png`):** generate from a real TRL run, then:
104
+
105
+ ```bash
106
+ python scripts/plot_grpo_log_history.py immunoorg-defender/grpo_log_history.json
107
+ ```
108
+
109
+ Or run **Colab Step 4b**, which saves the figure directly. See [`training_logs/README.md`](./training_logs/README.md).
110
+
111
+ Additional eval PNGs from the full HPC pipeline may be uploaded to
112
+ [`hirann/immunoorg-grpo-defender`](https://huggingface.co/hirann/immunoorg-grpo-defender).
113
+
114
+ ---
115
+
116
+ ## Quick start
117
+
118
+ ### Click the live demo
119
+ https://hirann-immunoorg-v3.hf.space **▶ Launch interactive demo**
120
+
121
+ ### Run the OpenEnv environment locally
122
+
123
+ ```bash
124
+ git clone https://github.com/Charannoo/immunoorg
125
+ cd immunoorg
126
+ python -m venv .venv && . .venv/Scripts/activate # PowerShell on Windows
127
+ pip install -r requirements.txt
128
+ uvicorn server.main:app --reload --port 7860
129
+ ```
130
+
131
+ Then visit http://localhost:7860 (landing) or http://localhost:7860/demo (Gradio UI).
132
+
133
+ ### Train with GRPO (3 paths)
134
+
135
+ | Where | When to use | Time |
136
+ | --- | --- | --- |
137
+ | **HPC** (`scripts/hpc/run_all.sh`) | Best evidence: full datasets + SFT + GRPO + 100-ep eval, all chained via SLURM, auto-pushes to HF Hub | ~3-4 hr (1× A100) / ~1-1.5 hr (4× A100) |
138
+ | **Colab T4** (`ImmunoOrg_Training_Colab.ipynb`) | Free, browser-only, Qwen2.5-3B | ~30-45 min |
139
+ | **Local CPU smoke** (`python -m training.train_grpo --smoke-test`) | Sanity check only | very slow |
140
+
141
+ See [`scripts/hpc/HANDOFF.md`](./scripts/hpc/HANDOFF.md) for the friend-facing
142
+ HPC instructions.
143
+
144
+ ### Run the test suite
145
+
146
+ ```bash
147
+ pytest tests -q # 32 passed, 1 skipped (live API, only runs when uvicorn is up)
148
+ ```
149
+
150
+ ---
151
+
152
+ ## OpenEnv API surface
153
+
154
+ | Endpoint | Method | Purpose |
155
+ | --- | --- | --- |
156
+ | `/` | GET | Landing page (HTML) with link to /demo |
157
+ | `/demo` | (Gradio) | Interactive visual demo |
158
+ | `/health` | GET | Liveness + version |
159
+ | `/reset` | POST | Start a fresh episode (`{"difficulty": 1, "seed": 42}`) |
160
+ | `/step` | POST | Apply an action (`{"action": {...}}`) |
161
+ | `/state` | GET | Full server-side state (debug / dashboard) |
162
+ | `/directive` | POST | Inject a Board Directive mid-episode |
163
+ | `/trained_status` | GET | Is the trained LoRA loaded yet? |
164
+ | `/openenv.yaml` | GET | Serve the manifest |
165
+ | `/demo` | GET | Gradio: episode demo + **War Room** accordion (Theme #1 LLM debate) |
166
+ | `/api/war-room` | POST | Optional JSON API for the same debate backend |
167
+ | `/admin/training/start` | GET | Kick off GRPO training (token-gated) |
168
+ | `/admin/training/status` | GET | JSON status of the training job |
169
+ | `/admin/training/log` | GET | Tail the training log |
170
+
171
+ Action schema lives in [`openenv.yaml`](./openenv.yaml) and matches
172
+ `immunoorg.models.ImmunoAction`.
173
+
174
+ ---
175
+
176
+ ## How this maps to the judging criteria
177
+
178
+ | Criterion | Weight | Where to look |
179
+ | --- | ---: | --- |
180
+ | **Environment Innovation** | 40% | Socio-technical RL, 5-track reward, War Room, DevSecOps Mesh, 50-step Polymorphic Migration. See [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) §1. |
181
+ | **Storytelling** | 30% | Live demo on the Space + [`BLOG_POST.md`](./BLOG_POST.md) + 6 evidence PNGs above + [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md). |
182
+ | **Improvement in Rewards** | 20% | `evidence_*.png` files committed; HPC pipeline produces `evidence_grpo_training.png` + `evidence_eval_per_family.png` from a real Qwen2.5-7B GRPO run. |
183
+ | **Reward & Training Pipeline** | 10% | [`training/train_grpo.py`](./training/train_grpo.py) (3 verifiable reward fns), [`training/dataset_generator.py`](./training/dataset_generator.py) (1700+ scenarios), [`training/scenario_hooks.py`](./training/scenario_hooks.py) (5 elite families), [`scripts/hpc/`](./scripts/hpc/) (full SFT→GRPO→eval pipeline). |
184
+
185
+ ---
186
+
187
+ ## Anti-reward-hacking measures (judge guidance §7 + §21)
188
+
189
+ - 3 independent reward functions at the trainer + 5-track composable reward in the env.
190
+ - False-positive isolation penalty (burns half the uptime budget).
191
+ - Phase-gated transitions require *real work*, not step counts.
192
+ - Org friction — tactical spam denied; agent must do strategic work.
193
+ - War-Room hallucination flagging via shared FactStore.
194
+ - Per-step training penalties for ignoring board directives or retrying denied isolations.
195
+
196
+ Full details in [`PROBLEM_STATEMENT.md`](./PROBLEM_STATEMENT.md) §5c and
197
+ [`RESEARCH.md`](./RESEARCH.md).
198
+
199
+ ---
200
+
201
+ ## Status
202
+
203
+ - ✅ OpenEnv: `openenv-core>=0.2.3` (PyPI latest) in Space `requirements.txt` + `openenv.yaml` + HTTP `reset`/`step`/`state`; `import openenv.core` verified at runtime
204
+ - ✅ Hugging Face Space: https://huggingface.co/spaces/hirann/immunoorg-v3
205
+ - ✅ Gradio `/demo` includes **War Room** accordion (negotiation / coalition LLM UI)
206
+ - ✅ Colab + TRL GRPO + Unsloth; `training/train_grpo.py` exports `grpo_log_history.json` for plots
207
+ - ✅ Evidence PNGs (env rollouts + rewards) committed; add `evidence_grpo_training.png` from Colab or `scripts/plot_grpo_log_history.py`
208
+ - ✅ Writeups: [`BLOG_POST.md`](./BLOG_POST.md), [`VIDEO_SCRIPT.md`](./VIDEO_SCRIPT.md) — **publish** per [`PUBLISH_HACKATHON.md`](./PUBLISH_HACKATHON.md)
209
+ - ✅ `python scripts/verify_hackathon_submission.py` for a quick checklist
210
+
211
+ Built for the OpenEnv Hackathon (India 2026).