This directory contains the source files for the GitHub Pages documentation website.
The documentation is available at: https://kitproj.github.io/coding-context-cli/
index.md- Home page with overview and quick starttutorials/- Step-by-step learning guideshow-to/- Problem-oriented practical guidesreference/- Technical specificationsexplanation/- Conceptual documentation_config.yml- Jekyll configuration
To build and preview the site locally:
# Install Jekyll and dependencies
gem install bundler jekyll
# Create a Gemfile in the docs directory
cat > Gemfile << 'EOF'
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
gem 'just-the-docs'
EOF
# Install dependencies
bundle install
# Serve the site locally
bundle exec jekyll serve --source . --baseurl ""Then open http://localhost:4000 in your browser.
The site is automatically deployed to GitHub Pages when changes are pushed to the main branch via the .github/workflows/pages.yml workflow.
The site uses the Just the Docs theme, which provides excellent navigation and search capabilities. The theme is configured in _config.yml.
- Edit the Markdown files in this directory
- Test changes locally (optional)
- Commit and push to the repository
- Changes will be automatically deployed
The site uses the Just the Docs theme, which automatically generates navigation from frontmatter in each page (using nav_order, parent, and has_children fields).