plotcoder-board 0.1.9 → 0.1.10
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 say (ask the writer for what it leaves open; invent none of it):\n${workflow.needs.map((need) => ` - ${need.ask} → ${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?: { ask: 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
|
+
{ 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" },
|
|
37
|
+
],
|
|
20
38
|
},
|
|
21
39
|
{
|
|
22
40
|
id: "read-and-raise",
|