mirror of
https://github.com/Piebald-AI/claude-code-system-prompts.git
synced 2026-06-13 14:43:33 +08:00
19 lines
714 B
Markdown
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>
|