Jesús Pérez 765841b18f
Some checks failed
Documentation Lint & Validation / Markdown Linting (push) Has been cancelled
Documentation Lint & Validation / Validate mdBook Configuration (push) Has been cancelled
Documentation Lint & Validation / Content & Structure Validation (push) Has been cancelled
Documentation Lint & Validation / Lint & Validation Summary (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
feat(capabilities): add vapora-capabilities crate with in-process executor dispatch
- New vapora-capabilities crate: CapabilitySpec, Capability trait, CapabilityRegistry
     (parking_lot RwLock), CapabilityLoader (TOML overrides), 3 built-ins
     (code-reviewer, doc-generator, pr-monitor), 22 tests
   - Move AgentDefinition to vapora-shared to break capabilities↔agents circular dep
   - Wire system_prompt into AgentExecutor via LLMRouter.complete_with_budget
   - AgentCoordinator: in-process task dispatch via DashMap<String, Sender<TaskAssignment>>
   - server.rs: bootstrap CapabilityRegistry + LLMRouter from env, spawn executors per capability
   - Landing page: 620 tests, 21 crates, Capability Packages feature box
   - docs: capability-packages feature guide, ADR-0037, CHANGELOG, SUMMARY
   EOF
2026-02-26 16:43:28 +00:00
..

mdBook Source Directory

This directory contains the mdBook source files for VAPORA documentation.

Contents

  • SUMMARY.md — Table of contents that mdBook uses to generate navigation
  • intro.md — Landing/introduction page for the documentation site

How It Works

  1. mdBook reads SUMMARY.md to build the navigation structure
  2. All links in SUMMARY.md reference markdown files in parent docs/ directory
  3. Running mdbook build generates static HTML in docs/book/
  4. Running mdbook serve starts a local development server

File Organization

src/
├── SUMMARY.md    (navigation index)
└── intro.md      (landing page)

../              (actual documentation files)
├── README.md
├── getting-started.md
├── setup/
├── architecture/
├── adrs/
└── ...

Relative Path Pattern

All links in this directory use relative paths to reference docs:

  • Same level: ../file.md
  • Subdirectory: ../folder/file.md
  • Parent level: ../../file.md

Example from SUMMARY.md:

- [Getting Started](../getting-started.md)
- [Setup Guide](../setup/setup-guide.md)

Building Documentation

From the docs/ directory:

# Build static site
mdbook build

# Serve locally (with auto-reload)
mdbook serve

# Clean build output
mdbook clean

Adding New Documentation

  1. Create markdown file in appropriate docs/ subdirectory
  2. Add entry to src/SUMMARY.md in the correct section
  3. Use relative paths: ../section/filename.md
  4. Run mdbook build to generate updated site

Example:

Add docs/tutorials/my-tutorial.md:

# In docs/src/SUMMARY.md

## Tutorials
- [My Tutorial](../tutorials/my-tutorial.md)

Theme Customization

Custom theme files located in docs/theme/:

  • index.hbs — HTML template
  • vapora-custom.css — Custom styles

To modify:

  1. Edit theme files
  2. Run mdbook build --no-create-missing to apply
  3. Check docs/book/ for output

For full documentation, see ../README.md