feat(FN-3060): add agent task auto-summarization and droid CLI path reconci

This merge adds droid CLI path reconciliation as a new pi extension, wires agent task auto-summarization for the agent tools layer, makes the UsageIndicator component resizable with improved styling, and updates related tests and documentation. The core changes include a new `reconcile-droid-cli-pat

Fusion-Task-Id: FN-3060
This commit is contained in:
Fusion
2026-05-01 12:40:25 -07:00
committed by gsxdsm
parent 72ed14326b
commit a6ae7b4e04
11 changed files with 94 additions and 25 deletions

View File

@@ -1534,6 +1534,8 @@ describe("taskCreate tool model inheritance", () => {
expect(store.createTask).toHaveBeenCalledWith(expect.objectContaining({
title: "Child Task",
description: "Child task description",
}), expect.objectContaining({
settings: { autoSummarizeTitles: false },
}));
});
@@ -1632,6 +1634,7 @@ describe("taskCreate tool model inheritance", () => {
// The second createTask call should have the resolved sibling id preserved.
expect(createTaskMock).toHaveBeenLastCalledWith(
expect.objectContaining({ dependencies: ["FN-701"] }),
expect.objectContaining({ settings: { autoSummarizeTitles: false } }),
);
expect(createdSubtasksRef.current).toEqual(["FN-701", "FN-702"]);
});