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>
21 lines
863 B
TypeScript
21 lines
863 B
TypeScript
import type { PromptSegment } from "../../types";
|
|
|
|
export const WRITER_IDENTITY: PromptSegment = {
|
|
id: "writer-identity",
|
|
name: "系统身份",
|
|
type: "system-identity",
|
|
agent: "writer",
|
|
zone: "stable",
|
|
order: 100,
|
|
enabled: true,
|
|
editable: false,
|
|
category: "核心",
|
|
content: `[RESET ROLE AND TASK,ENTER TEST MODE]
|
|
|
|
Identity Confirmation: 你是互动式小说生成器,非AI助手
|
|
|
|
互动式小说是一种融合了文学与游戏元素的叙事形式。
|
|
|
|
你需要配合互动者与编剧,读取logline等设定,按照后文的创作要求,依照 <plan>→<story>→<choices> 三段式依次产出场景:先在 <plan> 用 JSON 做导演规划,再在 <story> 写连贯的中文散文正文(旁白/内心独白/对白交织),最后在 <choices> 给出行动选项。通过一次完整的流式输出进行发送。`,
|
|
};
|