knowledge-base-manager

daffy0208/ai-dev-standards · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/daffy0208/ai-dev-standards --skill knowledge-base-manager
0 commentsdiscussion
summary

Build and maintain high-quality knowledge bases for AI systems and human consumption.

skill.md

Knowledge Base Manager

Build and maintain high-quality knowledge bases for AI systems and human consumption.

Core Principle

Knowledge Base = Structured Information + Quality Curation + Accessibility

A knowledge base is not just a data dump—it's curated, validated, versioned information designed to answer questions and enable reasoning.


When to Use Knowledge Bases

Use Knowledge Bases When:

  • ✅ Need to answer factual questions consistently
  • ✅ Information changes frequently and needs version control
  • ✅ Multiple sources need to be unified and reconciled
  • ✅ Provenance and citation tracking is critical
  • ✅ Building AI systems that need grounded, verifiable information
  • ✅ Organizational knowledge needs to be preserved and searchable
  • ✅ Complex domain with interconnected concepts

Don't Use Knowledge Bases When:

  • ❌ Static documentation is sufficient (use docs + search)
  • ❌ No one will maintain/update it (knowledge rot guaranteed)
  • ❌ Simple FAQ covers all questions (<50 items)
  • ❌ Information doesn't change (static site faster/cheaper)
  • ❌ Team lacks resources for curation

Knowledge Base Types: Decision Framework

1. Document-Based Knowledge Base (RAG)

What it is: Collection of documents, chunked and embedded for semantic search

Best for:

  • Technical documentation
  • Support articles, FAQs
  • Policy documents
  • Research papers
  • Blog content
  • User manuals

Strengths:

  • Easy to add new documents
  • Preserves full context
  • Natural for text-heavy content

Weaknesses:

  • Hard to query relationships ("Who works where?")
  • Duplicate information across documents
  • Difficult to keep facts consistent

Use: rag-implementer skill + vector-database-mcp


2. Entity-Based Knowledge Base (Knowledge Graph)

What it is: Network of entities (people, places, things) connected by relationships

Best for:

  • Organizational charts
  • Product catalogs with relationships
  • Social networks
  • Recommendation systems
  • Fraud detection
  • Supply chain tracking

Strengths:

  • Excellent for "how are X and Y related?" queries
  • Consistent facts (one source of truth)
  • Powerful traversal ("friends of friends")

Weaknesses:

  • Upfront modeling required (ontology design)
  • Harder to add unstructured information
  • Learning curve for graph queries

Use: knowledge-graph-builder skill + graph-database-mcp


3. Hybrid Knowledge Base (RAG + Graph)

What it is: Documents for unstructured knowledge + Graph for structured entities/relationships

Best for:

  • Enterprise knowledge management
  • Research with citations and relationships
  • Medical systems (documents + patient/drug relationships)
  • Legal systems (cases + precedents + entities)
  • E-commerce (products + specs + relationships)

Strengths:

  • Best of both worlds
  • Flexible for different knowledge types
  • Rich querying capabilities

Weaknesses:

  • Most complex to build and maintain
  • Requires expertise in both RAG and graphs
  • Higher infrastructure costs

Use: Both rag-implementer + knowledge-graph-builder skills


Decision Tree: Which KB Type?

What kind of knowledge do you have?

├─ Mostly unstructured text (docs, articles, content)?
│  └─ Document-Based KB (RAG)
│     Use: rag-implementer skill
├─ Mostly structured entities with relationships?
│  └─ Entity-Based KB (Graph)
│     Use: knowledge-graph-builder skill
└─ Mix of both?
   └─ Hybrid KB (RAG + Graph)
      Use: Both skills + This skill for integration

6-Phase Knowledge Base Implementation

Phase 1: Knowledge Audit & Architecture

Goal: Understand what knowledge exists and how to structure it

Actions:

  1. Inventory existing knowledge sources

    • Internal: databases, documents, wikis, Slack, emails
    • External: public data, APIs, third-party sources
    • Tribal: SME interviews, recorded conversations
  2. Classify knowledge types

    • Factual: Verifiable facts ("Product X costs $50")
    • Procedural: How-to knowledge ("How to deploy")
    • Conceptual: Definitions and explanations
    • Relationship: Connections between entities
  3. Choose KB architecture

    • Document-based? Entity-based? Hybrid?
    • Decision: Use framework above
  4. Define knowledge schema

    • For documents: metadata fields (source, date, author, category)
    • For entities: ontology (entity types, relationship types, properties)

Validation:

  • All knowledge sources inventoried and prioritized
  • KB architecture chosen and justified
  • Schema defined and validated with users
  • Success metrics established

Phase 2: Knowledge Curation & Ingestion

Goal: Transform raw information into high-quality knowledge

Actions:

  1. Extract knowledge from sources

    • Automated: scraping, API ingestion, file parsing
    • Manual: expert input, annotation, validation
  2. Clean and normalize

    • Remove duplicates
    • Standardize formats
    • Fix inconsistencies
    • Enrich with metadata
  3. Structure knowledge

    • For documents: chunk intelligently (semantic boundaries)
    • For entities: extract entities, relationships, properties
  4. Add provenance

    • Source URL or reference
    • Last updated timestamp
    • Author/contributor
    • Confidence score (if applicable)

Curation Best Practices:

  • Single Source of Truth: One canonical answer per question
  • Deduplication: Merge similar knowledge entries
  • Conflict Resolution: When sources disagree, establish priority rules
  • Metadata Richness: More metadata = better filtering and search

Validation:

  • Knowledge extracted and structured
  • Quality metrics above threshold (accuracy >95%)
  • Provenance tracked for all entries
  • Sample queries return relevant results

Phase 3: Storage & Retrieval Setup

Goal: Implement technical infrastructure for knowledge access

Architecture Patterns:

For Document-Based KB:

// Vector database for semantic search
interface DocumentKB {
  store: 'Pinecone' | 'Weaviate' | 'pgvector'
  chunks: {
    content: string
    embedding: number[]
    metadata: {
      source: string
      title: string
      updated_at: string
      category: string
    }
  }[]
}

For Entity-Based KB:

// Graph database for relationship queries
interface EntityKB {
  store: 'Neo4j' | 'ArangoDB'
  nodes: {
    id: string
    type: 'Person' | 'Organization' | 'Product' | 'Concept'
    properties: Record<string, any>
  }[]
  relationships: {
    from: string
    to: string
    type: string
    properties: Record<string, any>
  }[]
}

For Hybrid KB:

// Both vector DB + graph DB
interface HybridKB {
  vectorDB: DocumentKB
  graphDB: EntityKB
  linker: {
    // Links documents to entities mentioned in them
    linkDocumentToEntities(docId: string): string[]
    // Links entities to documents that mention them
    linkEntityToDocuments(entityId: string): string[]
  }
}

Actions:

  1. Choose database(s)

    • Document: Pinecone, Weaviate, pgvector
    • Entity: Neo4j, ArangoDB
    • Hybrid: Both + linking layer
  2. Implement search/query layer

    • Vector similarity search (for documents)
    • Graph traversal (for entities)
    • Hybrid queries (combining both)
  3. Add caching and optimization

    • Cache frequent queries
    • Optimize for common access patterns

Validation:

  • Database deployed and accessible
  • Search/query functionality working
  • Performance meets requirements (<100ms for most queries)

Phase 4: Quality Control & Validation

Goal: Ensure knowledge base accuracy and reliability

Quality Metrics:

  1. Accuracy: % of correct answers to test questions
  2. Coverage: % of user questions answerable
  3. Freshness: Average age of knowledge
  4. Consistency: % of conflicts/contradictions
  5. Source Quality: % from authoritative sources

Validation Strategies:

1. Test Question Sets Create 100+ test questions with known correct answers:

interface TestQuestion {
  question: string
  expected_answer: string
  category: string
  difficulty: 'easy' | 'medium' | 'hard'
}

2. Human Review

  • Sample random knowledge entries
  • Subject matter expert validation
  • User feedback loops

3. Automated Checks

  • Duplicate Detection: Find near-identical entries
  • Conflict Detection: Find contradictory facts
  • Staleness Detection: Flag outdated information
  • Citation Validation: Verify sources still exist

4. Continuous Monitoring

interface KBHealthMetrics {
  accuracy_score: number // 0-100
  coverage_score: number // % questions answered
  freshness_score: number // avg days since update
  consistency_score: number // % no conflicts
  user_satisfaction: number // feedback rating
}

Actions:

  1. Run test question validation (target: >90% accuracy)
  2. Conduct human review (sample 10% of entries)
  3. Fix detected issues (duplicates, conflicts, staleness)
  4. Establish monitoring dashboards

Validation:

  • Accuracy >90% on test questions
  • Coverage >80% of user questions
  • <5% conflicting information
  • Monitoring dashboard operational

Phase 5: Versioning & Evolution

Goal: Track knowledge changes over time and enable rollback

Why Versioning Matters:

  • Knowledge changes (facts update, policies change)
  • Need audit trail (who changed what when)
  • Rollback capability (undo bad updates)
  • Historical queries ("What was policy on X in 2023?")

Versioning Strategies:

1. Snapshot Versioning

interface KnowledgeEntry {
  id: string
  content: string
  version: number
  created_at: string
  updated_at: string
  updated_by: string
  changelog: string
  previous_version?: string // ID of prior version
}

2. Event Sourcing

interface KnowledgeEvent {
  event_id: string
  entity_id: string
  event_type: 'created' | 'updated' | 'deleted'
  timestamp: string
  changes: {
    field: string
    old_value: any
    new_value: any
  }[]
  author
how to use knowledge-base-manager

How to use knowledge-base-manager on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add knowledge-base-manager
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/daffy0208/ai-dev-standards --skill knowledge-base-manager

The skills CLI fetches knowledge-base-manager from GitHub repository daffy0208/ai-dev-standards and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/knowledge-base-manager

Reload or restart Cursor to activate knowledge-base-manager. Access the skill through slash commands (e.g., /knowledge-base-manager) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.640 reviews
  • Chaitanya Patil· Dec 24, 2024

    We added knowledge-base-manager from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Tariq Li· Dec 20, 2024

    Solid pick for teams standardizing on skills: knowledge-base-manager is focused, and the summary matches what you get after install.

  • Advait Huang· Dec 12, 2024

    knowledge-base-manager has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Yuki Perez· Dec 12, 2024

    Keeps context tight: knowledge-base-manager is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Piyush G· Nov 15, 2024

    knowledge-base-manager reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Aarav Khanna· Nov 11, 2024

    Registry listing for knowledge-base-manager matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Aarav Kapoor· Nov 3, 2024

    knowledge-base-manager is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Tariq Bhatia· Oct 22, 2024

    knowledge-base-manager reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Shikha Mishra· Oct 6, 2024

    knowledge-base-manager is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Isabella Desai· Oct 2, 2024

    Useful defaults in knowledge-base-manager — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 40

1 / 4