Adds a full MkDocs documentation site under docs/ with Material theme. Getting Started: installation walkthrough, 7-step first-run wizard guide, Docker Compose profile reference with GPU memory guidance and preflight.py description. User Guide: job discovery (search profiles, custom boards, enrichment), job review (sorting, match scores, batch actions), apply workspace (cover letter gen, PDF export, mark applied), interviews (kanban stages, company research auto-trigger, survey assistant), email sync (IMAP, Gmail App Password, classification labels, stage auto-updates), integrations (all 13 drivers with tier requirements), settings (every tab documented). Developer Guide: contributing (dev env setup, code style, branch naming, PR checklist), architecture (ASCII layer diagram, design decisions), adding scrapers (full scrape() interface, registration, search profile config, test patterns), adding integrations (IntegrationBase full interface, auto- discovery, tier gating, test patterns), testing (patterns, fixtures, what not to test). Reference: tier system (full FEATURES table, can_use/tier_label API, dev override, adding gates), LLM router (backend types, complete() signature, fallback chains, vision routing, __auto__ resolution, adding backends), config files (every file with field-level docs and gitignore status). Also adds CONTRIBUTING.md at repo root pointing to the docs site.
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
site_name: Peregrine
|
|
site_description: AI-powered job search pipeline
|
|
site_author: Circuit Forge LLC
|
|
site_url: https://docs.circuitforge.io/peregrine
|
|
repo_url: https://git.circuitforge.io/circuitforge/peregrine
|
|
repo_name: circuitforge/peregrine
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: default
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- navigation.expand
|
|
- navigation.top
|
|
- search.suggest
|
|
- search.highlight
|
|
- content.code.copy
|
|
|
|
markdown_extensions:
|
|
- admonition
|
|
- pymdownx.details
|
|
- pymdownx.superfences
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.tabbed:
|
|
alternate_style: true
|
|
- tables
|
|
- toc:
|
|
permalink: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Getting Started:
|
|
- Installation: getting-started/installation.md
|
|
- First-Run Wizard: getting-started/first-run-wizard.md
|
|
- Docker Profiles: getting-started/docker-profiles.md
|
|
- User Guide:
|
|
- Job Discovery: user-guide/job-discovery.md
|
|
- Job Review: user-guide/job-review.md
|
|
- Apply Workspace: user-guide/apply-workspace.md
|
|
- Interviews: user-guide/interviews.md
|
|
- Email Sync: user-guide/email-sync.md
|
|
- Integrations: user-guide/integrations.md
|
|
- Settings: user-guide/settings.md
|
|
- Developer Guide:
|
|
- Contributing: developer-guide/contributing.md
|
|
- Architecture: developer-guide/architecture.md
|
|
- Adding a Scraper: developer-guide/adding-scrapers.md
|
|
- Adding an Integration: developer-guide/adding-integrations.md
|
|
- Testing: developer-guide/testing.md
|
|
- Reference:
|
|
- Tier System: reference/tier-system.md
|
|
- LLM Router: reference/llm-router.md
|
|
- Config Files: reference/config-files.md
|