- Remove nerveYaml injection from planner (skill has it)
- Remove sensesDir/nerveRoot from coder and tester (skill has conventions)
- Prompts now just say 'read the skill' instead of inlining knowledge
- BuildSenseGeneratorDeps reduced to { provider, cwd }
- index.ts drops getNerveYaml(), SENSES_DIR, readFileSync
8 lines
438 B
TypeScript
8 lines
438 B
TypeScript
export function coderPrompt({ threadId }: { threadId: string }): string {
|
|
return `Read the workflow thread for the planner's sense design: \`nerve thread ${threadId}\`
|
|
Read the nerve-dev skill for sense file structure and conventions: \`cat node_modules/@uncaged/nerve-skills/nerve-dev/SKILL.md\`
|
|
|
|
Implement the sense following the patterns from existing senses and the skill guide.
|
|
Create all required files and update nerve.yaml.`;
|
|
}
|