- .mcp.json: switch telegram-* args to relative path (scripts/telegram-mcp.sh) so the committed config no longer pins a single user's home directory - telegram-mcp.sh / regen_telegram_session.sh: drop hardcoded fallbacks for TELEGRAM_MCP_BIN / TELEGRAM_MCP_DIR; require them from .env with explicit error messages naming the missing variable - .env.example: document per-machine path variables and per-account session strings, with a warning not to copy sessions between devices (Telegram revokes the auth key when one session is used from two IPs) - CLAUDE.md: add a Bootstrap-on-a-new-machine section with the setup steps, the portability rationale, and a troubleshooting table for the common MCP / session failure modes Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> |
||
|---|---|---|
| .claude | ||
| base | ||
| docs | ||
| output/pdf | ||
| portfolio/temp | ||
| scripts | ||
| tailored | ||
| templates | ||
| tracking | ||
| .env.example | ||
| .gitignore | ||
| .mcp.json | ||
| CLAUDE.md | ||
| README.md | ||
| package.json | ||
| pnpm-lock.yaml | ||
README.md
CV-2026
Personal CV generation pipeline for Oleg Proskurin.
Pipeline
base/*.md -> output/html/*.html -> output/pdf/*.pdf
(Claude generates) (puppeteer renders)
Folder layout
| Path | Purpose |
|---|---|
base/ |
Master CV in Markdown (source of truth for content) |
base/reference/ |
Reference PDF that defines the visual style/format |
templates/ |
Shared HTML/CSS — used by every generated CV |
tailored/<company>/ |
Company-specific tailored versions (MD + HTML + PDF) |
tracking/ |
Applications, outreaches, communications log |
scripts/ |
Build tooling (PDF generator) |
output/html/ |
Generated HTML (transient, gitignored) |
output/pdf/ |
Generated PDFs (committed) |
Usage
Install once:
pnpm install
Generate PDF from an HTML file:
pnpm pdf output/html/oleg_proskurin_ai_engineer_fullstack_cv.html
# -> output/pdf/oleg_proskurin_ai_engineer_fullstack_cv.pdf
The HTML file should be generated by Claude from the Markdown source — see CLAUDE.md for the full flow and styling rules.
Workflows
- New base CV: drop a new
oleg_proskurin_<role>_cv.mdintobase/, ask Claude to generate the HTML, then runpnpm pdf. - Tailor for a company: ask Claude to create
tailored/<company>/cv.mdfrom the latest base, generate HTML, then PDF. - Track applications: append to
tracking/applications.mdandtracking/outreach.md.