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>
40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import type { PromptSegment } from "./types";
|
|
import { WRITER_IDENTITY } from "./segments/writer/identity";
|
|
import { WRITER_COT } from "./segments/writer/cot";
|
|
import { WRITER_BIBLE } from "./segments/writer/bible";
|
|
import { WRITER_STYLE_BASE } from "./segments/writer/style-base";
|
|
import { WRITER_SENSES_ENHANCE } from "./segments/writer/senses-enhance";
|
|
import { WRITER_BAIMIAO_ADVANCED } from "./segments/writer/baimiao-advanced";
|
|
import { WRITER_ALIVE_FEEL } from "./segments/writer/alive-feel";
|
|
import { WRITER_NARRATIVE_RULES } from "./segments/writer/narrative-rules";
|
|
import { WRITER_DIALOGUE } from "./segments/writer/dialogue";
|
|
import { WRITER_GUARDRAILS } from "./segments/writer/guardrails";
|
|
import { WRITER_PACING } from "./segments/writer/pacing";
|
|
import { WRITER_FORMAT } from "./segments/writer/format";
|
|
|
|
export const WRITER_SEGMENTS: PromptSegment[] = [
|
|
WRITER_IDENTITY,
|
|
WRITER_COT,
|
|
WRITER_BIBLE,
|
|
WRITER_STYLE_BASE,
|
|
WRITER_SENSES_ENHANCE,
|
|
WRITER_BAIMIAO_ADVANCED,
|
|
WRITER_ALIVE_FEEL,
|
|
WRITER_NARRATIVE_RULES,
|
|
WRITER_DIALOGUE,
|
|
WRITER_GUARDRAILS,
|
|
WRITER_PACING,
|
|
WRITER_FORMAT,
|
|
];
|
|
|
|
if (process.env.NODE_ENV === "development") {
|
|
const ids = WRITER_SEGMENTS.map((s) => s.id);
|
|
const seen = new Set<string>();
|
|
for (const id of ids) {
|
|
if (seen.has(id)) {
|
|
throw new Error(`[PromptRegistry] Duplicate segment ID: "${id}"`);
|
|
}
|
|
seen.add(id);
|
|
}
|
|
}
|