diff --git a/apps/web/components/workbench/ChapterAssistant.tsx b/apps/web/components/workbench/ChapterAssistant.tsx index c8d2669..1935ad6 100644 --- a/apps/web/components/workbench/ChapterAssistant.tsx +++ b/apps/web/components/workbench/ChapterAssistant.tsx @@ -3,9 +3,13 @@ import Link from "next/link"; import { + isPinned, kindLabel, reasonLabel, + RECENT_N_MAX, + RECENT_N_MIN, type InjectionEntity, + type InjectionEntityRef, } from "@/lib/workbench/injection"; import { useInjection } from "@/lib/workbench/useInjection"; @@ -15,13 +19,10 @@ interface ChapterAssistantProps { } // 右栏「本章助手」(UX §6.3)。 -// 「本章注入(透明)」读 B0 端点,列出确定性选中的设定/角色 + 入选理由徽标—— -// 这是「看到的=写章用的」的信任牌(不变量 #6)。「四审」指向审稿页入口。 +// 「本章注入(透明)」读 B0 端点,列出确定性选中的设定/角色 + 入选理由徽标, +// 并让作者 📌置顶 / ✕排除 / 调近 N 章(可控版)——「看到的=写章用的」信任牌(不变量 #6)。 // 桌面 aside 包裹;移动端经 Workbench 抽屉复用 AssistantContent。 -export function ChapterAssistant({ - projectId, - chapterNo, -}: ChapterAssistantProps) { +export function ChapterAssistant({ projectId, chapterNo }: ChapterAssistantProps) { return (