Skip to content
Merged
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
4 changes: 2 additions & 2 deletions packages/opencode-plugin/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ export const WorkflowsPlugin: Plugin = async (
messageID: hookInput.messageID || output.message.id,
type: 'text' as const,
synthetic: true,
text: `No Active Workflow Use the \`start_development\` tool to begin.`,
text: `No Active Workflow Detected. You MUST initiate a new development workflow before proceeding. Call the \`start_development\` tool to begin. Do NOT attempt any file edits or tool executions until a workflow is active.`,
} as (typeof output.parts)[0]);
return;
}
Expand All @@ -396,7 +396,7 @@ export const WorkflowsPlugin: Plugin = async (
messageID: hookInput.messageID || output.message.id,
type: 'text' as const,
synthetic: true,
text: `No Active Workflow Use the \`start_development\` tool to begin.`,
text: `No Active Workflow Detected. You MUST initiate a new development workflow before proceeding. Call the \`start_development\` tool to begin. Do NOT attempt any file edits or tool executions until a workflow is active.`,
} as (typeof output.parts)[0]);
return;
}
Expand Down
Loading