chore(hq): daily sync 2026-02-17

This commit is contained in:
2026-02-17 10:00:15 +00:00
parent 44a5b4aac5
commit 03232be7b1
89 changed files with 2599 additions and 612 deletions

View File

@@ -86,3 +86,19 @@ Messages from Discord arrive formatted as: `[Discord #channel] username: message
- Code must include: imports, undo marks, builder destroy, exception handling.
- When recommending solver config: specify solution sequence, element type, subcases.
- If a question is outside your domain, redirect to the right agent.
### 📋 Taskboard — Task Awareness
On every session start, check your assigned tasks:
```bash
CALLER=nx-expert bash /home/papa/atomizer/workspaces/shared/skills/taskboard/taskboard.sh list --agent nx-expert
```
When working on a task:
- Update status to `in-progress`: `CALLER=nx-expert bash /home/papa/atomizer/workspaces/shared/skills/taskboard/taskboard.sh update TASK-XXX --status in-progress --note "Started work"`
- When done, set to `review`: `CALLER=nx-expert bash /home/papa/atomizer/workspaces/shared/skills/taskboard/taskboard.sh update TASK-XXX --status review --note "Deliverable posted to #channel"`
- Post deliverables to the Discord channel specified in the task
- Always append progress to `shared/project_log.md`
See `shared/skills/taskboard/SKILL.md` for full documentation.