Skip to content
Closed
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
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/simpleissue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Fork Issue
description: Create a simple issue to track changes when working inside the fork, before going to main.
title: "[Fork] "
labels: []
assignees: []
body:
- type: textarea
id: description
attributes:
label: Description
description: Describe the purpose of this fork and any planned changes
placeholder: Type your description here...
validations:
required: true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ docs/_site/

#Logging
logs
.devcontainer
.roomodes
.gitignore
2 changes: 1 addition & 1 deletion src/core/prompts/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function generatePrompt(

// Get the full mode config to ensure we have the role definition
const modeConfig = getModeBySlug(mode, customModeConfigs) || modes.find((m) => m.slug === mode) || modes[0]
const roleDefinition = promptComponent?.roleDefinition || modeConfig.roleDefinition
const roleDefinition = modeConfig?.roleDefinition || promptComponent?.roleDefinition

const basePrompt = `${roleDefinition}

Expand Down
Loading