feat(FN-4153): complete Steps 7-8 — verify gates and document toggle

Fusion-Task-Id: FN-4153
Fusion-Task-Lineage: 6ec09467-c7a0-4a9d-9a09-16d5ef6f7a86
This commit is contained in:
Fusion
2026-05-13 01:38:35 -07:00
committed by gsxdsm
parent 29f68d2b73
commit 08b59c5e02
4 changed files with 6 additions and 3 deletions

View File

@@ -4,7 +4,6 @@ import { selectPermanentAgentForTask } from "../agent-assignment.js";
function makeAgent(overrides: Partial<Agent> & Pick<Agent, "id">): Agent {
return {
id: overrides.id,
name: overrides.name ?? overrides.id,
role: overrides.role ?? "executor",
state: overrides.state ?? "idle",
@@ -17,7 +16,6 @@ function makeAgent(overrides: Partial<Agent> & Pick<Agent, "id">): Agent {
function makeTask(overrides: Partial<Task> & Pick<Task, "id">): Task {
return {
id: overrides.id,
title: overrides.title ?? overrides.id,
description: overrides.description ?? "",
column: overrides.column ?? "todo",