mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-06 14:00:09 +02:00
Add a per-parent toggle (default on) that controls whether completing a sub-issue notifies and wakes the parent's assignee. When off, the whole child-done notification is skipped — no system comment, no assignee wake — so a parent can opt its sub-issue chain into fully manual advancement. Backend: - migration 132: issue.child_done_notify BOOL NOT NULL DEFAULT true - gate notifyParentOfChildDone on the flag (early return skips comment + dispatch, not just the visible comment) - expose the field in the issue API response and accept it in UpdateIssue Frontend: - toggle in the parent's Sub-issues header, shown only for agent/squad- assigned parents (a human/unassigned parent is never woken anyway) - Issue type + zod schema (defaults true on missing/null for older backends) - i18n en/zh-Hans/ja/ko Docs: multica-working-on-issues SKILL.md + source-map note the opt-out. Tests: child-done skip-when-off + API round-trip; schema default/round-trip. Co-authored-by: multica-agent <github@multica.ai>