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
|
@@ -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
|
|
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,
|
package/src/board/workflows.d.ts
CHANGED
|
@@ -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?: {
|
|
15
|
+
needs?: { question: string; hint: string; tool: string }[];
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
export declare const WORKFLOWS: readonly Workflow[];
|
package/src/board/workflows.js
CHANGED
|
@@ -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
|
-
{
|
|
27
|
-
{
|
|
28
|
-
{
|
|
29
|
-
{
|
|
30
|
-
{
|
|
31
|
-
{
|
|
32
|
-
{
|
|
33
|
-
{
|
|
34
|
-
{
|
|
35
|
-
{
|
|
36
|
-
{
|
|
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
|
{
|