通用执行路径驱动全部生成器("加生成器=加一份声明"):
- @llm: ww_agents +7 输出 schema + 7 spec(book-title/blurb/name/golden-finger/
glossary/opening/fine-outline,只声明 tier)+ build_outline_chapter_context
- @backend: ww_skills GeneratorTool 描述符 + TOOLBOX(11) + get_tool;3 通用端点
GET /skills/toolbox · POST .../skills/{tool_key}/generate(预览不写库,仅记账) ·
POST .../ingest(复用 continuity 409 + partition_writes 白名单);纯 context 派发
- @frontend: 工具箱落地页 RSC + 声明驱动 GeneratorRunner + lib/toolbox 纯函数
+ LeftNav「工具箱」+ ⌘K nav-toolbox/action-gen-*;legacy 3 跳现页
- @qa: tests/test_t6_toolbox_e2e.py 5 用例真 pg + mock 网关零 token,无端点 bug
- P2 收尾: 限流→decisions.md 记延后(单用户原型);noopener/Committable 早已修
守不变量 #2(只声明 tier)/#3(预览不写库,入库经验收 gate)/#9(缓存前缀)。无 DB 迁移。
门禁绿: 后端 ruff/format/mypy 195/alembic 无漂移/pytest 583;前端 lint/tsc/vitest 279/build。
spec 回写 PRODUCT_SPEC §7 + ARCHITECTURE §7.2 端点表。
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
188 lines
6.2 KiB
Python
188 lines
6.2 KiB
Python
"""T6 创作工具箱 · 生成器注册表(`TOOLBOX`:把每个生成器声明成一条 `GeneratorTool`)。
|
||
|
||
「加一个生成器」= 在本表加一份声明(descriptor 在代码、不进 DB——保 Pydantic schema
|
||
为真类,避免迁移;DB `skills` 表与只读注册表/权限故事不变)。
|
||
|
||
两类形态:
|
||
- **legacy**(已上架的 世界观/人设/大纲):`spec=None`,带 `legacy_route` 指向现有更丰富的
|
||
入库/冲突页面,前端据 `legacy_route` 直接跳页,不回归既测代码(通用 generate/ingest
|
||
端点对它们返 404/422);
|
||
- **新工具**(8 个):带 `spec`(§5.1 声明)+ `output_schema`(结构化产物真类)+
|
||
`context_strategy`(注入策略)+ `input_fields`(声明式表单),走通用执行器;声明 `ingest`
|
||
者可经通用 ingest 端点入库(复用既有 continuity 预检 + 白名单 gate,不变量 #3)。
|
||
|
||
不变量 #2(只声明 tier,spec 已守)/ #3(AI 产出入库必经验收 gate,预览不写库)。
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
from ww_agents import (
|
||
blurb_spec,
|
||
book_title_spec,
|
||
brainstorm_spec,
|
||
fine_outline_spec,
|
||
glossary_spec,
|
||
golden_finger_spec,
|
||
name_spec,
|
||
opening_spec,
|
||
)
|
||
from ww_agents.schemas import (
|
||
BlurbResult,
|
||
DetailedOutlineResult,
|
||
GlossaryResult,
|
||
GoldenFingerResult,
|
||
IdeaListResult,
|
||
NameListResult,
|
||
OpeningResult,
|
||
TitleListResult,
|
||
)
|
||
|
||
from ww_skills.toolbox import GeneratorTool, IngestSpec, InputField
|
||
|
||
# 复用的常见输入字段(DRY:每个生成器都有「一句话需求」textarea)。
|
||
_BRIEF_FIELD = InputField(
|
||
name="brief",
|
||
label="一句话需求",
|
||
type="textarea",
|
||
required=False,
|
||
help="描述创作方向/约束;留空则按作品设定与题材自由发散",
|
||
)
|
||
|
||
|
||
def _chapter_no_field() -> InputField:
|
||
"""按章展开的生成器(开篇/细纲)所需的章号输入。"""
|
||
return InputField(
|
||
name="chapter_no",
|
||
label="章号",
|
||
type="number",
|
||
required=True,
|
||
default="1",
|
||
help="要生成/展开的章节号(读取该章大纲节拍)",
|
||
)
|
||
|
||
|
||
# 创作工具箱注册表:key → 描述符。legacy 3 + 新 8 = 11 条。
|
||
TOOLBOX: dict[str, GeneratorTool] = {
|
||
# ---- legacy(spec=None,前端走 legacy_route 跳现有页面)----
|
||
"worldbuilding": GeneratorTool(
|
||
key="worldbuilding",
|
||
title="世界观生成器",
|
||
subtitle="构建内部自洽的世界观与硬规则",
|
||
spec=None,
|
||
output_schema=None,
|
||
context_strategy="with_project",
|
||
input_fields=[],
|
||
legacy_route="/projects/{id}/codex?gen=world",
|
||
),
|
||
"character": GeneratorTool(
|
||
key="character",
|
||
title="人设生成器",
|
||
subtitle="群像防雷同的结构化角色卡",
|
||
spec=None,
|
||
output_schema=None,
|
||
context_strategy="with_world",
|
||
input_fields=[],
|
||
legacy_route="/projects/{id}/codex?gen=character",
|
||
),
|
||
"outline": GeneratorTool(
|
||
key="outline",
|
||
title="大纲生成器",
|
||
subtitle="分卷分章 + 伏笔回收窗口",
|
||
spec=None,
|
||
output_schema=None,
|
||
context_strategy="with_project",
|
||
input_fields=[],
|
||
legacy_route="/projects/{id}/outline",
|
||
),
|
||
# ---- 新工具(走通用执行器)----
|
||
"brainstorm": GeneratorTool(
|
||
key="brainstorm",
|
||
title="脑洞生成器",
|
||
subtitle="突破想象,脑洞大开",
|
||
spec=brainstorm_spec,
|
||
output_schema=IdeaListResult,
|
||
context_strategy="brief_only",
|
||
input_fields=[_BRIEF_FIELD],
|
||
),
|
||
"book-title": GeneratorTool(
|
||
key="book-title",
|
||
title="书名生成器",
|
||
subtitle="一秒生成抓人书名",
|
||
spec=book_title_spec,
|
||
output_schema=TitleListResult,
|
||
context_strategy="brief_only",
|
||
input_fields=[_BRIEF_FIELD],
|
||
),
|
||
"blurb": GeneratorTool(
|
||
key="blurb",
|
||
title="简介生成器",
|
||
subtitle="多版差异化书页文案",
|
||
spec=blurb_spec,
|
||
output_schema=BlurbResult,
|
||
context_strategy="with_project",
|
||
input_fields=[_BRIEF_FIELD],
|
||
),
|
||
"name": GeneratorTool(
|
||
key="name",
|
||
title="名字生成器",
|
||
subtitle="契合世界观的人/物/地命名",
|
||
spec=name_spec,
|
||
output_schema=NameListResult,
|
||
context_strategy="with_world",
|
||
input_fields=[
|
||
_BRIEF_FIELD,
|
||
InputField(
|
||
name="kind",
|
||
label="命名对象",
|
||
type="text",
|
||
required=False,
|
||
help="人物 / 势力 / 地点 / 功法 / 物品 等",
|
||
),
|
||
],
|
||
),
|
||
"golden-finger": GeneratorTool(
|
||
key="golden-finger",
|
||
title="金手指生成器",
|
||
subtitle="自洽机制 + 成长 + 限制代价",
|
||
spec=golden_finger_spec,
|
||
output_schema=GoldenFingerResult,
|
||
context_strategy="with_world",
|
||
input_fields=[_BRIEF_FIELD],
|
||
ingest=IngestSpec(table="world_entities"),
|
||
),
|
||
"glossary": GeneratorTool(
|
||
key="glossary",
|
||
title="词条生成器",
|
||
subtitle="带硬规则的世界观术语表",
|
||
spec=glossary_spec,
|
||
output_schema=GlossaryResult,
|
||
context_strategy="with_world",
|
||
input_fields=[_BRIEF_FIELD],
|
||
ingest=IngestSpec(table="world_entities"),
|
||
),
|
||
"opening": GeneratorTool(
|
||
key="opening",
|
||
title="黄金开篇生成器",
|
||
subtitle="多版高代入感开篇正文",
|
||
spec=opening_spec,
|
||
output_schema=OpeningResult,
|
||
context_strategy="with_outline_chapter",
|
||
input_fields=[_chapter_no_field(), _BRIEF_FIELD],
|
||
),
|
||
"fine-outline": GeneratorTool(
|
||
key="fine-outline",
|
||
title="细纲生成器",
|
||
subtitle="把章节粗节拍展开为场景序列",
|
||
spec=fine_outline_spec,
|
||
output_schema=DetailedOutlineResult,
|
||
context_strategy="with_outline_chapter",
|
||
input_fields=[_chapter_no_field(), _BRIEF_FIELD],
|
||
ingest=IngestSpec(table="outline"),
|
||
),
|
||
}
|
||
|
||
|
||
def get_tool(key: str) -> GeneratorTool | None:
|
||
"""按 key 取生成器描述符;未知 key → None(端点据此返 404)。"""
|
||
return TOOLBOX.get(key)
|