@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,441 @@
1
+ ---
2
+ name: collaboration
3
+ description: Expert at facilitating team collaboration on documentation in Meldoc. Use when multiple people are working on docs, managing reviews, coordinating updates, planning documentation projects, or resolving conflicts.
4
+ ---
5
+
6
+ Expert at facilitating team collaboration on documentation in Meldoc.
7
+
8
+ ## Collaboration Workflows
9
+
10
+ ### Coordinated Updates
11
+
12
+ When multiple people need to work on related docs:
13
+
14
+ 1. **Check current structure:**
15
+ ```javascript
16
+ docs_tree({ projectId: "..." })
17
+ ```
18
+
19
+ 2. **Identify who owns what:**
20
+ - Use `docs_get` to see last updated info
21
+ - Check backlinks to see dependencies
22
+ - Plan non-conflicting areas
23
+
24
+ 3. **Suggest work division:**
25
+
26
+ ```
27
+ Person A: Update sections 1-3
28
+ Person B: Update sections 4-6
29
+ Person C: Create new examples
30
+ ```
31
+
32
+ 4. **Track changes:**
33
+ - Use `expectedUpdatedAt` for optimistic locking
34
+ - Review links between documents
35
+ - Ensure consistency
36
+
37
+ ### Documentation Reviews
38
+
39
+ Help teams review documentation:
40
+
41
+ 1. **Find recent changes:**
42
+
43
+ ```javascript
44
+ docs_list({ projectId: "..." })
45
+ // Sort by updated date
46
+ ```
47
+
48
+ 2. **Check for issues:**
49
+ - Broken links (docs that were deleted)
50
+ - Orphaned documents (no parent, no backlinks)
51
+ - Duplicate content
52
+
53
+ 3. **Suggest improvements:**
54
+ - Missing links (should use `[[alias]]` magic links)
55
+ - Unclear structure
56
+ - Needed clarifications
57
+
58
+ ### Documentation Planning
59
+
60
+ When planning a documentation project:
61
+
62
+ 1. **Assess current state:**
63
+
64
+ ```javascript
65
+ docs_tree({ projectId: "..." })
66
+ docs_search({ query: "related topic" })
67
+ ```
68
+
69
+ 2. **Identify gaps:**
70
+ - Missing documents
71
+ - Under-documented areas
72
+ - Outdated content
73
+
74
+ 3. **Create roadmap:**
75
+
76
+ ```markdown
77
+ ## Documentation Roadmap
78
+
79
+ ### Phase 1: Foundation
80
+ - [ ] Update getting started guide
81
+ - [ ] Create API overview
82
+ - [ ] Add code examples
83
+
84
+ ### Phase 2: Deep Dives
85
+ - [ ] Write advanced tutorials
86
+ - [ ] Document edge cases
87
+ - [ ] Add troubleshooting guides
88
+
89
+ ### Phase 3: Polish
90
+ - [ ] Review all links
91
+ - [ ] Add diagrams
92
+ - [ ] Improve navigation
93
+ ```
94
+
95
+ 4. **Assign tasks:**
96
+ - Based on expertise
97
+ - Considering dependencies
98
+ - With deadlines
99
+
100
+ ## Team Patterns
101
+
102
+ ### Pattern: Documentation Sprint
103
+
104
+ 1. **Day 1: Planning**
105
+ - Review current docs
106
+ - List needed updates
107
+ - Assign sections
108
+ - Set standards
109
+
110
+ 2. **Day 2-4: Writing**
111
+ - Create/update docs with proper frontmatter
112
+ - Review each other's work
113
+ - Maintain consistency
114
+
115
+ 3. **Day 5: Review & Polish**
116
+ - Check all links (use `[[alias]]` format)
117
+ - Ensure consistency
118
+ - Fix issues
119
+ - Publish
120
+
121
+ ### Pattern: Continuous Documentation
122
+
123
+ 1. **With each feature:**
124
+ - Developer creates draft with `workflow: "draft"`
125
+ - Technical writer polishes
126
+ - Reviewer approves
127
+ - Link to related docs using `[[alias]]`
128
+
129
+ 2. **Weekly review:**
130
+ - Check for gaps
131
+ - Update outdated content
132
+ - Improve clarity
133
+
134
+ 3. **Monthly audit:**
135
+ - Review entire doc tree
136
+ - Plan major updates
137
+ - Archive obsolete docs
138
+
139
+ ### Pattern: Expert Review Cycle
140
+
141
+ 1. **Draft creation:**
142
+
143
+ ```javascript
144
+ docs_create({
145
+ title: "Feature Name",
146
+ alias: "feature-name",
147
+ contentMd: `---
148
+ alias: feature-name
149
+ title: Feature Name
150
+ workflow: draft
151
+ ---
152
+
153
+ ## Overview
154
+
155
+ Initial content...
156
+ `,
157
+ workflow: "draft"
158
+ })
159
+ ```
160
+
161
+ 2. **Expert review:**
162
+ - Subject matter expert reviews
163
+ - Suggests changes
164
+ - Adds technical details
165
+
166
+ 3. **Editorial polish:**
167
+ - Technical writer improves clarity
168
+ - Fixes formatting
169
+ - Adds examples
170
+
171
+ 4. **Publication:**
172
+
173
+ ```javascript
174
+ docs_update({
175
+ docId: "...",
176
+ contentMd: `---
177
+ alias: feature-name
178
+ title: Feature Name
179
+ workflow: published
180
+ ---
181
+
182
+ ## Overview
183
+
184
+ Final content...
185
+ `
186
+ })
187
+ ```
188
+
189
+ ## Conflict Resolution
190
+
191
+ ### Handling Simultaneous Edits
192
+
193
+ When two people edit the same document:
194
+
195
+ ```javascript
196
+ // Person A tries to update
197
+ docs_update({
198
+ docId: "123",
199
+ contentMd: "New content from A...",
200
+ expectedUpdatedAt: "2025-01-01T10:00:00Z"
201
+ })
202
+
203
+ // Error: Document was updated since you loaded it
204
+
205
+ // Solution:
206
+ // 1. Get latest version
207
+ docs_get({ docId: "123" })
208
+
209
+ // 2. Merge changes manually or
210
+ // 3. Decide whose changes take priority
211
+ // 4. Update with new expectedUpdatedAt
212
+ ```
213
+
214
+ **Best practice:** Communicate before editing!
215
+
216
+ ### Managing Different Perspectives
217
+
218
+ When team members have different views:
219
+
220
+ 1. **Document both perspectives:**
221
+
222
+ ```markdown
223
+ ---
224
+ alias: feature-approaches
225
+ title: Feature Approaches
226
+ ---
227
+
228
+ ## Approach A
229
+ [Description of approach A]
230
+
231
+ ## Approach B
232
+ [Description of approach B]
233
+
234
+ ## Team Decision
235
+ We chose Approach A because [reasons]
236
+ ```
237
+
238
+ 2. **Link to discussions:**
239
+ - Add links to Slack threads
240
+ - Reference meeting notes
241
+ - Link to decision documents using `[[alias]]`
242
+
243
+ 3. **Maintain history:**
244
+ - Don't delete old approaches
245
+ - Explain why changed
246
+ - Keep for reference
247
+
248
+ ## Communication Helpers
249
+
250
+ ### Documentation Status Updates
251
+
252
+ Generate status for team:
253
+
254
+ ```markdown
255
+ ## Documentation Status - Week of [Date]
256
+
257
+ ### Completed
258
+ - ✅ Updated API Reference
259
+ - ✅ Created Getting Started Guide
260
+ - ✅ Fixed 12 broken links
261
+
262
+ ### In Progress
263
+ - 🔄 Authentication Tutorial (John)
264
+ - 🔄 Advanced Features Guide (Sarah)
265
+
266
+ ### Planned
267
+ - 📋 Troubleshooting Guide
268
+ - 📋 Migration Guide
269
+ - 📋 FAQ Updates
270
+
271
+ ### Issues
272
+ - ⚠️ Need review: Database Schema Doc
273
+ - ⚠️ Missing: Deployment Guide
274
+ ```
275
+
276
+ ### Review Requests
277
+
278
+ Format review requests:
279
+
280
+ ```markdown
281
+ ## Review Needed: [Document Title]
282
+
283
+ **Document:** [[doc-alias]]
284
+ **Author:** [Name]
285
+ **Changes:**
286
+ - Added section on [topic]
287
+ - Updated examples
288
+ - Fixed typos
289
+
290
+ **Review focus:**
291
+ - Technical accuracy of new section
292
+ - Clarity of examples
293
+ - Completeness
294
+
295
+ **Deadline:** [Date]
296
+
297
+ Please use `docs_get` to review and provide feedback here.
298
+ ```
299
+
300
+ ### Documentation Metrics
301
+
302
+ Track documentation health:
303
+
304
+ ```javascript
305
+ // Get all docs
306
+ docs_list({ projectId: "..." })
307
+
308
+ // Analyze:
309
+ // - Total document count
310
+ // - Recently updated (last 30 days)
311
+ // - Orphaned docs (no backlinks)
312
+ // - Highly connected docs (many backlinks)
313
+ // - Documents needing review
314
+
315
+ // Present summary:
316
+ ```
317
+
318
+ ```markdown
319
+ ## Documentation Health Report
320
+
321
+ **Total Documents:** 156
322
+ **Updated This Month:** 23
323
+ **Needs Attention:** 8
324
+
325
+ ### Top Connected Documents
326
+ 1. [[getting-started]] (45 backlinks)
327
+ 2. [[api-reference]] (38 backlinks)
328
+ 3. [[configuration-guide]] (29 backlinks)
329
+
330
+ ### Orphaned Documents
331
+ - Old Migration Guide (no backlinks)
332
+ - Deprecated API v1 Docs (no backlinks)
333
+
334
+ ### Recommendations
335
+ - Archive deprecated docs
336
+ - Update orphaned docs or delete
337
+ - Create links to recently added docs using `[[alias]]`
338
+ ```
339
+
340
+ ## Best Practices
341
+
342
+ ### Communication
343
+
344
+ - **Before editing:** Check who last updated
345
+ - **During editing:** Communicate with team
346
+ - **After editing:** Notify relevant people
347
+ - **Use comments:** In Meldoc or external tools
348
+
349
+ ### Standards
350
+
351
+ Establish and follow:
352
+
353
+ - Naming conventions (kebab-case aliases)
354
+ - Document structure templates (with frontmatter)
355
+ - Style guide
356
+ - Review process
357
+ - Update frequency
358
+
359
+ ### Tools Integration
360
+
361
+ Coordinate with:
362
+
363
+ - Slack for notifications
364
+ - Jira for task tracking
365
+ - GitHub for code-doc sync
366
+ - Calendar for deadlines
367
+
368
+ ## Team Roles
369
+
370
+ ### Documentation Owner
371
+
372
+ - Maintains overall structure
373
+ - Enforces standards
374
+ - Resolves conflicts
375
+ - Plans initiatives
376
+
377
+ ### Technical Writers
378
+
379
+ - Polish content
380
+ - Improve clarity
381
+ - Maintain consistency
382
+ - Create templates
383
+
384
+ ### Subject Matter Experts
385
+
386
+ - Provide technical accuracy
387
+ - Review for correctness
388
+ - Add deep insights
389
+ - Validate examples
390
+
391
+ ### Reviewers
392
+
393
+ - Check clarity
394
+ - Test procedures
395
+ - Verify links (ensure `[[alias]]` format)
396
+ - Suggest improvements
397
+
398
+ ## Common Scenarios
399
+
400
+ ### "Someone deleted my work"
401
+
402
+ 1. Check document history (if available)
403
+ 2. Use `docs_get` to see current state
404
+ 3. Compare with your version
405
+ 4. Communicate with team
406
+ 5. Merge changes if needed
407
+
408
+ ### "Which document should I update?"
409
+
410
+ 1. Search for the topic
411
+ 2. Check document tree
412
+ 3. Find most relevant doc
413
+ 4. Check backlinks (how connected?)
414
+ 5. Update primary doc, link from others using `[[alias]]`
415
+
416
+ ### "How do I organize this?"
417
+
418
+ 1. Review existing structure
419
+ 2. Find similar document groups
420
+ 3. Create parent if needed (with proper frontmatter)
421
+ 4. Link related docs using `[[alias]]`
422
+ 5. Update tree as you go
423
+
424
+ ### "Need to archive old docs"
425
+
426
+ 1. Identify obsolete content
427
+ 2. Check backlinks (anything still referencing?)
428
+ 3. Update links to point to new docs using `[[alias]]`
429
+ 4. Mark as deprecated or delete
430
+ 5. Notify team
431
+
432
+ ## Success Metrics
433
+
434
+ Great collaboration shows:
435
+
436
+ - Regular updates from multiple people
437
+ - Few conflicts/overwrites
438
+ - Well-connected document graph (using `[[alias]]` links)
439
+ - Quick review turnaround
440
+ - Consistent style across docs
441
+ - High team satisfaction