plotcoder-board 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plotcoder-board",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -1564,7 +1564,7 @@ server.registerTool(
1564
1564
  WORKFLOWS.map(
1565
1565
  (workflow) =>
1566
1566
  `- ${workflow.id} — ${workflow.name}\n ask: "${workflow.ask}"\n tools: ${workflow.tools.join(", ")}\n keep: ${workflow.then}${
1567
- workflow.needs ? `\n the treatment should say (ask the writer for what it leaves open; invent none of it):\n${workflow.needs.map((need) => ` - ${need.ask} → ${need.tool}`).join("\n")}` : ""
1567
+ workflow.needs ? `\n the treatment should answer (ask the writer for what it leaves open; invent none of it):\n${workflow.needs.map((need) => ` - ${need.question} ${need.hint} → ${need.tool}`).join("\n")}` : ""
1568
1568
  }`,
1569
1569
  ).join("\n"),
1570
1570
  WORKFLOWS,
@@ -12,7 +12,7 @@ export type Workflow = {
12
12
  /** The rule the agent keeps while doing it. */
13
13
  then: string;
14
14
  /** What the writer's material should say for the workflow to need no questions back, and the tool each answer lands in (R49). */
15
- needs?: { ask: string; tool: string }[];
15
+ needs?: { question: string; hint: string; tool: string }[];
16
16
  };
17
17
 
18
18
  export declare const WORKFLOWS: readonly Workflow[];
@@ -23,17 +23,17 @@ export const WORKFLOWS = [
23
23
  // who answers them in the treatment gets a wall with no questions back;
24
24
  // an agent asks the ones the treatment leaves open, and invents none.
25
25
  needs: [
26
- { ask: "How long is it: an hour, a half-hour, a feature, or a page count?", tool: "set_target" },
27
- { ask: "The central question in one sentence, and the series premise above it if there is one.", tool: "set_logline, set_premise" },
28
- { ask: "Which scenes are the turns the beats or 'propose them and I will strike'.", tool: "set_rank" },
29
- { ask: "The acts, if it has them, and where each break falls.", tool: "create_group" },
30
- { ask: "Where each scene happens, in the writer's words; a scene that moves through one location is one place.", tool: "set_location" },
31
- { ask: "When a scene happens, where it matters that night, the fourth of October.", tool: "the headline, for now" },
32
- { ask: "Who is in each scene, with the name to use a full name, or the role name for someone unnamed — and who is only spoken of, which goes in notes.", tool: "add_character, cast, update_character" },
33
- { ask: "What is planted, and where it pays off including 'later in the series', so the fold is deliberate.", tool: "set_plant, create_arrow" },
34
- { ask: "Any scene already known to run long or short; a duration in the story is not a length.", tool: "set_length" },
35
- { ask: "What the project and the board are called.", tool: "rename_project, rename_board" },
36
- { ask: "What not to invent: looks and voices are the writer's until they say.", tool: "update_character, later" },
26
+ { question: "How long is it?", hint: "An hour, a half-hour, a feature or a page count, if you have one.", tool: "set_target" },
27
+ { question: "What is the central question, in one sentence?", hint: "And if this is one episode of something, what is the series about?", tool: "set_logline, set_premise" },
28
+ { question: "Which scenes are the turns?", hint: "Name them, or say \"propose them and I will strike\".", tool: "set_rank" },
29
+ { question: "Does it have acts?", hint: "If so, where does each break fall?", tool: "create_group" },
30
+ { question: "Where does each scene happen?", hint: "In your own words. A scene that moves through one location is still one place.", tool: "set_location" },
31
+ { question: "When does a scene happen, where that matters?", hint: "That night; the fourth of October. It goes in the headline for now.", tool: "the headline" },
32
+ { question: "Who is in each scene, and what do we call them?", hint: "A full name, or a role for someone unnamed — the man in 42. And who is only spoken of, never in a scene? They go in someone's notes, not the cast.", tool: "add_character, cast, update_character" },
33
+ { question: "What is planted, and where does it pay off?", hint: "Say \"later in the series\" when it pays off outside this episode, so the fold is deliberate.", tool: "set_plant, create_arrow" },
34
+ { question: "Which scenes do you already know run long or short?", hint: "A day in the story is not a page count; leave the rest unsized.", tool: "set_length" },
35
+ { question: "What are the project and the board called?", hint: "The series, and this episode.", tool: "rename_project, rename_board" },
36
+ { question: "What must not be invented?", hint: "Looks and voices are yours until you say; so is anything the treatment does not state.", tool: "update_character, later" },
37
37
  ],
38
38
  },
39
39
  {