claude-code-system-prompts/system-prompts/system-reminder-question-context.md
2026-06-12 10:12:09 -06:00

19 lines
714 B
Markdown

<!--
name: 'System Reminder: Question context'
description: Provides potentially relevant context entries to use only when highly relevant to the current task
ccVersion: 2.1.173
variables:
- QUESTION_CONTEXT
- CONTEXT_ENTRY_LIMIT
- CONTEXT_ENTRY_TITLE
- CONTEXT_ENTRY_CONTENT
-->
<system-reminder>
As you answer the user's questions, you can use the following context:
${QUESTION_CONTEXT.entries(CONTEXT_ENTRY_LIMIT).map(([CONTEXT_ENTRY_TITLE,CONTEXT_ENTRY_CONTENT])=>`# ${CONTEXT_ENTRY_TITLE}
${CONTEXT_ENTRY_CONTENT}`).join(`
`)}
IMPORTANT: this context may or may not be relevant to your tasks. You should not respond to this context unless it is highly relevant to your task.
</system-reminder>