@lovelybunch/core 1.0.76-alpha.1 → 1.0.76-alpha.3

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.
@@ -1,9 +1,9 @@
1
1
  export const SCHEMA_REFERENCE_INSTRUCTION = 'Consult the schema references in .nut/.schema (task.schema.md, project.schema.md, architecture.schema.md, skill.schema.md, knowledge.schema.md) so any updates you make follow the documented structure and include complete arrays for plan steps, dependencies, tags, labels, and comments.';
2
2
  export const PROJECT_REFERENCE_INSTRUCTION = 'Use .nut/context/project.md and .nut/context/architecture.md for reference.';
3
3
  /**
4
- * Get instructions for change task (cp-*) workflows
4
+ * Get instructions for change task (task-*) workflows
5
5
  */
6
- export function getChangeTaskInstructions(proposalId, skillPaths, customInstruction, includeDefaultInstructions = true) {
6
+ export function getChangeTaskInstructions(taskId, skillPaths, customInstruction, includeDefaultInstructions = true) {
7
7
  const sections = [];
8
8
  // Add default instructions only if requested
9
9
  if (includeDefaultInstructions) {
@@ -12,43 +12,58 @@ export function getChangeTaskInstructions(proposalId, skillPaths, customInstruct
12
12
  `## Task`,
13
13
  ``,
14
14
  `- Review and begin working on the following task:`,
15
- ` .nut/tasks/${proposalId}.md`,
16
- `- Retrieve your firstName, lastName, and email address from: .nut/config.json and use this identity to address yourself in any task updates, comments, git commits, etc.`,
15
+ ` .nut/tasks/${taskId}.md`,
16
+ `- Retrieve your firstName, lastName, and email address from: .nut/config.json and use this identity for task updates, comments, git commits, etc.`,
17
17
  ].join('\n'));
18
18
  // Task Lifecycle section
19
19
  sections.push([
20
20
  `## Task Lifecycle`,
21
21
  ``,
22
- `- Before beginning any work: nut task update ${proposalId} --status active`,
23
- `- Add appropriate steps with: nut task step ${proposalId} "Step description" --author "firstName lastName"`,
22
+ `1. Before beginning any work, set the task to active:`,
23
+ ` nut task update ${taskId} --status active`,
24
24
  ``,
25
- `- If you need human clarification or input: nut task update ${proposalId} --status blocked. The clarification can be communicated as follows: nut task comment ${proposalId} "Comments here" --author "firstName lastName". At this point please stop work.`,
25
+ `2. Work through the existing plan steps, updating each as you go:`,
26
+ ` nut task step-update ${taskId} <stepId> --status active (when starting a step)`,
27
+ ` nut task step-update ${taskId} <stepId> --status done (when complete)`,
28
+ ` nut task step-update ${taskId} <stepId> --status failed --error "reason"`,
29
+ ` nut task step-update ${taskId} <stepId> --status skipped (if not applicable)`,
30
+ ` If no steps exist yet, add them: nut task step ${taskId} "Step description"`,
26
31
  ``,
27
- `- When implementation is complete and ready for approval: nut task update ${proposalId} --status review`,
28
- `- Only mark the task complete once approval criteria are satisfied: nut task update ${proposalId} --status done`,
32
+ `3. If you need human clarification or input, block the task and stop work:`,
33
+ ` nut task update ${taskId} --status blocked`,
34
+ ` nut task comment ${taskId} "Describe what you need" --author "firstName lastName"`,
35
+ ``,
36
+ `4. When implementation is complete and ready for review:`,
37
+ ` nut task update ${taskId} --status review`,
38
+ ` nut task comment ${taskId} "Summary of what was done" --author "firstName lastName"`,
39
+ ``,
40
+ `### Handling Revision Requests`,
41
+ ``,
42
+ `If the task status is 'revision', the user has reviewed your work and left feedback.`,
43
+ `Read the most recent comment(s) carefully, address the feedback, then set back to review:`,
44
+ ` nut task update ${taskId} --status review`,
29
45
  ].join('\n'));
30
46
  // Abilities section
31
47
  sections.push([
32
48
  `## Abilities`,
33
49
  ``,
34
- `- The following abilities are at your disposal and should be factored into the plan where appropriate (each command has its own --help):`,
35
- ` - Work with knowledge documents (used for the output of any research-centric tasks):`,
36
- ` - nut knowledge create "Quick Note" --content "# Quick Note\\n\\nSome content here"`,
37
- ` - nut knowledge list`,
38
- ` - nut knowledge get example-filename.md`,
39
- ` - Creating media such as images, audio, or video:`,
40
- ` - nut resource`,
41
- ` - Using available skills (specialized, reusable, and portable modules). There is also an official registry you can pull from:`,
42
- ` - nut skill list`,
43
- ` - nut skill registry list`,
44
- `- Similarly, the following are available: git, gh, node, python`,
50
+ `Beyond task management, the following are at your disposal and should be factored into the plan where appropriate (each command has its own --help):`,
51
+ `- Knowledge documents (for research outputs, notes, and reference material):`,
52
+ ` - nut knowledge create "Title" --content "# Title\\n\\nContent here"`,
53
+ ` - nut knowledge list / get / update`,
54
+ `- Resource library (images, audio, video, or existing files):`,
55
+ ` - nut resource ls / add ./file.png`,
56
+ ` - nut resource image "description" --save`,
57
+ ` - nut resource audio "description" --save`,
58
+ `- Skills (specialized, reusable modules with an official registry):`,
59
+ ` - nut skill list / nut skill registry list`,
60
+ `- Also available: git, gh, node, python`,
45
61
  ].join('\n'));
46
62
  // Operational Rules section
47
63
  sections.push([
48
64
  `## Operational Rules`,
49
65
  ``,
50
- `- DO use the nut CLI to update task status as progress changes`,
51
- ` (nut --help or nut task --help for details)`,
66
+ `- DO use the nut CLI to update task and step status as progress changes`,
52
67
  `- DO NOT edit files outside the scope of the approved task (unless instructed by the Additional Instructions below)`,
53
68
  ].join('\n'));
54
69
  }
@@ -72,7 +87,7 @@ export function getChangeTaskInstructions(proposalId, skillPaths, customInstruct
72
87
  return [sections.join('\n\n')];
73
88
  }
74
89
  /**
75
- * Get instructions for reviewing / preparing a change task (cp-*) before implementation.
90
+ * Get instructions for reviewing / preparing a change task (task-*) before implementation.
76
91
  * Assesses readiness without starting any actual work.
77
92
  */
78
93
  export function getPrepareChangeTaskInstructions(taskId, skillPaths, customInstruction) {
@@ -81,43 +96,60 @@ export function getPrepareChangeTaskInstructions(taskId, skillPaths, customInstr
81
96
  sections.push([
82
97
  `## Your Task`,
83
98
  ``,
84
- `- Review the following task (including all the existing comments and implementation steps) to ensure you have enough information and resources (skills, tools, access, etc) to successfully complete it: .nut/tasks/${taskId}.md`,
85
- `- Note: DO NOT start any work at this stage, this is only a preparatory assessment phase.`,
86
- `- Retrieve your firstName, lastName, and email address from: .nut/config.json and use this identity to address yourself in any task updates, comments, etc.`,
87
- `- Add a readiness score between 0 and 100 where 100 is total confidence that you could complete the task without any mistakes or further user input: nut task update ${taskId} --readiness <score>`,
88
- `- Add a comment that communicates your readiness and any other relevant information: nut task comment ${taskId} "Comment here" --author "firstName lastName".`,
89
- `- If your readiness score is high enough, add appropriate implementation steps with: nut task step ${taskId} "Step description"`,
90
- `- Of particular importance is whether it would make sense to decompose this into separate tasks, although DO NOT do this without user confirmation first.`,
91
- `- Finally, update the task status to either 'ready' or 'blocked' based on your assessment: nut task update ${taskId} --status [ready|blocked]`,
99
+ `Review the following task to assess whether it is ready for implementation.`,
100
+ `This is a preparatory assessment phase only -- DO NOT start any implementation work.`,
101
+ ``,
102
+ `- Read the task (including all existing comments and plan steps): .nut/tasks/${taskId}.md`,
103
+ `- Retrieve your firstName, lastName, and email address from: .nut/config.json and use this identity for task updates, comments, etc.`,
104
+ ``,
105
+ `### Assessment Steps`,
106
+ ``,
107
+ `1. Set a readiness score (0-100, where 100 = total confidence you could complete the task without mistakes or further input):`,
108
+ ` nut task update ${taskId} --readiness <score>`,
109
+ ``,
110
+ `2. If readiness is high enough, add implementation plan steps:`,
111
+ ` nut task step ${taskId} "Step description"`,
112
+ ``,
113
+ `3. Evaluate whether the task should be decomposed into smaller tasks.`,
114
+ ` If decomposition is recommended, note this in your comment but DO NOT decompose without user confirmation.`,
115
+ ``,
116
+ `4. Add a comment summarizing your assessment (readiness rationale, risks, decomposition recommendation if any):`,
117
+ ` nut task comment ${taskId} "Assessment summary" --author "firstName lastName"`,
118
+ ``,
119
+ `5. Set the task status based on your assessment:`,
120
+ ` nut task update ${taskId} --status ready (if ready for implementation)`,
121
+ ` nut task update ${taskId} --status blocked (if missing information or resources)`,
122
+ ``,
123
+ `### Handling Revision Requests`,
124
+ ``,
125
+ `If the task status is 'revision', the user has reviewed your assessment and left feedback.`,
126
+ `Read the most recent comment(s) carefully, revise your plan steps and readiness accordingly,`,
127
+ `then set status back to 'ready' or 'blocked' as appropriate.`,
92
128
  ].join('\n'));
93
129
  // Abilities section
94
130
  sections.push([
95
131
  `## Abilities`,
96
132
  ``,
97
- `- The following abilities are at your disposal and should be factored into the plan where appropriate (each command has its own --help):`,
98
- ` - Work with knowledge documents (used for the output of any research-centric tasks):`,
99
- ` - nut knowledge create "Quick Note" --content "# Quick Note\\n\\nSome content here"`,
100
- ` - nut knowledge list`,
101
- ` - nut knowledge get example-filename.md`,
102
- ` - nut knowledge update example-filename.md --content "# Quick Note\\n\\nSome content here"`,
103
- ` - Creating media such as images, audio, or video or adding existing files to the resource library:`,
104
- ` - nut resource ls`,
105
- ` - nut resource add ./screenshot.png`,
106
- ` - nut resource image "A serene morning in Tokyo" --save`,
107
- ` - nut resource audio "Welcome to the future" --save`,
108
- ` - Using available skills (specialized, reusable, and portable modules). There is also an official registry you can pull from:`,
109
- ` - nut skill list`,
110
- ` - nut skill registry list`,
111
- `- Similarly, the following are available: git, gh, node, python`,
133
+ `Beyond task management, the following are at your disposal and should be factored into the plan where appropriate (each command has its own --help):`,
134
+ `- Knowledge documents (for research outputs, notes, and reference material):`,
135
+ ` - nut knowledge create "Title" --content "# Title\\n\\nContent here"`,
136
+ ` - nut knowledge list / get / update`,
137
+ `- Resource library (images, audio, video, or existing files):`,
138
+ ` - nut resource ls / add ./file.png`,
139
+ ` - nut resource image "description" --save`,
140
+ ` - nut resource audio "description" --save`,
141
+ `- Skills (specialized, reusable modules with an official registry):`,
142
+ ` - nut skill list / nut skill registry list`,
143
+ `- Also available: git, gh, node, python`,
112
144
  ].join('\n'));
113
145
  // Operational Rules section
114
146
  sections.push([
115
147
  `## Operational Rules`,
116
148
  ``,
149
+ `- DO NOT start any implementation work during this phase`,
117
150
  `- DO NOT use 'npx' when running the nut CLI`,
118
- `- DO use the nut CLI to update task status as progress changes`,
119
- ` (nut --help or nut task --help for details)`,
120
- `- DO NOT edit files outside the scope of the approved task (unless instructed by the Additional Instructions below)`,
151
+ `- DO use the nut CLI to update task status and readiness`,
152
+ `- DO NOT edit files outside the scope of the task (unless instructed by the Additional Instructions below)`,
121
153
  ].join('\n'));
122
154
  // Skills section (conditional)
123
155
  if (skillPaths.length > 0) {
@@ -1 +1 @@
1
- {"version":3,"file":"skill-instructions.js","sourceRoot":"","sources":["../src/skill-instructions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"skill-instructions.js","sourceRoot":"","sources":["../src/skill-instructions.ts"],"names":[],"mappings":"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"}