All entries

10 entries across 3 kinds.

Name Kind Status Description
agent-harness-kindle-pipeline harness dev Orchestrator for the Kindle Scribe pipeline. Subprocess-calls each agent-tool-* CLI in sequence per book listed in `books.json`. Source PDF -> Marker OCR -> figure scan -> strip pipeline (back-matter, marker-artifacts, clean-markdown) -> LLM proofread -> book-builder PDF + Obsidian export.
pr-review-tools skill dev Chris Moore's personal Claude Code plugin marketplace.
agent-tool-book-builder tool dev Renders 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 tool dev Scans 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 tool dev LLM-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 tool dev Three 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 tool dev Reportlab-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 tool dev CLI 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 tool dev Prose quality analyzer. Computes sentence-length stats, lexical density, and other readable signals over markdown / plain text.
agent-tool-scrape-sources tool dev Fetches 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.