M4(文风): style-auditor 双轨(提取指纹/漂移第四审)+ jobs 长任务框架(zombie reaper) + 回炉 refine + GET /style read-back。 M5(生成+扩展): worldbuilder/character-gen(入库 continuity 409 gate + partition_writes 白名单 + schema→JSONB 形变); 网关多 provider 回退链/熔断/能力降级(Anthropic/Gemini 适配器);Skill registry + 表权限沙箱 + 规则; 前端 角色生成器/世界观/Codex/规则页/技能库/⌘K 命令面板。 K1(Kimi Code 订阅接入): OAuth device-flow(kimi-code)+ 静态 Console key(kimi-code-key)两路径; coding 端点 KimiCLI 伪造头(实测 UA allow-list 门禁,缺则 403)+ JSON 模式结构化(thinking ⊥ tool_choice)。 本地联调修复: CORS 中间件;assemble 注入 premise+「写第N章」指令(修空 prompt 400); GET /outline·/draft read-back + 大纲/工作台/审稿页重载;写页 client/server 常量边界 + notFound 健壮化; 字数 toLocaleString locale 水合;审稿页终稿从已存草稿 seed(修 accept 422)。 门禁: backend ruff/mypy(157)/alembic 无漂移/pytest 451 · frontend lint/tsc/vitest/build。 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
"use client";
|
||
|
||
import type { IngestConflicts } from "@/lib/generation/cards";
|
||
|
||
interface ConflictAdjudicationProps {
|
||
conflicts: IngestConflicts;
|
||
busy: boolean;
|
||
// 作者已查看冲突,确认带 acknowledge 重发入库。
|
||
onAcknowledge: () => void;
|
||
onCancel: () => void;
|
||
}
|
||
|
||
// 入库 409 CONFLICT_UNRESOLVED 裁决面板(UX §7 / 不变量#3):
|
||
// 展示 continuity 预检冲突 → 作者裁决(确认入库 = acknowledge 重发 / 取消回去改卡)。
|
||
export function ConflictAdjudication({
|
||
conflicts,
|
||
busy,
|
||
onAcknowledge,
|
||
onCancel,
|
||
}: ConflictAdjudicationProps) {
|
||
return (
|
||
<div
|
||
role="alertdialog"
|
||
aria-label="continuity 冲突裁决"
|
||
className="rounded border border-conflict bg-panel p-4"
|
||
>
|
||
<h3 className="mb-1 font-serif text-base text-conflict">
|
||
发现 {conflicts.conflictCount} 处一致性冲突
|
||
</h3>
|
||
<p className="mb-3 text-xs text-ink-soft">
|
||
预检发现生成角色与既有真相源冲突。确认无碍可强制入库,或取消后调整角色卡。
|
||
</p>
|
||
<ul className="mb-3 flex flex-col gap-2">
|
||
{conflicts.conflicts.map((c, i) => (
|
||
<li key={i} className="rounded border border-line bg-bg p-2 text-sm">
|
||
<div className="mb-1 flex items-center gap-2">
|
||
<span className="rounded bg-conflict/10 px-2 py-0.5 text-xs text-conflict">
|
||
{c.type}
|
||
</span>
|
||
{c.where ? (
|
||
<span className="text-xs text-ink-soft">{c.where}</span>
|
||
) : null}
|
||
</div>
|
||
{c.refs.length > 0 ? (
|
||
<p className="mb-1 text-xs text-ink-soft">
|
||
涉及:{c.refs.join("、")}
|
||
</p>
|
||
) : null}
|
||
{c.suggestion ? (
|
||
<p className="text-ink">建议:{c.suggestion}</p>
|
||
) : null}
|
||
</li>
|
||
))}
|
||
</ul>
|
||
<div className="flex gap-2">
|
||
<button
|
||
type="button"
|
||
onClick={onAcknowledge}
|
||
disabled={busy}
|
||
className="rounded bg-conflict px-3 py-1.5 text-sm text-white disabled:opacity-50"
|
||
>
|
||
已知悉,强制入库
|
||
</button>
|
||
<button
|
||
type="button"
|
||
onClick={onCancel}
|
||
disabled={busy}
|
||
className="rounded border border-line px-3 py-1.5 text-sm text-ink disabled:opacity-50"
|
||
>
|
||
取消,回去改卡
|
||
</button>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|