Skip to main content
3ngram registers 10 prompt templates via the MCP prompts/list and prompts/get protocol. Prompts compose existing tools and resources; they contain no database queries or business logic.

Prompt catalog

PromptArgumentsPurpose
briefingproject?Start-of-session overview
debrief(none)End-of-session extraction
project_contextproject (required)Deep context for a single project
meeting_prepmeeting_topic?Pre-meeting context gathering
post_meetingmeeting_topic?Post-meeting memory extraction
compile_contexttask (required), project?, scope?Compile task-scoped context from decisions, commitments, blockers, patterns, and content
handoffscope?, hours?Export current session context as structured JSON for session continuity
triage_staledays?Surface stale memories with resolution prompts for cleanup
suggest_reclassificationslimit?Find context memories that may be misclassified and suggest corrections
onboarding(none)Interactive first-session setup via guided conversation

briefing

Gathers commitments, blockers, overdue items, stale work, and recent decisions into a structured summary. Tools/resources used: engram://commitments, engram://blockers, engram://overdue, engram://stale, search_memories Output sections: Overdue, Blockers, Open Commitments, Stale items, Recent Decisions, Suggested focus. Protocol:
→ prompts/get {name: "briefing", arguments: {project: "engram"}}
← {messages: [{role: "user", content: {text: "You are starting a new session..."}}]}
The client inserts the returned message into the conversation, and the AI follows the instructions to call the listed tools.

debrief

Scans the current conversation for decisions, commitments, blockers, and learnings. Persists each as a structured memory and resolves completed items. Tools/resources used: remember, resolve, search_memories, engram://commitments

project_context

Retrieves everything scoped to one project: memories, commitments, blockers, overdue items, and recent decisions. Tools/resources used: search_memories, engram://commitments, engram://blockers, engram://overdue

onboarding

Guides an interactive conversation to learn the user’s context instead of a settings page. Captures projects, preferences, commitments, and work context as structured memories. Designed for a user’s first session. Tools/resources used: remember, set_preference, configure_scope

Client compatibility

ClientDiscoveryInvocation
Claude Desktopprompts/list@ menu or natural language
Claude Codeprompts/listNatural language
Cursorprompts/list@ mention
ChatGPTNot supportedCustom instructions workaround
For usage examples and invocation patterns, see the Prompt Templates guide.