patientvibes-agents
A public catalog of skills, tools, and harnesses for AI agent work. Each entry's docs are pulled live from its source repo.
Skills
Tools
agent-tool-book-builder
devRenders Marker-OCR'd markdown into a typeset Kindle Scribe PDF (with annotation margins) plus an Obsidian-compatible markdown export. Handles chapters, images, blockquotes, figures.
agent-tool-figure-scanner
devScans source PDFs for figure / table / diagram references and produces a manifest of which were extracted and which are missing. Used by the kindle-pipeline harness as a pre-step before LLM proofreading.
agent-tool-llm-proofreader
devLLM-powered OCR proofreading agent. Deterministic pre-pass surfaces likely-issue regions; langchain-openai (via OpenRouter) verifies and proposes fixes; a separate verifier subagent reviews each fix before it's applied. Persistent memory of known false positives accumulates across runs in `~/.local/state/agent-tool-llm-proofreader/memory.json` (Linux/macOS) or `%LOCALAPPDATA%\agent-tool-llm-proofreader\memory.json` (Windows).
agent-tool-marker-cleanup
devThree deterministic CLIs for cleaning Marker OCR output before LLM proofreading. They run as a strip pipeline: `strip-marker-artifacts` → `strip-back-matter` → `clean-markdown`.
agent-tool-pdf-builder
devReportlab-based PDF builder library. Title pages, typography, margins, figure placeholders. Used as a library by `agent-tool-book-builder` (and as a smoke-test CLI for direct invocation).
agent-tool-pr-reviewer
devCLI that reviews the current git branch's diff against a base ref using a single Pydantic AI call. Emits a typed `findings.json` plus a human-readable `review-output.md` under `<repo>/.ai-review/runs/<timestamp>/`.
agent-tool-prose-quality
devProse quality analyzer. Computes sentence-length stats, lexical density, and other readable signals over markdown / plain text.
agent-tool-scrape-sources
devFetches web essays / articles as clean markdown with YAML frontmatter (title, author, source URL, fetch date). Used by the kindle-pipeline harness as a source ingestion stage.