Three bugs surfaced on the LIVRAISON.pdf test render: 1. **MD→HTML conversion** — host had no pandoc, no python-markdown, fell back to `npx marked < "$src"`. marked CLI 16.x ignores stdin and dumps its own cli.js source. Resulting PDF body = marked's binary source (`#!/usr/bin/env node`, `Marked CLI`, copyright). Fix: `npx --yes marked --gfm -i "$src"` (file path via -i, not stdin). 2. **Cover background** — original cream `#F5F0EB` + 8mm green stripe was washed out. Iterated to white-pure bg with subtle radial sage/forest tints, black-deep title, green-forest accents (eyebrow, meta labels, footer, border). Solid green-dark tried first then rejected (too heavy for long client-facing doc). 3. **Default logo** — SVG `logo-horizontal.svg` rendered cream-toned, blended into bg. Switched LOGO_URL default to `https://zenquality.fr/assets/logo-horizontal-1024.png`. Also added test-artifact gitignore rules for LIVRAISON.* / HANDOVER.* project-local renders. Verified: regenerated LIVRAISON.pdf → 164 KB, 19 pages, full content rendered, white cover with black title + green-forest accents + visible PNG logo. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
115 lines
2.3 KiB
Plaintext
115 lines
2.3 KiB
Plaintext
# ── claude-config repo ignores ──
|
|
|
|
# GStack skill symlinks — auto-created by gstack setup
|
|
# Only the gstack/ dir itself + all symlinked skills inside skills/
|
|
skills/gstack
|
|
skills/autoplan
|
|
skills/benchmark
|
|
skills/browse
|
|
skills/canary
|
|
skills/careful
|
|
skills/checkpoint
|
|
skills/codex
|
|
skills/connect-chrome
|
|
skills/cso
|
|
skills/design-consultation
|
|
skills/design-html
|
|
skills/design-review
|
|
skills/design-shotgun
|
|
skills/devex-review
|
|
skills/document-release
|
|
skills/freeze
|
|
skills/gstack-upgrade
|
|
skills/guard
|
|
skills/health
|
|
skills/investigate
|
|
skills/land-and-deploy
|
|
skills/learn
|
|
skills/office-hours
|
|
skills/open-gstack-browser
|
|
skills/pair-agent
|
|
skills/plan-ceo-review
|
|
skills/plan-design-review
|
|
skills/plan-devex-review
|
|
skills/plan-eng-review
|
|
skills/qa
|
|
skills/qa-only
|
|
skills/retro
|
|
skills/review
|
|
skills/setup-browser-cookies
|
|
skills/setup-deploy
|
|
skills/ship
|
|
skills/unfreeze
|
|
skills/benchmark-models
|
|
skills/context-restore
|
|
skills/context-save
|
|
skills/make-pdf
|
|
skills/plan-tune
|
|
|
|
# Emil Design Engineering skill symlink — auto-created by link.sh
|
|
skills/emil-design-eng
|
|
|
|
# External skills installed via `npx skills add` — auto-created by link.sh
|
|
skills/darwin-skill
|
|
skills/find-skills
|
|
|
|
# Staging area used by lib/toggle-external.sh when disabling a tool
|
|
skills-disabled/
|
|
|
|
# Caveman runtime hook files — deployed by caveman hooks/install.sh into
|
|
# ~/.claude/hooks/ (which is a symlink to this repo's hooks/), so they
|
|
# materialize here. They are user-scope state, not repo source.
|
|
hooks/caveman-activate.js
|
|
hooks/caveman-config.js
|
|
hooks/caveman-mode-tracker.js
|
|
hooks/caveman-stats.js
|
|
hooks/caveman-statusline.sh
|
|
hooks/package.json
|
|
hooks/package-lock.json
|
|
hooks/node_modules/
|
|
|
|
# Local project config (per-machine, not shared)
|
|
.claude/*
|
|
!.claude/tasks/
|
|
!.claude/memory/
|
|
!.claude/audits/
|
|
!.claude/settings.json
|
|
# But keep local stuff ignored within .claude/
|
|
.claude/settings.local.json
|
|
.claude/agent-memory/
|
|
.claude/gstack/
|
|
|
|
# Caveman compress backups — generated by /caveman:compress, recoverable via git
|
|
*.original.md
|
|
|
|
# Generated outputs
|
|
graphify-out/
|
|
.ctx7-cache/
|
|
|
|
# /client-handover test artifacts (project-local renders)
|
|
LIVRAISON.md
|
|
LIVRAISON.html
|
|
LIVRAISON.pdf
|
|
HANDOVER.md
|
|
HANDOVER.html
|
|
HANDOVER.pdf
|
|
|
|
# Install logs
|
|
install-*.log
|
|
|
|
# Local secrets (MCP API keys etc.) — use .env.example as template
|
|
.env
|
|
.env.local
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editors
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.idea/
|
|
.vscode/
|