← ClaudeAtlas

make-pdflisted

Generate professional PDFs from code, markdown, or HTML in the current repository. Supports cover pages, tables of contents, watermarks, custom margins, and page sizes.
timurgaleev/vibestack · ★ 6 · Data & Documents · score 79
Install: claude install-skill timurgaleev/vibestack
## When to invoke Use when asked to "make pdf", "generate pdf", "export to pdf", "create pdf report", or "pdf preview". ## Preamble ```bash eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)" 2>/dev/null || SLUG="unknown" _LEARN_FILE="${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl" if [ -f "$_LEARN_FILE" ]; then _LEARN_COUNT=$(wc -l < "$_LEARN_FILE" 2>/dev/null | tr -d ' ') echo "LEARNINGS: $_LEARN_COUNT entries loaded" if [ "$_LEARN_COUNT" -gt 5 ] 2>/dev/null; then ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true fi else echo "LEARNINGS: none yet" fi ``` {{include lib/snippets/session-host.md}} {{include lib/snippets/decision-brief.md}} {{include lib/snippets/working-protocols.md}} {{include lib/snippets/state-protocols.md}} ## Step 0: Find the make-pdf renderer ```bash # Env override first, then the launcher installed with this skill (resolves # the repo's compiled binary or runs the CLI on bun). P="${MAKE_PDF_BIN:-${CLAUDE_SKILL_DIR:-$HOME/.claude/skills/make-pdf}/bin/vibe-make-pdf}" [ -x "$P" ] && "$P" version >/dev/null 2>&1 && echo "FOUND: $P" || echo "NOT_FOUND" ``` If `NOT_FOUND`, stop and tell the user: > make-pdf renderer not found. It ships with the vibestack repo. > Run: `cd ~/data/vibestack && bun install && bun run build:make-pdf && ./install` > Or set `$MAKE_PDF_BIN` to the path of an existing `make-pdf` binary. > > After building, re-run `/make-pdf`. --- ## Step 1: Detect intent Parse