Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/chat/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Follow these guidelines:
2. Ask questions one set at a time, adapting based on previous answers
3. When you have enough context, generate the complete PRD
4. IMPORTANT: Wrap the final PRD in [PRD]...[/PRD] markers
5. IMPORTANT: Do NOT start implementing. Your job is ONLY to create the PRD document.

The user can respond with shorthand like "1A, 2C" for quick iteration.
`;
Expand Down
7 changes: 7 additions & 0 deletions src/commands/create-prd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,13 @@ async function runChatMode(
if (bundledSkill) {
parsedArgs.prdSkillSource = bundledSkill;
console.log("✓ Loaded ralph-tui-prd skill");
} else {
console.warn(
"⚠ ralph-tui-prd skill not found. PRD quality may be reduced.",
);
console.warn(
' Run "ralph-tui setup" to install skills, or use --prd-skill to specify one.',
);
}
}

Expand Down
Loading