@meldocio/mcp-stdio-proxy 1.0.26 → 1.0.27

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