@lovelybunch/core 1.0.76-alpha.1 → 1.0.76-alpha.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/dist/change-proposal.d.ts +0 -3
- package/dist/change-proposal.d.ts.map +1 -1
- package/dist/change-proposal.js +3 -5
- package/dist/change-proposal.js.map +1 -1
- package/dist/context.d.ts +26 -26
- package/dist/context.d.ts.map +1 -1
- package/dist/context.js +4 -1
- package/dist/context.js.map +1 -1
- package/dist/events.d.ts +4 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/knowledge.d.ts +94 -88
- package/dist/knowledge.d.ts.map +1 -1
- package/dist/knowledge.js +37 -9
- package/dist/knowledge.js.map +1 -1
- package/dist/logging/kinds.d.ts +18 -0
- package/dist/logging/kinds.d.ts.map +1 -1
- package/dist/logging/kinds.js +15 -0
- package/dist/logging/kinds.js.map +1 -1
- package/dist/mail.d.ts +22 -22
- package/dist/pipeline-builders.d.ts +49 -0
- package/dist/pipeline-builders.d.ts.map +1 -0
- package/dist/pipeline-builders.js +208 -0
- package/dist/pipeline-builders.js.map +1 -0
- package/dist/pipelines.d.ts +4 -0
- package/dist/pipelines.d.ts.map +1 -0
- package/dist/pipelines.js +3 -0
- package/dist/pipelines.js.map +1 -0
- package/dist/skill-instructions.d.ts +3 -3
- package/dist/skill-instructions.d.ts.map +1 -1
- package/dist/skill-instructions.js +81 -49
- package/dist/skill-instructions.js.map +1 -1
- package/package.json +6 -2
- package/dist/agent-instructions.d.ts +0 -17
- package/dist/agent-instructions.d.ts.map +0 -1
- package/dist/agent-instructions.js +0 -160
- package/dist/agent-instructions.js.map +0 -1
- package/dist/proposals.d.ts +0 -765
- package/dist/proposals.d.ts.map +0 -1
- package/dist/proposals.js +0 -483
- package/dist/proposals.js.map +0 -1
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import { getChangeTaskInstructions, getPrepareChangeTaskInstructions, getSkillInstructions, } from './skill-instructions.js';
|
|
2
|
+
/**
|
|
3
|
+
* Sanitize instruction text for safe embedding in shell commands.
|
|
4
|
+
* - Backticks -> single quotes (prevents shell command substitution)
|
|
5
|
+
* - Curly/smart quotes -> straight equivalents
|
|
6
|
+
*/
|
|
7
|
+
export function sanitizeInstruction(text) {
|
|
8
|
+
return text
|
|
9
|
+
.replace(/`/g, "'")
|
|
10
|
+
.replace(/[\u2018\u2019]/g, "'")
|
|
11
|
+
.replace(/[\u201C\u201D]/g, '"');
|
|
12
|
+
}
|
|
13
|
+
function getInstructionParts(cfg) {
|
|
14
|
+
const skillPaths = cfg.selectedSkillIds.map((id) => `.nut/skills/${id}/SKILL.md`);
|
|
15
|
+
const safeCustom = cfg.customInstruction ? sanitizeInstruction(cfg.customInstruction) : cfg.customInstruction;
|
|
16
|
+
const parts = cfg.contextType === 'change-task'
|
|
17
|
+
? getChangeTaskInstructions(cfg.taskId, skillPaths, safeCustom, cfg.includeDefaultInstructions ?? true)
|
|
18
|
+
: cfg.contextType === 'prepare-task'
|
|
19
|
+
? getPrepareChangeTaskInstructions(cfg.taskId, skillPaths, safeCustom)
|
|
20
|
+
: getSkillInstructions(skillPaths, safeCustom);
|
|
21
|
+
return parts.join(' ');
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Encode a string as base64 in a way that works in both Node.js and browsers.
|
|
25
|
+
*/
|
|
26
|
+
function toBase64(str) {
|
|
27
|
+
const bytes = new TextEncoder().encode(str);
|
|
28
|
+
let binary = '';
|
|
29
|
+
for (let i = 0; i < bytes.length; i++)
|
|
30
|
+
binary += String.fromCharCode(bytes[i]);
|
|
31
|
+
return btoa(binary);
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Wrap a JS script as a shell command that writes a temp file from a base64
|
|
35
|
+
* payload, executes it, then cleans up. This avoids PTY echo noise (the
|
|
36
|
+
* echoed text is an opaque base64 string instead of readable source) and
|
|
37
|
+
* sidesteps shell-escaping and input-buffer issues.
|
|
38
|
+
*/
|
|
39
|
+
function wrapAsBase64TempFile(nodeJs, exitAfter = false) {
|
|
40
|
+
const b64 = toBase64(nodeJs);
|
|
41
|
+
const suffix = exitAfter ? '; exit' : '';
|
|
42
|
+
return `_f=$(mktemp /tmp/.nut-XXXXXX) && echo '${b64}' | base64 -d > "$_f" && node "$_f"; rm -f "$_f"${suffix}`;
|
|
43
|
+
}
|
|
44
|
+
function buildMcpSelSet(selectedMcpServers) {
|
|
45
|
+
return selectedMcpServers.map((n) => `'${n.replace(/'/g, "'\\''")}'`).join(',');
|
|
46
|
+
}
|
|
47
|
+
export const buildClaudeCommand = (cfg) => {
|
|
48
|
+
const interactive = cfg.interactive ?? true;
|
|
49
|
+
const instruction = getInstructionParts(cfg);
|
|
50
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
51
|
+
const args = [];
|
|
52
|
+
if (!interactive)
|
|
53
|
+
args.push(JSON.stringify('-p'));
|
|
54
|
+
args.push(JSON.stringify(instruction));
|
|
55
|
+
if (cfg.automationEnabled)
|
|
56
|
+
args.push(JSON.stringify('--dangerously-skip-permissions'));
|
|
57
|
+
const nodeJs = `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('claude',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
58
|
+
return wrapAsBase64TempFile(nodeJs, !interactive);
|
|
59
|
+
};
|
|
60
|
+
export const buildGeminiCommand = (cfg) => {
|
|
61
|
+
const interactive = cfg.interactive ?? true;
|
|
62
|
+
const instruction = getInstructionParts(cfg);
|
|
63
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
64
|
+
const args = [];
|
|
65
|
+
if (!interactive)
|
|
66
|
+
args.push(`'--non-interactive'`);
|
|
67
|
+
if (cfg.automationEnabled)
|
|
68
|
+
args.push(`'--yolo'`);
|
|
69
|
+
args.push(JSON.stringify(instruction));
|
|
70
|
+
const nodeJs = `const fs=require('fs'),path=require('path'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const geminiPath=path.join(require('os').homedir(),'.gemini','settings.json');let settings={};try{settings=JSON.parse(fs.readFileSync(geminiPath,'utf8'))}catch(e){}settings.mcpServers=Object.fromEntries(Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)));fs.writeFileSync(geminiPath,JSON.stringify(settings,null,2));const p=spawn('gemini',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
71
|
+
return wrapAsBase64TempFile(nodeJs, !interactive);
|
|
72
|
+
};
|
|
73
|
+
export const buildCodexCommand = (cfg) => {
|
|
74
|
+
const interactive = cfg.interactive ?? true;
|
|
75
|
+
const instruction = getInstructionParts(cfg);
|
|
76
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
77
|
+
const args = [];
|
|
78
|
+
if (!interactive)
|
|
79
|
+
args.push(JSON.stringify('exec'));
|
|
80
|
+
args.push(JSON.stringify(instruction));
|
|
81
|
+
if (cfg.automationEnabled)
|
|
82
|
+
args.push(JSON.stringify('--dangerously-bypass-approvals-and-sandbox'));
|
|
83
|
+
const nodeJs = `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('codex',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
84
|
+
return wrapAsBase64TempFile(nodeJs, !interactive);
|
|
85
|
+
};
|
|
86
|
+
export const buildDroidCommand = (cfg) => {
|
|
87
|
+
const interactive = cfg.interactive ?? true;
|
|
88
|
+
const instruction = getInstructionParts(cfg);
|
|
89
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
90
|
+
const args = [];
|
|
91
|
+
if (!interactive)
|
|
92
|
+
args.push(JSON.stringify('exec'));
|
|
93
|
+
args.push(JSON.stringify(instruction));
|
|
94
|
+
const nodeJs = `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('droid',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
95
|
+
return wrapAsBase64TempFile(nodeJs, !interactive);
|
|
96
|
+
};
|
|
97
|
+
export const buildKiroCommand = (cfg) => {
|
|
98
|
+
const interactive = cfg.interactive ?? true;
|
|
99
|
+
const instruction = getInstructionParts(cfg);
|
|
100
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
101
|
+
const args = [`'chat'`];
|
|
102
|
+
if (!interactive || cfg.automationEnabled)
|
|
103
|
+
args.push(`'--no-interactive'`);
|
|
104
|
+
if (cfg.automationEnabled)
|
|
105
|
+
args.push(`'--trust-all-tools'`);
|
|
106
|
+
args.push(JSON.stringify(instruction));
|
|
107
|
+
const nodeJs = `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('kiro-cli',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
108
|
+
return wrapAsBase64TempFile(nodeJs, !interactive);
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* Build a short banner printed in the terminal before the agent launches.
|
|
112
|
+
*/
|
|
113
|
+
export function buildPipelineBanner(cfg) {
|
|
114
|
+
const mode = (cfg.interactive ?? true)
|
|
115
|
+
? 'interactive'
|
|
116
|
+
: 'non-interactive (agent will exit on completion)';
|
|
117
|
+
return [
|
|
118
|
+
``,
|
|
119
|
+
`Running ${cfg.cliAgent} 🥥`,
|
|
120
|
+
``,
|
|
121
|
+
`Task: ${cfg.taskId}`,
|
|
122
|
+
`Context: ${cfg.contextType}`,
|
|
123
|
+
`Mode: ${mode}`,
|
|
124
|
+
``,
|
|
125
|
+
``,
|
|
126
|
+
].join('\\n');
|
|
127
|
+
}
|
|
128
|
+
const BUILDERS = {
|
|
129
|
+
claude: buildClaudeCommand,
|
|
130
|
+
gemini: buildGeminiCommand,
|
|
131
|
+
codex: buildCodexCommand,
|
|
132
|
+
droid: buildDroidCommand,
|
|
133
|
+
kiro: buildKiroCommand,
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Build the shell command for a given pipeline configuration.
|
|
137
|
+
* Returns a heredoc-wrapped command suitable for direct PTY input.
|
|
138
|
+
* Prefer `buildPipelineScript` + temp file for server/CLI callers
|
|
139
|
+
* to avoid PTY echo noise.
|
|
140
|
+
*/
|
|
141
|
+
export function buildPipelineCommand(cfg) {
|
|
142
|
+
const builder = BUILDERS[cfg.cliAgent];
|
|
143
|
+
if (!builder) {
|
|
144
|
+
throw new Error(`Unknown CLI agent: ${cfg.cliAgent}`);
|
|
145
|
+
}
|
|
146
|
+
return builder(cfg);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Build just the raw Node.js script for a pipeline configuration.
|
|
150
|
+
* Callers should write this to a temp file and execute `node <path>`,
|
|
151
|
+
* which avoids PTY echo noise and input-buffer limits.
|
|
152
|
+
*/
|
|
153
|
+
export function buildPipelineScript(cfg) {
|
|
154
|
+
const instruction = getInstructionParts(cfg);
|
|
155
|
+
const interactive = cfg.interactive ?? true;
|
|
156
|
+
const selList = buildMcpSelSet(cfg.selectedMcpServers);
|
|
157
|
+
const agentScripts = {
|
|
158
|
+
claude: () => {
|
|
159
|
+
const args = [];
|
|
160
|
+
if (!interactive)
|
|
161
|
+
args.push(JSON.stringify('-p'));
|
|
162
|
+
args.push(JSON.stringify(instruction));
|
|
163
|
+
if (cfg.automationEnabled)
|
|
164
|
+
args.push(JSON.stringify('--dangerously-skip-permissions'));
|
|
165
|
+
return `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('claude',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
166
|
+
},
|
|
167
|
+
gemini: () => {
|
|
168
|
+
const args = [];
|
|
169
|
+
if (!interactive)
|
|
170
|
+
args.push(`'--non-interactive'`);
|
|
171
|
+
if (cfg.automationEnabled)
|
|
172
|
+
args.push(`'--yolo'`);
|
|
173
|
+
args.push(JSON.stringify(instruction));
|
|
174
|
+
return `const fs=require('fs'),path=require('path'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const geminiPath=path.join(require('os').homedir(),'.gemini','settings.json');let settings={};try{settings=JSON.parse(fs.readFileSync(geminiPath,'utf8'))}catch(e){}settings.mcpServers=Object.fromEntries(Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)));fs.writeFileSync(geminiPath,JSON.stringify(settings,null,2));const p=spawn('gemini',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
175
|
+
},
|
|
176
|
+
codex: () => {
|
|
177
|
+
const args = [];
|
|
178
|
+
if (!interactive)
|
|
179
|
+
args.push(JSON.stringify('exec'));
|
|
180
|
+
args.push(JSON.stringify(instruction));
|
|
181
|
+
if (cfg.automationEnabled)
|
|
182
|
+
args.push(JSON.stringify('--dangerously-bypass-approvals-and-sandbox'));
|
|
183
|
+
return `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('codex',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
184
|
+
},
|
|
185
|
+
droid: () => {
|
|
186
|
+
const args = [];
|
|
187
|
+
if (!interactive)
|
|
188
|
+
args.push(JSON.stringify('exec'));
|
|
189
|
+
args.push(JSON.stringify(instruction));
|
|
190
|
+
return `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('droid',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
191
|
+
},
|
|
192
|
+
kiro: () => {
|
|
193
|
+
const args = [`'chat'`];
|
|
194
|
+
if (!interactive || cfg.automationEnabled)
|
|
195
|
+
args.push(`'--no-interactive'`);
|
|
196
|
+
if (cfg.automationEnabled)
|
|
197
|
+
args.push(`'--trust-all-tools'`);
|
|
198
|
+
args.push(JSON.stringify(instruction));
|
|
199
|
+
return `const fs=require('fs'),{spawn}=require('child_process');const s=new Set([${selList}]);const c=JSON.parse(fs.readFileSync('.nut/mcp/config.json','utf8'));const filtered=Object.entries(c.mcpServers||{}).filter(([k])=>s.has(k)).map(([k,v])=>[k,{...v,type:v.type||(v.url?'http':'stdio')}]);const o={mcpServers:Object.fromEntries(filtered)};fs.writeFileSync('.mcp.json',JSON.stringify(o,null,2));const p=spawn('kiro-cli',[${args.join(',')}],{stdio:'inherit'});p.on('exit',code=>process.exit(code));`;
|
|
200
|
+
},
|
|
201
|
+
};
|
|
202
|
+
const scriptBuilder = agentScripts[cfg.cliAgent];
|
|
203
|
+
if (!scriptBuilder) {
|
|
204
|
+
throw new Error(`Unknown CLI agent: ${cfg.cliAgent}`);
|
|
205
|
+
}
|
|
206
|
+
return scriptBuilder();
|
|
207
|
+
}
|
|
208
|
+
//# sourceMappingURL=pipeline-builders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-builders.js","sourceRoot":"","sources":["../src/pipeline-builders.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { SCHEMA_REFERENCE_INSTRUCTION, PROJECT_REFERENCE_INSTRUCTION, getChangeTaskInstructions, getPrepareChangeTaskInstructions, getSkillInstructions, getAgentInstructions, } from './skill-instructions.js';
|
|
2
|
+
export { sanitizeInstruction, buildClaudeCommand, buildGeminiCommand, buildCodexCommand, buildDroidCommand, buildKiroCommand, buildPipelineCommand, buildPipelineScript, buildPipelineBanner, } from './pipeline-builders.js';
|
|
3
|
+
export type { CliAgent, PipelineContextType, PipelineConfig, BuildCommand, } from './pipeline-builders.js';
|
|
4
|
+
//# sourceMappingURL=pipelines.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipelines.d.ts","sourceRoot":"","sources":["../src/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,4BAA4B,EAC5B,6BAA6B,EAC7B,yBAAyB,EACzB,gCAAgC,EAChC,oBAAoB,EACpB,oBAAoB,GACrB,MAAM,yBAAyB,CAAA;AAEhC,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,wBAAwB,CAAA;AAE/B,YAAY,EACV,QAAQ,EACR,mBAAmB,EACnB,cAAc,EACd,YAAY,GACb,MAAM,wBAAwB,CAAA"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { SCHEMA_REFERENCE_INSTRUCTION, PROJECT_REFERENCE_INSTRUCTION, getChangeTaskInstructions, getPrepareChangeTaskInstructions, getSkillInstructions, getAgentInstructions, } from './skill-instructions.js';
|
|
2
|
+
export { sanitizeInstruction, buildClaudeCommand, buildGeminiCommand, buildCodexCommand, buildDroidCommand, buildKiroCommand, buildPipelineCommand, buildPipelineScript, buildPipelineBanner, } from './pipeline-builders.js';
|
|
3
|
+
//# sourceMappingURL=pipelines.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipelines.js","sourceRoot":"","sources":["../src/pipelines.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,4BAA4B,EAC5B,6BAA6B,EAC7B,yBAAyB,EACzB,gCAAgC,EAChC,oBAAoB,EACpB,oBAAoB,GACrB,MAAM,yBAAyB,CAAA;AAEhC,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,wBAAwB,CAAA"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare 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 declare const PROJECT_REFERENCE_INSTRUCTION = "Use .nut/context/project.md and .nut/context/architecture.md for reference.";
|
|
3
3
|
/**
|
|
4
|
-
* Get instructions for change task (
|
|
4
|
+
* Get instructions for change task (task-*) workflows
|
|
5
5
|
*/
|
|
6
|
-
export declare function getChangeTaskInstructions(
|
|
6
|
+
export declare function getChangeTaskInstructions(taskId: string, skillPaths: string[], customInstruction?: string, includeDefaultInstructions?: boolean): string[];
|
|
7
7
|
/**
|
|
8
|
-
* Get instructions for reviewing / preparing a change task (
|
|
8
|
+
* Get instructions for reviewing / preparing a change task (task-*) before implementation.
|
|
9
9
|
* Assesses readiness without starting any actual work.
|
|
10
10
|
*/
|
|
11
11
|
export declare function getPrepareChangeTaskInstructions(taskId: string, skillPaths: string[], customInstruction?: string): string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skill-instructions.d.ts","sourceRoot":"","sources":["../src/skill-instructions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,kSACwP,CAAC;AAClS,eAAO,MAAM,6BAA6B,gFACqC,CAAA;AAE/E;;GAEG;AACH,wBAAgB,yBAAyB,CACvC,
|
|
1
|
+
{"version":3,"file":"skill-instructions.d.ts","sourceRoot":"","sources":["../src/skill-instructions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,kSACwP,CAAC;AAClS,eAAO,MAAM,6BAA6B,gFACqC,CAAA;AAE/E;;GAEG;AACH,wBAAgB,yBAAyB,CACvC,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,EAC1B,0BAA0B,GAAE,OAAc,GACzC,MAAM,EAAE,CAyFV;AAED;;;GAGG;AACH,wBAAgB,gCAAgC,CAC9C,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,GACzB,MAAM,EAAE,CAqFV;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,GACzB,MAAM,EAAE,CAgBV;AAGD,mDAAmD;AACnD,eAAO,MAAM,oBAAoB,6BAAuB,CAAC"}
|
|
@@ -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 (
|
|
4
|
+
* Get instructions for change task (task-*) workflows
|
|
5
5
|
*/
|
|
6
|
-
export function getChangeTaskInstructions(
|
|
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/${
|
|
16
|
-
`- Retrieve your firstName, lastName, and email address from: .nut/config.json and use this identity
|
|
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
|
-
|
|
23
|
-
|
|
22
|
+
`1. Before beginning any work, set the task to active:`,
|
|
23
|
+
` nut task update ${taskId} --status active`,
|
|
24
24
|
``,
|
|
25
|
-
|
|
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
|
-
|
|
28
|
-
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
`
|
|
37
|
-
`
|
|
38
|
-
|
|
39
|
-
` -
|
|
40
|
-
`
|
|
41
|
-
` -
|
|
42
|
-
|
|
43
|
-
`
|
|
44
|
-
`-
|
|
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 (
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
`-
|
|
88
|
-
`-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
`
|
|
100
|
-
`
|
|
101
|
-
|
|
102
|
-
`
|
|
103
|
-
` -
|
|
104
|
-
`
|
|
105
|
-
|
|
106
|
-
`
|
|
107
|
-
|
|
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
|
|
119
|
-
|
|
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":"AAAA,MAAM,CAAC,MAAM,4BAA4B,GACvC,+RAA+R,CAAC;AAClS,MAAM,CAAC,MAAM,6BAA6B,GACxC,6EAA6E,CAAA;AAE/E;;GAEG;AACH,MAAM,UAAU,yBAAyB,CACvC,
|
|
1
|
+
{"version":3,"file":"skill-instructions.js","sourceRoot":"","sources":["../src/skill-instructions.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovelybunch/core",
|
|
3
|
-
"version": "1.0.76-alpha.
|
|
3
|
+
"version": "1.0.76-alpha.10",
|
|
4
4
|
"description": "Core Coconut functionality",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"./logging": {
|
|
14
14
|
"types": "./dist/logging/index.d.ts",
|
|
15
15
|
"import": "./dist/logging/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./pipelines": {
|
|
18
|
+
"types": "./dist/pipelines.d.ts",
|
|
19
|
+
"import": "./dist/pipelines.js"
|
|
16
20
|
}
|
|
17
21
|
},
|
|
18
22
|
"files": [
|
|
@@ -38,7 +42,7 @@
|
|
|
38
42
|
"test:ui": "vitest --ui"
|
|
39
43
|
},
|
|
40
44
|
"dependencies": {
|
|
41
|
-
"@lovelybunch/types": "^1.0.76-alpha.
|
|
45
|
+
"@lovelybunch/types": "^1.0.76-alpha.10",
|
|
42
46
|
"@slack/web-api": "^7.13.0",
|
|
43
47
|
"fuse.js": "^7.0.0",
|
|
44
48
|
"gray-matter": "^4.0.3",
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export declare const SCHEMA_REFERENCE_INSTRUCTION = "Consult the schema references in .nut/.schema (proposal.schema.md, project.schema.md, architecture.schema.md, agent.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
|
-
export declare const PROJECT_REFERENCE_INSTRUCTION = "Use .nut/context/project.md and .nut/context/architecture.md for reference.";
|
|
3
|
-
/**
|
|
4
|
-
* Get instructions for change proposal (cp-*) workflows
|
|
5
|
-
*/
|
|
6
|
-
export declare function getChangeProposalInstructions(proposalId: string, agentPaths: string[], customInstruction?: string, includeDefaultInstructions?: boolean): string[];
|
|
7
|
-
/**
|
|
8
|
-
* Get instructions for reviewing / preparing a change proposal (cp-*) before implementation.
|
|
9
|
-
* Assesses readiness without starting any actual work.
|
|
10
|
-
*/
|
|
11
|
-
export declare function getPrepareChangeProposalInstructions(proposalId: string, agentPaths: string[], customInstruction?: string): string[];
|
|
12
|
-
/**
|
|
13
|
-
* Get instructions for agent (ag-*) workflows
|
|
14
|
-
* Agent content and custom instructions drive the behavior
|
|
15
|
-
*/
|
|
16
|
-
export declare function getAgentInstructions(agentPaths: string[], customInstruction?: string): string[];
|
|
17
|
-
//# sourceMappingURL=agent-instructions.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"agent-instructions.d.ts","sourceRoot":"","sources":["../src/agent-instructions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,4BAA4B,sSAC4P,CAAC;AACtS,eAAO,MAAM,6BAA6B,gFACqC,CAAA;AAE/E;;GAEG;AACH,wBAAgB,6BAA6B,CAC3C,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,EAC1B,0BAA0B,GAAE,OAAc,GACzC,MAAM,EAAE,CA0EV;AAED;;;GAGG;AACH,wBAAgB,oCAAoC,CAClD,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,GACzB,MAAM,EAAE,CAqEV;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,EAAE,EACpB,iBAAiB,CAAC,EAAE,MAAM,GACzB,MAAM,EAAE,CAgBV"}
|