From 9a91c1873901e464a0ce14de2af6d3525c4cd71a Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Fri, 20 Feb 2026 20:55:46 +0100 Subject: [PATCH] data(schema): raise monologue line maxLength from 160 to 256 chars MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hard cap at 256 with soft guidance to aim for ≤160 to avoid line wrap. Allows longer lines for urgent monologue and confrontation beats that need more space without schema validation failures. Co-Authored-By: Claude Opus 4.6 --- content/_schema/monologue-pool.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_schema/monologue-pool.schema.json b/content/_schema/monologue-pool.schema.json index dc74b263c..bf231dd0b 100644 --- a/content/_schema/monologue-pool.schema.json +++ b/content/_schema/monologue-pool.schema.json @@ -37,8 +37,8 @@ "text": { "type": "string", "minLength": 1, - "maxLength": 160, - "description": "Line text — 160 char max to fit monologue display without scrolling." + "maxLength": 256, + "description": "Line text — 256 char hard cap, aim for ≤160 to avoid line wrap" }, "role": { "type": "string",