3ngram registers 12 prompt templates via the MCPDocumentation Index
Fetch the complete documentation index at: https://docs.3ngram.ai/llms.txt
Use this file to discover all available pages before exploring further.
prompts/list and prompts/get protocol. Prompts compose existing tools and resources; they contain no database queries or business logic.
The four workflow prompts that started life as MCP tools (
compile_context, handoff, triage_stale, suggest_reclassifications) keep their friendly names in marketing copy but are exposed via prompts/list with a _prompt suffix. Use the suffixed name when invoking through the MCP protocol; clients that expose the friendly UI name (Claude Desktop’s @ menu, Cursor) handle the mapping for you.Prompt catalog
Prompt name (prompts/list) | Friendly name | Arguments | Purpose |
|---|---|---|---|
briefing | Briefing | project? | Start-of-session overview |
debrief | Debrief | (none) | End-of-session extraction |
project_context | Project Context | project (required) | Deep context for a single project |
meeting_prep | Meeting Prep | meeting_topic? | Pre-meeting context gathering |
post_meeting | Post Meeting | meeting_topic? | Post-meeting memory extraction |
compile_context_prompt | Compile Context | task (required), project?, scope? | Compile task-scoped context from decisions, commitments, blockers, patterns, and content |
handoff_prompt | Handoff | scope?, hours? | Export current session context as structured JSON for session continuity |
triage_stale_prompt | Triage Stale | days? | Surface stale memories with resolution prompts for cleanup |
suggest_reclassifications_prompt | Suggest Reclassifications | limit? | Find memories that may be misclassified and suggest corrections |
onboarding | 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
Output sections: Overdue, Blockers, Open Commitments, Stale items, Recent Decisions, Suggested focus.
Protocol:
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, engram://commitments
compile_context_prompt
Compiles task-scoped context across decisions, commitments, blockers, patterns, and indexed content for a focused workstream. Tools/resources used:search, engram://commitments, engram://blockers
handoff_prompt
Exports the current session’s open commitments, blockers, and recent decisions as a structured JSON handoff payload so a different AI client (or teammate) can resume without re-explaining the state. Tools/resources used:search, engram://commitments, engram://blockers, engram://overdue
triage_stale_prompt
Surfaces commitments with no recent activity and proposes resolution / reclassification / archive paths so a session can clear backlog quickly. Tools/resources used:engram://stale, resolve, update_memories
suggest_reclassifications_prompt
Finds memories whose classification is likely wrong (e.g. notes mis-saved as commitments) and proposes corrected types with rationale. Tools/resources used:search, update_memories
project_context
Retrieves everything scoped to one project: memories, commitments, blockers, overdue items, and recent decisions. Tools/resources used:search, 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
| Client | Discovery | Invocation |
|---|---|---|
| Claude Desktop | prompts/list | @ menu or natural language |
| Claude Code | prompts/list | Natural language |
| Cursor | prompts/list | @ mention |
| ChatGPT | Not supported | Custom instructions workaround |