Lines Matching full:system
1 ====== DokuLLM Plugin - Prompt System and Namespace Documentation ======
3 …the DokuLLM plugin's prompt system works, including the namespace structure, prompt hierarchy, ava…
7 …ion and prompt management system for the DokuLLM plugin. This namespace contains all the prompt te…
9 ==== System Prompts =====
11 === Main System Prompt (''dokullm:profiles:default:system'') ===
13 The system prompt is the foundational instruction set that defines the LLM's role, behavior, and ca…
29 === Command-Specific System Appendages ===
31 Each action can have an additional system prompt that extends the main system prompt:
33 * ''create:system'' - Additional instructions for content creation
34 * ''rewrite:system'' - Guidelines for text rewriting and improvement
35 * ''summarize:system'' - Focus areas for summarization
36 * ''analyze:system'' - Analysis framework and structure
37 * ''expand:system'' - Guidelines for content expansion
70 When no template is specified, the system can automatically find relevant templates based on conten…
74 The system provides rich context through:
87 The DokuLLM plugin uses a hierarchical prompt system that allows for flexible customization using D…
195 ===== System Prompt Extensions =====
197 The plugin supports a hierarchical system prompt architecture that allows for fine-grained control …
201 The system works by automatically checking for command-specific system prompt extensions when proce…
203 ''dokullm:profiles:[PROFILE_NAME]:[ACTION_NAME]:system''
206 * ''dokullm:profiles:default:summarize:system''
207 * ''dokullm:profiles:default:create:system''
208 * ''dokullm:profiles:medical:analyze:system''
212 1. **Base System Prompt Loading**: When any action is initiated, the main system prompt is first lo…
213 ''dokullm:profiles:[PROFILE_NAME]:system''
215 2. **Command-Specific Extension Check**: The system then checks if a command-specific system prompt…
216 ''dokullm:profiles:[PROFILE_NAME]:[ACTION_NAME]:system''
218 … the extension exists, its content is automatically appended to the base system prompt with a newl…
220 4. **Fallback Behavior**: If the extension doesn't exist, the system simply uses the base system pr…
226 …deal for providing action-specific guidance that supplements the general system instructions. For …
228 Base System Prompt (''dokullm:profiles:default:system''):
231 Summarize Extension (''dokullm:profiles:default:summarize:system''):
254 1. **Complementary Content**: Extensions should complement, not contradict, the base system prompt
256 3. **Consistent Formatting**: Maintain consistent style with the base system prompt
263 ├── system # Base system prompt
265 ├── summarize:system # Summarize-specific system extension
267 ├── expand:system # Expand-specific system extension
269 └── grammar:system # Grammar-specific system extension
309 ===== Profile System =====