kiro-cli-notes

  +-[ kiro-cli-notes ]--------------------------------------+
  |  knowledge base search system for kiro cli developers  |
  |  semantic search . mcp . ollama . indexdb              |
  +---------------------------------------------------------+

internal documentation search system for kiro cli developers. semantic search across all kiro cli setup patterns, tutorials, and best practices. runs local via ollama – no external api keys required.


features


repository structure

knowledge-base/
  mcp-server/          -- mcp server with ollama embeddings
  export-pipeline/     -- content extraction and processing
  static-site/         -- web interface and search
  knowledge-bases/     -- organized content storage
video-content/         -- video transcripts and analysis
docs/                  -- setup documentation
configs/               -- configuration files
agents/                -- custom agent profiles
hooks/                 -- automation hooks
steering/              -- development standards
workflows/             -- sdlc workflows
tools/                 -- utility scripts
scripts/               -- setup and maintenance

quick start

complete setup:

./scripts/setup-knowledge-base.sh

basic kiro cli only:

./scripts/setup.sh

manual setup:

  1. set up the mcp server:
    cd knowledge-base/mcp-server
    npm install && npm run build
    ollama pull nomic-embed-text
    
  2. export content:
    cd ../export-pipeline
    npm install && node export-knowledge.js
    
  3. start the search interface:
    cd ../static-site
    ./start-server.sh
    

knowledge base stats


content sources

based on 10 professional kiro cli tutorial videos:

speakers: derek and kieran (aws), girish (cloud evangelist), jack carrington (blue collar coder)


video transcription agent – technical implementation for video processing

style guide: https://github.com/BryanChasko/heraldstack-mcp/blob/main/STYLE_GUIDE.md