make-pdf

Solid

Generate professional PDFs from code, markdown, or HTML in the current repository. Supports cover pages, tables of contents, watermarks, custom margins, and page sizes.

Data & Documents 5 stars 0 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
26
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

## 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 binary ```bash # Check environment override first, then vibestack repo path as fallback P="${MAKE_PDF_BIN:-}" if [ -z "$P" ]; then _TVIBE_PDF="$HOME/.claude/skills/vibestack/make-pdf/dist/pdf" [ -x "$_TVIBE_PDF" ] && P="$_TVIBE_PDF" fi [ -n "$P" ] && echo "FOUND: $P" || echo "NOT_FOUND" ``` If `NOT_FOUND`, stop and tell the user: > make-pdf binary not found. The binary must be built from the vibestack repo. > Run: `cd ~/.claude/skills/vibestack && bun install && bun run build:make-pdf` > 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 the user's input t...

Details

Author
timurgaleev
Repository
timurgaleev/vibestack
Created
3 months ago
Last Updated
1 weeks ago
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category