@meldocio/mcp-stdio-proxy 1.0.26 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,832 @@
1
+ ---
2
+ name: onboarding
3
+ description: Guides new users through getting started with Meldoc. Use when a user is new to Meldoc, first time using the MCP integration, learning to navigate documentation, understanding basic concepts, or setting up documentation workflows.
4
+ ---
5
+
6
+ Your friendly guide to getting started with Meldoc and mastering documentation workflows.
7
+
8
+ ## First-Time User Experience
9
+
10
+ ### Initial Greeting
11
+
12
+ When a user first interacts with Meldoc:
13
+
14
+ ```
15
+ 👋 Welcome to Meldoc!
16
+
17
+ I can help you work with your documentation. Here's what I can do:
18
+
19
+ 📖 **Read & Search**
20
+ - Find specific documents
21
+ - Search across all your docs
22
+ - Navigate document structures
23
+
24
+ ✍️ **Create & Edit**
25
+ - Write new documentation
26
+ - Update existing documents
27
+ - Organize content hierarchically
28
+
29
+ 🔗 **Discover Connections**
30
+ - Find related documents
31
+ - See what links where
32
+ - Explore document relationships
33
+
34
+ Would you like to:
35
+ 1. 📚 Take a quick tour of your documentation
36
+ 2. 🔍 Search for something specific
37
+ 3. ✏️ Create new documentation
38
+ 4. ❓ Learn about Meldoc features
39
+ ```
40
+
41
+ ### Quick Start Checklist
42
+
43
+ Help users get oriented:
44
+
45
+ ```markdown
46
+ ## Getting Started Checklist
47
+
48
+ Let's make sure you're all set up:
49
+
50
+ - [x] ✅ Connected to Meldoc (you're authenticated!)
51
+ - [ ] 📁 Choose your workspace
52
+ - [ ] 📋 Explore your projects
53
+ - [ ] 📄 View some documents
54
+ - [ ] 🔍 Try a search
55
+ - [ ] ✏️ Create your first document
56
+
57
+ **Current Status:**
58
+ - Workspace: {workspace_name}
59
+ - Projects: {project_count}
60
+ - Documents: {document_count}
61
+
62
+ What would you like to explore first?
63
+ ```
64
+
65
+ ## Onboarding Flows
66
+
67
+ ### Flow 1: Workspace Discovery
68
+
69
+ Help users understand their workspace:
70
+
71
+ ```javascript
72
+ // 1. Show workspace info
73
+ const workspace = await get_workspace();
74
+ const projects = await projects_list();
75
+
76
+ // 2. Present overview
77
+ ```
78
+
79
+ ```markdown
80
+ ## Your Workspace: {workspace.name}
81
+
82
+ You have access to **{projects.length}** projects:
83
+
84
+ {projects.map(p => `
85
+ ### ${p.name}
86
+ - ${p.documentCount} documents
87
+ - Last updated: ${p.lastUpdated}
88
+ `).join('\n')}
89
+
90
+ **Where to start:**
91
+ - 🌟 Most active project: {mostActive.name}
92
+ - 📈 Recently updated: {recentlyUpdated.name}
93
+ - 📚 Largest documentation: {largest.name}
94
+
95
+ Which project would you like to explore?
96
+ ```
97
+
98
+ ### Flow 2: Document Structure Tour
99
+
100
+ Show how docs are organized:
101
+
102
+ ```javascript
103
+ // 1. Pick a representative project
104
+ const project = await suggestGoodStartingProject();
105
+
106
+ // 2. Get its structure
107
+ const tree = await docs_tree({ projectId: project.id });
108
+
109
+ // 3. Explain the structure
110
+ ```
111
+
112
+ ```markdown
113
+ ## How Your Documentation is Organized
114
+
115
+ Here's the structure of **{project.name}**:
116
+
117
+ ```
118
+ 📁 {project.name}
119
+ ├─ 📄 Getting Started
120
+ │ ├─ 📄 Installation
121
+ │ └─ 📄 Quick Start
122
+ ├─ 📄 User Guide
123
+ │ ├─ 📄 Basic Features
124
+ │ └─ 📄 Advanced Features
125
+ └─ 📄 API Reference
126
+ ├─ 📄 Authentication
127
+ └─ 📄 Endpoints
128
+ ```
129
+
130
+ **Understanding the structure:**
131
+ - 📁 **Projects** organize related documentation
132
+ - 📄 **Documents** can have parent-child relationships
133
+ - 🔗 **Links** connect related topics across documents (use `[[alias]]` format)
134
+
135
+ **Try it yourself:**
136
+ - "Show me the Getting Started guide"
137
+ - "What's in the User Guide?"
138
+ - "Find all API documentation"
139
+ ```
140
+
141
+ ### Flow 3: First Search Experience
142
+
143
+ Teach search capabilities:
144
+
145
+ ```markdown
146
+ ## Let's Try Searching! 🔍
147
+
148
+ Meldoc can search through all your documentation instantly.
149
+
150
+ **What to search for:**
151
+ - Specific features: "authentication", "deployment"
152
+ - Error messages: "connection timeout", "404 error"
153
+ - Concepts: "best practices", "architecture"
154
+ - Code examples: "python example", "API call"
155
+
156
+ **Try asking:**
157
+ - "Find documentation about authentication"
158
+ - "Search for deployment guides"
159
+ - "Show me code examples"
160
+
161
+ **What would you like to search for?**
162
+ ```
163
+
164
+ After first search:
165
+
166
+ ```markdown
167
+ ## Great! Here's what I found:
168
+
169
+ {search_results}
170
+
171
+ **Search tips:**
172
+ ✅ Use specific technical terms
173
+ ✅ Include 2-3 keywords for best results
174
+ ✅ Try variations if you don't find what you need
175
+ ❌ Avoid very broad single words
176
+
177
+ **Next steps:**
178
+ - Click any document to read it
179
+ - Ask me to "explain {topic}" for a summary
180
+ - Search for related topics
181
+ ```
182
+
183
+ ### Flow 4: First Document Creation
184
+
185
+ Guide through creating a doc:
186
+
187
+ ```markdown
188
+ ## Let's Create Your First Document! ✏️
189
+
190
+ I'll help you create a well-structured document with proper Meldoc format.
191
+
192
+ **First, let me ask a few questions:**
193
+
194
+ 1. **What's the topic?**
195
+ (e.g., "API Authentication Guide", "Deployment Process")
196
+
197
+ 2. **Who is it for?**
198
+ - [ ] Developers
199
+ - [ ] End users
200
+ - [ ] Administrators
201
+ - [ ] General audience
202
+
203
+ 3. **What type of document?**
204
+ - [ ] Tutorial (step-by-step)
205
+ - [ ] Reference (technical details)
206
+ - [ ] Guide (conceptual explanation)
207
+ - [ ] How-to (specific task)
208
+
209
+ Based on your answers, I'll create a structured outline with proper frontmatter!
210
+ ```
211
+
212
+ After getting answers:
213
+
214
+ ```markdown
215
+ ## Perfect! Here's what I'll create:
216
+
217
+ **Title:** {title}
218
+ **Type:** {type}
219
+ **Audience:** {audience}
220
+
221
+ **Suggested structure:**
222
+
223
+ ```markdown
224
+ ---
225
+ alias: {kebab-case-alias}
226
+ title: {title}
227
+ ---
228
+
229
+ ## Overview
230
+ High-level explanation...
231
+
232
+ ## Prerequisites
233
+ What readers need to know first...
234
+
235
+ ## {Main Sections}
236
+ Detailed content...
237
+
238
+ ## Related Documentation
239
+ - [[related-doc-1]]
240
+ - [[related-doc-2]]
241
+ ```
242
+
243
+ **Important Meldoc format:**
244
+ - ✅ YAML frontmatter with `title` and `alias` (required)
245
+ - ✅ Content starts with H2, not H1
246
+ - ✅ Use `[[alias]]` for internal links
247
+
248
+ **Ready to create?**
249
+ - Say "yes" to create this document
250
+ - Or tell me what to change first
251
+ ```
252
+
253
+ ### Flow 5: Workspace Collaboration
254
+
255
+ Introduce team features:
256
+
257
+ ```markdown
258
+ ## Working with Your Team 👥
259
+
260
+ Meldoc supports team collaboration on documentation.
261
+
262
+ **Key concepts:**
263
+
264
+ 📝 **Multiple authors**
265
+ - Anyone with access can edit
266
+ - Changes are tracked with timestamps
267
+ - Last editor is shown
268
+
269
+ 🔄 **Updates are immediate**
270
+ - Changes sync in real-time
271
+ - Use `expectedUpdatedAt` to prevent conflicts
272
+ - Everyone sees latest version
273
+
274
+ 🔗 **Shared structure**
275
+ - Common document tree
276
+ - Shared links using `[[alias]]` format
277
+ - Consistent navigation
278
+
279
+ **Team workflows:**
280
+
281
+ 1. **Divide and conquer**
282
+ - Different people work on different docs
283
+ - Coordinate on shared structure
284
+ - Review each other's work
285
+
286
+ 2. **Iterative improvement**
287
+ - Start with `workflow: "draft"`
288
+ - Refine together
289
+ - Change to `workflow: "published"` when ready
290
+
291
+ 3. **Continuous updates**
292
+ - Keep docs current
293
+ - Small frequent updates
294
+ - Notify team of major changes
295
+
296
+ **Want to see who last updated a document?**
297
+ Just ask: "Who last updated {document}?"
298
+ ```
299
+
300
+ ## Progressive Learning Path
301
+
302
+ ### Level 1: Basics (First Hour)
303
+
304
+ **Core concepts:**
305
+ - ✅ Workspaces organize your documentation
306
+ - ✅ Projects group related documents
307
+ - ✅ Documents can have parent-child structure
308
+ - ✅ Search finds information across all docs
309
+ - ✅ Links connect related topics (use `[[alias]]` format)
310
+ - ✅ Every document needs YAML frontmatter with `title` and `alias`
311
+
312
+ **Essential actions:**
313
+ - Navigate workspace
314
+ - Search for documents
315
+ - Read document content
316
+ - View document structure
317
+
318
+ **Practice prompts:**
319
+ - "Show me all projects"
320
+ - "Search for getting started"
321
+ - "What's in the API documentation?"
322
+ - "Show me the document tree"
323
+
324
+ ### Level 2: Contributing (First Day)
325
+
326
+ **New concepts:**
327
+ - ✅ Creating structured documents with frontmatter
328
+ - ✅ Using markdown formatting
329
+ - ✅ Organizing content hierarchically
330
+ - ✅ Linking between documents using `[[alias]]`
331
+ - ✅ Understanding document metadata (workflow, visibility, exposure)
332
+
333
+ **New actions:**
334
+ - Create new documents with proper frontmatter
335
+ - Update existing content
336
+ - Add links between docs using `[[alias]]` format
337
+ - Organize with parent-child relationships
338
+
339
+ **Practice prompts:**
340
+ - "Create a guide about {topic}"
341
+ - "Add a section about {concept} to {document}"
342
+ - "Link this to the {related document}"
343
+ - "Make this a child of {parent document}"
344
+
345
+ ### Level 3: Power User (First Week)
346
+
347
+ **Advanced concepts:**
348
+ - ✅ Document relationships and backlinks
349
+ - ✅ Content organization strategies
350
+ - ✅ Search optimization
351
+ - ✅ Documentation templates
352
+ - ✅ Team coordination
353
+
354
+ **Advanced actions:**
355
+ - Restructure documentation
356
+ - Find and fix broken links
357
+ - Identify documentation gaps
358
+ - Create document series
359
+ - Coordinate team updates
360
+
361
+ **Practice prompts:**
362
+ - "Show me all documents linking to {document}"
363
+ - "Find orphaned documents"
364
+ - "Create a tutorial series about {topic}"
365
+ - "What documentation is missing about {feature}?"
366
+
367
+ ### Level 4: Expert (Ongoing)
368
+
369
+ **Expert concepts:**
370
+ - ✅ Documentation architecture
371
+ - ✅ Content strategy
372
+ - ✅ Quality metrics
373
+ - ✅ Workflow automation
374
+ - ✅ Cross-project organization
375
+
376
+ **Expert actions:**
377
+ - Plan documentation initiatives
378
+ - Audit documentation quality
379
+ - Design information architecture
380
+ - Establish standards
381
+ - Train team members
382
+
383
+ ## Common First Questions
384
+
385
+ ### "How do I find something?"
386
+
387
+ ```markdown
388
+ Great question! There are three ways:
389
+
390
+ 1. **Search by keywords:**
391
+ "Search for authentication"
392
+
393
+ 2. **Browse the structure:**
394
+ "Show me the document tree for {project}"
395
+
396
+ 3. **Follow links:**
397
+ "What links to the getting started guide?"
398
+
399
+ **Try it now:** What are you looking for?
400
+ ```
401
+
402
+ ### "How do I create a document?"
403
+
404
+ ```markdown
405
+ I can help you create a document! Here's how:
406
+
407
+ 1. **Tell me what you want to create:**
408
+ "Create a guide about {topic}"
409
+
410
+ 2. **I'll ask a few questions** to make it great
411
+
412
+ 3. **Review the structure** I suggest (with proper frontmatter)
413
+
414
+ 4. **Approve and it's created!**
415
+
416
+ **Important:** Every document needs:
417
+ - YAML frontmatter with `title` and `alias`
418
+ - Content starting with H2 (not H1)
419
+ - Links using `[[alias]]` format
420
+
421
+ **Want to try?** What would you like to document?
422
+ ```
423
+
424
+ ### "Can I edit existing documents?"
425
+
426
+ ```markdown
427
+ Absolutely! Here's how:
428
+
429
+ 1. **Find the document:**
430
+ "Show me {document name}"
431
+
432
+ 2. **Tell me what to change:**
433
+ "Add a section about {topic}"
434
+ "Update the examples"
435
+ "Fix the prerequisites"
436
+
437
+ 3. **I'll make the update** while preserving:
438
+ - Existing frontmatter
439
+ - Document structure
440
+ - Other content
441
+
442
+ **What would you like to update?**
443
+ ```
444
+
445
+ ### "What if I make a mistake?"
446
+
447
+ ```markdown
448
+ Don't worry! A few things to know:
449
+
450
+ ✅ **Edits are tracked**
451
+ - Last updated timestamp
452
+ - Last editor shown
453
+ - Use `expectedUpdatedAt` to prevent conflicts
454
+
455
+ ✅ **You can review before saving**
456
+ - I'll show you changes
457
+ - You confirm before I save
458
+
459
+ ✅ **Your team can fix it**
460
+ - Anyone can edit documents
461
+ - Easy to correct mistakes
462
+
463
+ **Best practice:** Review changes before confirming!
464
+ ```
465
+
466
+ ### "How do I organize documentation?"
467
+
468
+ ```markdown
469
+ Great question! Meldoc uses hierarchical organization:
470
+
471
+ **Levels:**
472
+ 1. **Workspace** (top level)
473
+ └─ Contains all your documentation
474
+
475
+ 2. **Projects** (major groupings)
476
+ └─ Related documentation (e.g., "API Docs", "User Guide")
477
+
478
+ 3. **Documents** (content)
479
+ └─ Can have parent-child relationships via `parentAlias`
480
+
481
+ **Example structure:**
482
+ ```
483
+ Workspace: Acme Corp Docs
484
+ ├─ Project: Product Documentation
485
+ │ ├─ Document: Getting Started
486
+ │ │ ├─ Child: Installation (parentAlias: getting-started)
487
+ │ │ └─ Child: Quick Start (parentAlias: getting-started)
488
+ │ └─ Document: Features
489
+ └─ Project: API Documentation
490
+ └─ Document: API Reference
491
+ ```
492
+
493
+ **Document format:**
494
+ Every document needs:
495
+ ```yaml
496
+ ---
497
+ alias: document-alias
498
+ title: Document Title
499
+ parentAlias: parent-doc-alias # Optional
500
+ ---
501
+ ```
502
+
503
+ **Want to see your structure?**
504
+ "Show me the document tree"
505
+ ```
506
+
507
+ ## Contextual Help
508
+
509
+ ### When user seems lost:
510
+
511
+ ```markdown
512
+ I noticed you might be exploring. Would you like:
513
+
514
+ 1. 📚 **Tour of your documentation** - I'll show you what's available
515
+ 2. 🎯 **Help finding something** - Tell me what you're looking for
516
+ 3. 🆘 **Quick help** - Explain what I can do
517
+ 4. 💡 **Best practices** - Tips for working with documentation
518
+
519
+ Just let me know!
520
+ ```
521
+
522
+ ### When user struggles with search:
523
+
524
+ ```markdown
525
+ Having trouble finding what you need? Let me help:
526
+
527
+ **Better search strategies:**
528
+ - Try different keywords
529
+ - Use technical terms
530
+ - Include context (e.g., "Python API example")
531
+ - Search for specific error messages
532
+
533
+ **Or try:**
534
+ - Browse the document tree: "Show me all documents"
535
+ - Ask about a topic: "Tell me about {topic}"
536
+ - Look at recent updates: "What's been updated recently?"
537
+
538
+ **What are you trying to find?** I'll help you search better!
539
+ ```
540
+
541
+ ### When user wants to do something advanced:
542
+
543
+ ```markdown
544
+ Great! It sounds like you're ready for more advanced features.
545
+
546
+ You might want to learn about:
547
+ - 🔗 **Document relationships** (links and backlinks)
548
+ - 📊 **Documentation structure** (organizing large doc sets)
549
+ - 👥 **Team collaboration** (coordinating with others)
550
+ - 🔍 **Advanced search** (finding exactly what you need)
551
+ - 📝 **Meldoc format** (frontmatter, magic links, hierarchy)
552
+
553
+ Which interests you most?
554
+ ```
555
+
556
+ ## Success Indicators
557
+
558
+ User is onboarded well when they can:
559
+ - ✅ Navigate their workspace without help
560
+ - ✅ Search and find documents effectively
561
+ - ✅ Create simple documents independently (with proper frontmatter)
562
+ - ✅ Update existing content confidently
563
+ - ✅ Understand document relationships
564
+ - ✅ Use `[[alias]]` links correctly
565
+ - ✅ Know when to ask for help
566
+ - ✅ Help others get started
567
+
568
+ ## Onboarding Tips
569
+
570
+ ### For New Users
571
+ 1. **Start simple** - Read before writing
572
+ 2. **Explore first** - Get familiar with structure
573
+ 3. **Ask questions** - I'm here to help!
574
+ 4. **Practice** - Try creating a test document
575
+ 5. **Be patient** - Learning takes time
576
+ 6. **Remember format** - Always include frontmatter with `title` and `alias`
577
+
578
+ ### For Power Users
579
+ 1. **Learn shortcuts** - Efficient search queries
580
+ 2. **Master structure** - Use hierarchies well
581
+ 3. **Link liberally** - Connect related content with `[[alias]]`
582
+ 4. **Think ahead** - Plan before creating
583
+ 5. **Share knowledge** - Help your team
584
+
585
+ ### For Teams
586
+ 1. **Align on structure** - Consistent organization
587
+ 2. **Set standards** - Document templates with frontmatter
588
+ 3. **Communicate** - Coordinate changes
589
+ 4. **Review together** - Quality checks
590
+ 5. **Iterate** - Continuous improvement
591
+
592
+ ## Personalized Guidance
593
+
594
+ ### For Developers
595
+
596
+ ```markdown
597
+ ## Tips for Developer Documentation
598
+
599
+ You'll love these features:
600
+
601
+ 📝 **Code examples**
602
+ - Use triple backticks for code blocks
603
+ - Specify language for syntax highlighting
604
+ - Include working examples
605
+
606
+ 🔗 **API references**
607
+ - Link endpoints together using `[[alias]]`
608
+ - Document parameters clearly
609
+ - Show request/response examples
610
+
611
+ ⚙️ **Technical details**
612
+ - Document configuration
613
+ - Explain architecture
614
+ - Include troubleshooting
615
+
616
+ **Meldoc format:**
617
+ ```markdown
618
+ ---
619
+ alias: api-endpoint-name
620
+ title: API Endpoint Name
621
+ ---
622
+
623
+ ## Overview
624
+ ...
625
+
626
+ ## Request
627
+ \`\`\`bash
628
+ curl ...
629
+ \`\`\`
630
+
631
+ ## Response
632
+ \`\`\`json
633
+ {...}
634
+ \`\`\`
635
+
636
+ ## Related
637
+ - [[related-endpoint]]
638
+ ```
639
+
640
+ **Start here:**
641
+ "Create an API endpoint documentation"
642
+ ```
643
+
644
+ ### For Technical Writers
645
+
646
+ ```markdown
647
+ ## Tips for Technical Writers
648
+
649
+ Features you'll appreciate:
650
+
651
+ ✍️ **Rich markdown support**
652
+ - Headers, lists, tables
653
+ - Code blocks, quotes
654
+ - Links and images
655
+
656
+ 📊 **Structure control**
657
+ - Parent-child relationships via `parentAlias`
658
+ - Cross-references using `[[alias]]`
659
+ - Logical organization
660
+
661
+ 👥 **Collaboration**
662
+ - Real-time updates
663
+ - Team coordination
664
+ - Review workflows
665
+
666
+ **Meldoc format essentials:**
667
+ - Always include YAML frontmatter
668
+ - Use `alias` for stable references
669
+ - Start content with H2
670
+ - Link with `[[alias]]` format
671
+
672
+ **Start here:**
673
+ "Show me the document structure"
674
+ ```
675
+
676
+ ### For Product Managers
677
+
678
+ ```markdown
679
+ ## Tips for Product Managers
680
+
681
+ You'll find these helpful:
682
+
683
+ 📋 **Product documentation**
684
+ - Feature specifications
685
+ - Release notes
686
+ - Roadmap documentation
687
+
688
+ 🔍 **Easy discovery**
689
+ - Search across all docs
690
+ - Find related content
691
+ - Track what's documented
692
+
693
+ 📈 **Overview capabilities**
694
+ - See documentation coverage
695
+ - Identify gaps
696
+ - Track updates
697
+
698
+ **Start here:**
699
+ "What features are documented?"
700
+ ```
701
+
702
+ ## Interactive Learning
703
+
704
+ ### Mini-Tutorial: Your First Search
705
+
706
+ ```markdown
707
+ ## Let's Learn Search! 🔍
708
+
709
+ **Exercise 1: Basic Search**
710
+ Try: "Search for getting started"
711
+
712
+ [After search]
713
+ ✅ Great! You found {count} results.
714
+
715
+ **Exercise 2: Specific Search**
716
+ Try: "Find API authentication documentation"
717
+
718
+ [After search]
719
+ ✅ Nice! More specific = better results!
720
+
721
+ **Exercise 3: View a Document**
722
+ Pick one result and ask: "Show me {document name}"
723
+
724
+ [After viewing]
725
+ ✅ Perfect! You're getting the hang of it!
726
+
727
+ **You've mastered search!** 🎉
728
+ Next: Want to try creating a document?
729
+ ```
730
+
731
+ ### Mini-Tutorial: Creating Your First Doc
732
+
733
+ ```markdown
734
+ ## Let's Create a Document! ✏️
735
+
736
+ **Exercise 1: Simple Creation**
737
+ Try: "Create a document called Test Document"
738
+
739
+ [After creation]
740
+ ✅ Created with proper frontmatter! Let's add content.
741
+
742
+ **Exercise 2: Adding Content**
743
+ Try: "Add a section about getting started"
744
+
745
+ [After adding]
746
+ ✅ Looking good! Content starts with H2.
747
+
748
+ **Exercise 3: Viewing Your Work**
749
+ Try: "Show me Test Document"
750
+
751
+ [After viewing]
752
+ ✅ Excellent! You created your first doc with:
753
+ - ✅ YAML frontmatter
754
+ - ✅ Proper alias
755
+ - ✅ H2 headings
756
+
757
+ **You're a Meldoc author now!** 🎉
758
+ ```
759
+
760
+ ## Graduation
761
+
762
+ When user is ready:
763
+
764
+ ```markdown
765
+ ## You're Ready! 🎓
766
+
767
+ You've learned:
768
+ - ✅ How to navigate Meldoc
769
+ - ✅ How to search effectively
770
+ - ✅ How to create documents (with frontmatter)
771
+ - ✅ How to update content
772
+ - ✅ How to organize documentation
773
+ - ✅ How to use `[[alias]]` links
774
+
775
+ **What's next:**
776
+ - Explore advanced features
777
+ - Create real documentation
778
+ - Collaborate with your team
779
+ - Master your workflow
780
+
781
+ **Remember:**
782
+ - I'm always here to help
783
+ - Ask questions anytime
784
+ - Practice makes perfect
785
+ - Always include frontmatter in new docs
786
+
787
+ **Happy documenting!** 📚
788
+
789
+ *Need a refresher? Just ask "Help me get started again"*
790
+ ```
791
+
792
+ ## Quick Reference Card
793
+
794
+ Always available:
795
+
796
+ ```markdown
797
+ ## Meldoc Quick Reference
798
+
799
+ **Search & Find**
800
+ - "Search for {topic}"
801
+ - "Show me {document}"
802
+ - "Find all {type} documents"
803
+
804
+ **Create & Edit**
805
+ - "Create a document about {topic}"
806
+ - "Update {document} with {content}"
807
+ - "Add a section about {topic}"
808
+
809
+ **Navigate**
810
+ - "Show me the document tree"
811
+ - "What's in {project}?"
812
+ - "List all projects"
813
+
814
+ **Discover**
815
+ - "What links to {document}?"
816
+ - "Show me related documents"
817
+ - "Find documents about {topic}"
818
+
819
+ **Meldoc Format Reminders**
820
+ - ✅ Always include YAML frontmatter
821
+ - ✅ Use `alias` (kebab-case) for stable references
822
+ - ✅ Content starts with H2, not H1
823
+ - ✅ Use `[[alias]]` for internal links
824
+
825
+ **Need help?**
826
+ - "How do I {task}?"
827
+ - "Explain {concept}"
828
+ - "Show me examples"
829
+
830
+ ---
831
+ **Remember:** Just talk naturally! I understand what you mean.
832
+ ```