0e4c2ebef4
Squash-merge the cloudflare-migration branch (7 commits by Kai ki) into staging with conflict resolution, feature integration, and bug fixes. Engine: - Paradigm D: single-stream Writer replacing dual-phase Plan/Beats - Delete Architect agent; story bible generated via Writer <plan> tag - Modular prompt architecture (segments/registry/builder) - StreamRouter for tagged stream splitting (<plan>/<story>/<choices>) Infrastructure: - Cloudflare Workers deployment (wrangler.jsonc, OpenNext adapter) - D1 database schema + Drizzle ORM (scaffolded, not yet active) - R2 storage helpers (scaffolded, not yet active) - Story persistence API routes + client-side persistence BYOK (Bring Your Own Key): - /api/llm/user-proxy with SSRF-protected LLM proxy (+ requireUser auth) - CORS-aware fetch in ai-client: auto-detect CORS failure, fallback to server proxy transparently via OpenAI SDK custom fetch - BYO config support added to classify-freeform and vision routes - SettingsModal CORS privacy notice (keys never logged/stored) SSE streaming: - engineClient.ts: fetchSSE helper for progressive scene events - startSession/requestScene accept optional emit callback - Fix SSE error event field name (error → message) in scene/start routes i18n integration: - Wire buildLanguageDirective into paradigm D's prompt builder - Update corsNotice i18n keys (zh-CN/en/ja) with CORS proxy privacy text - Preserve Session.language + LanguageSwitcher from i18n commit Co-authored-by: Kai ki <155355644+zbf1009@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
import type { PromptSegment } from "../../types";
|
|
|
|
export const WRITER_PACING: PromptSegment = {
|
|
id: "writer-pacing",
|
|
name: "节奏控制",
|
|
type: "narrative-guideline",
|
|
agent: "writer",
|
|
zone: "stable",
|
|
order: 150,
|
|
enabled: true,
|
|
editable: true,
|
|
category: "节奏",
|
|
content: `═══════════════════════════════════════════════════════════════════
|
|
节奏控制
|
|
═══════════════════════════════════════════════════════════════════
|
|
# 创作范围:
|
|
- 剧情基于最新互动内容
|
|
- 不得擅自引入尚未提示的新角色
|
|
|
|
# 情节设计:
|
|
- 循序渐进,不得推进过快
|
|
- 戏剧张力轻微,贴合世界观和故事逻辑
|
|
- 转场必须有过程,不得突兀转场
|
|
|
|
# 篇幅控制:
|
|
- 每场景正文约 1500-2500 字(对白 + 旁白总计)
|
|
- 5-8 个 beat 为宜——太少无法展开情节,太多则拖沓
|
|
- 对白、旁白、内心独白交替穿插,不要连续堆叠多个纯对白 beat
|
|
- 旁白和内心独白可独立承载叙事推进与情绪铺垫,不是台词的附庸`,
|
|
};
|