fix(done): create MR beads as ephemeral wisps

MR beads were being created as regular beads, showing up in `bd ready`
when they should be ephemeral wisps that get cleaned up after merge.

Added Ephemeral field to CreateOptions and set it when creating MR beads.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gastown/crew/joe
2026-01-12 03:08:53 -08:00
committed by beads/crew/emma
parent 716bab396f
commit b990094010
2 changed files with 5 additions and 0 deletions

View File

@@ -262,6 +262,7 @@ func runDone(cmd *cobra.Command, args []string) error {
Type: "merge-request",
Priority: priority,
Description: description,
Ephemeral: true,
})
if err != nil {
return fmt.Errorf("creating merge request bead: %w", err)