plotcoder-board 0.1.9 → 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
|
@@ -1563,7 +1563,9 @@ server.registerTool(
|
|
|
1563
1563
|
"The workflows — the app's own, the same on every project; no project was read.\n" +
|
|
1564
1564
|
WORKFLOWS.map(
|
|
1565
1565
|
(workflow) =>
|
|
1566
|
-
`- ${workflow.id} — ${workflow.name}\n ask: "${workflow.ask}"\n tools: ${workflow.tools.join(", ")}\n keep: ${workflow.then}
|
|
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 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
|
+
}`,
|
|
1567
1569
|
).join("\n"),
|
|
1568
1570
|
WORKFLOWS,
|
|
1569
1571
|
),
|
package/src/board/workflows.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export type Workflow = {
|
|
|
11
11
|
tools: string[];
|
|
12
12
|
/** The rule the agent keeps while doing it. */
|
|
13
13
|
then: string;
|
|
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?: { question: string; hint: string; tool: string }[];
|
|
14
16
|
};
|
|
15
17
|
|
|
16
18
|
export declare const WORKFLOWS: readonly Workflow[];
|
package/src/board/workflows.js
CHANGED
|
@@ -17,6 +17,24 @@ export const WORKFLOWS = [
|
|
|
17
17
|
ask: "Here is a treatment. Break it into a wall: one card per scene with a headline and what changes, the cast on each card, the places, and the major turns marked as beats.",
|
|
18
18
|
tools: ["list_words", "read_wall", "list_reminders", "new_project", "new_board", "rename_project", "set_target", "create_note", "list_board", "add_character", "cast", "update_character", "set_location", "set_rank", "set_length", "set_plant", "create_arrow", "create_group", "organize"],
|
|
19
19
|
then: "Start where the wall will live: on the account, new_project names it; in a folder, new_board for the writer's wall, then rename_project. Read the wall (read_wall) and say what it asks. A treatment is cards, one create_note each, with characters, location, rank and plants on the call; import_fountain is the door for pages, not a treatment — a scene's text measures its card.",
|
|
20
|
+
// What a treatment should say (R49): eleven blind runs asked the writer
|
|
21
|
+
// the same questions at the end of every build. Each is a fact the wall
|
|
22
|
+
// needs and the treatment could carry, and the tool it lands in. A writer
|
|
23
|
+
// who answers them in the treatment gets a wall with no questions back;
|
|
24
|
+
// an agent asks the ones the treatment leaves open, and invents none.
|
|
25
|
+
needs: [
|
|
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
|
+
],
|
|
20
38
|
},
|
|
21
39
|
{
|
|
22
40
|
id: "read-and-raise",
|