M

Master Information Suite

Comprehensive skill designed for senior, information, security, manager. Includes structured workflows, validation checks, and reusable patterns for enterprise communication.

SkillClipticsenterprise communicationv1.0.0MIT
0 views0 copies

Master Information Suite

A comprehensive skill for creating structured information documents โ€” covering knowledge base articles, internal wikis, SOPs, runbooks, onboarding guides, and technical documentation with consistent formatting and progressive disclosure.

When to Use This Skill

Choose Master Information Suite when you need to:

  • Create knowledge base articles for internal or customer-facing use
  • Write standard operating procedures (SOPs) with step-by-step instructions
  • Build onboarding documentation for new team members
  • Structure runbooks for operational procedures
  • Organize complex information with progressive disclosure

Consider alternatives when:

  • You need API reference documentation (use an API docs skill)
  • You need marketing content (use a content writing skill)
  • You need code documentation (use a code documentation skill)

Quick Start

# Create a knowledge base article claude "Write a knowledge base article for our support team explaining how to troubleshoot user login failures, including common causes and step-by-step resolution."
# Troubleshooting User Login Failures **Audience**: Support Team (Tier 1) **Last Updated**: 2024-12-15 **Estimated Resolution Time**: 5-15 minutes ## Quick Diagnosis | Symptom | Likely Cause | Jump To | |---------------------------|-----------------------|------------------| | "Invalid credentials" | Wrong password | ยง1 Password Reset| | "Account locked" | Too many attempts | ยง2 Account Unlock| | Blank page after login | Session/cookie issue | ยง3 Session Fix | | "Account not found" | Wrong email/SSO mismatch | ยง4 Account Lookup| | 2FA code rejected | Time sync issue | ยง5 2FA Reset | ## ยง1. Password Reset 1. Verify the user's email in the admin panel 2. Confirm the account exists and is active 3. Send password reset link: Admin โ†’ Users โ†’ Reset Password 4. Ask user to check spam folder if not received 5. If link doesn't arrive after 5 min, check email logs ## ยง2. Account Unlock 1. Navigate to Admin โ†’ Users โ†’ Search by email 2. Check "Failed Login Attempts" counter 3. If counter > 5, click "Unlock Account" 4. Advise user to reset password for security 5. If account locks repeatedly, check for brute force

Core Concepts

Document Types and Templates

Document TypePurposeStructure
Knowledge BaseAnswer specific questionsProblem โ†’ Solution โ†’ Steps
SOPStandardize repeatable processesPurpose โ†’ Steps โ†’ Validation
RunbookGuide operational proceduresTrigger โ†’ Steps โ†’ Rollback
Onboarding GuideRamp up new team membersDay 1 โ†’ Week 1 โ†’ Month 1
FAQAddress common questionsQ&A grouped by topic
Decision MatrixGuide complex decisionsCriteria โ†’ Options โ†’ Scores

Progressive Disclosure Pattern

## Structuring Information by Depth ### Level 1: Quick Answer (30 seconds) Summary table or one-paragraph answer for experts who just need a reminder. ### Level 2: Step-by-Step (5 minutes) Numbered procedure for competent users who need the full workflow but not explanation. ### Level 3: Deep Explanation (15+ minutes) Background context, reasoning, edge cases, and troubleshooting for learners or complex situations. ## Example: "How to deploy to production" ### Level 1 (Quick Reference) `git tag v1.x.x && git push --tags` โ†’ CI deploys auto ### Level 2 (Full Steps) 1. Create release branch from main 2. Run test suite: `npm test` 3. Tag release: `git tag v1.2.3` 4. Push tag: `git push --tags` 5. Verify CI pipeline completes 6. Check health endpoint: `curl /api/health` ### Level 3 (With Context) [Full explanation of deployment pipeline architecture, rollback procedures, monitoring, common failures...]

SOP Template

# SOP: [Process Name] **Document ID**: SOP-[DEPT]-[NUMBER] **Version**: 1.0 **Effective Date**: YYYY-MM-DD **Owner**: [Role/Team] **Review Cycle**: [Quarterly/Annually] ## 1. Purpose [Why this procedure exists and what it ensures] ## 2. Scope [What's covered and what's not] ## 3. Prerequisites - [ ] Access to [system/tool] - [ ] Training completed: [course name] - [ ] Approval from: [role] ## 4. Procedure ### Step 1: [Action] - Detail with expected outcome - Screenshot or command if applicable ### Step 2: [Action] - Detail with expected outcome ## 5. Verification How to confirm the procedure was completed correctly ## 6. Exceptions When to deviate and who to escalate to ## 7. Revision History | Version | Date | Author | Changes | |---------|------------|----------|--------------------| | 1.0 | 2024-12-15 | J. Smith | Initial release |

Configuration

ParameterDescriptionExample
document_typeType of information document"knowledge_base" / "sop"
audienceTarget reader"support_tier1"
detail_levelDepth of explanation"quick" / "detailed"
include_tocInclude table of contentstrue
review_cycleDocument review frequency"quarterly"
output_formatDelivery format"markdown" / "confluence"

Best Practices

  1. Lead with a diagnostic table, not paragraphs โ€” Readers come to knowledge base articles with a specific symptom. A quick-diagnosis table that maps symptoms to solutions lets experts find their answer in seconds without reading the entire document.

  2. Write SOPs at the level of someone doing it for the second time โ€” First-timers need training, not an SOP. SOPs should be step-by-step references for competent people who need reminders on sequence and details. Skip lengthy explanations of why each step matters.

  3. Include expected outcomes at every step โ€” After each instruction, describe what the user should see if it worked correctly. "Click Deploy" is incomplete. "Click Deploy โ€” the status should change to 'Deploying' within 5 seconds" lets readers verify they're on track.

  4. Date every document and set review schedules โ€” Undated documentation is untrustworthy. Include a "Last Updated" date and a review schedule. If a document hasn't been reviewed in over a year, flag it prominently so readers know to verify accuracy.

  5. Use internal links aggressively โ€” Don't duplicate content across documents. Link to the canonical source. When the procedure for "resetting 2FA" is documented in one article, every other article that mentions 2FA should link there, not repeat the steps.

Common Issues

Documents become outdated within weeks of creation โ€” The product changes but nobody updates the docs. Assign document owners explicitly, integrate doc reviews into sprint retrospectives, and use automated checks (broken link detection, stale-date warnings) to surface outdated content.

SOPs are too detailed for daily use but too sparse for training โ€” This happens when one document tries to serve both audiences. Split into two versions: a concise reference checklist for daily operators and a detailed training guide for new staff. Link them to each other.

Knowledge base search returns irrelevant results โ€” Poor article titles, missing tags, and duplicated content degrade search quality. Standardize naming conventions, enforce keyword tagging, and regularly deduplicate articles that cover the same topic from different angles.

Community

Reviews

Write a review

No reviews yet. Be the first to review this template!

Similar Templates