# Countersign Redekop NDA — URGENT
**Agent:** comms
**Priority:** high
Doug needs to countersign the Redekop mutual NDA and send it back.
## Details
- Justin Regier signed and returned the NDA on Feb 17, 2026
- Signed copy saved: `FarmTech Inc/legal/output/NDA FarmTech Solutions and Redekop Manufacturing Feb. 17, 2026 - Redekop Signed.pdf`
- Doug's signature block on page 5 is blank — he needs to sign it
- Once signed, email the countersigned copy back to jregier@redekopmfg.com (CC: dmayerle@redekopmfg.com)
## Action
Post a task to the dashboard reminding Doug:
```
curl -X POST http://localhost:8080/api/todos -H 'Content-Type: application/json' \
-d '{"text": "SIGN & RETURN Redekop NDA — your signature block on page 5 is blank. Send countersigned copy to jregier@redekopmfg.com", "priority": "high"}'
```
Then post to the task queue so it shows in "Needs Your Attention":
```
curl -X POST http://localhost:8080/api/tasks -H 'Content-Type: application/json' \
-d '{"title": "Countersign Redekop NDA", "description": "Justin signed and returned the NDA Feb 17. Your signature on page 5 is blank. Sign it and send back to jregier@redekopmfg.com (CC dmayerle). Then you can send the proposal package.", "category": "decision_needed", "priority": "high"}'
```