Agent Skills for documentation management, Markdown export, and Python development workflows.
Works with Claude Code, Cursor, GitHub Copilot, Gemini CLI, OpenAI Codex, Goose, Roo Code, JetBrains Junie, and 25+ other agents.
npx skills add quickcall-dev/skills --agent claude-code --agent pi -g -y# All skills
npx skills add quickcall-dev/skills
# Just one
npx skills add quickcall-dev/skills --skill docnpx skills add is idempotent for symlinks. Re-run the quick command above to pull latest changes. If you installed before skillPath tracking existed, npx skills update will not work — use add instead.
# Add shell alias for one-command refreshalias skills-up='npx skills add quickcall-dev/skills --agent claude-code --agent pi -g -y'doc — structured documentation management
Create and manage structured documentation — experiments, plans, findings, checkpoints, research, learnings. Config-driven, parallel-safe.
Use when: starting new investigations, tracking experiment progress, writing plans, recording findings, or creating checkpoints at natural stopping points.
Commands:start, expt, plan, finding, ckpt, research, review, learn, list, status, resume
npx skills add quickcall-dev/skills --skill docmarkdown-to-pdf — Markdown to PDF export
Convert Markdown docs to PDF with robust Mermaid diagram rendering, consistent styling, page breaks, TOC support, and no browser print headers or footers.
Use when: exporting Markdown reports to PDF, especially when Mermaid diagrams render blank, oversized, colorless, or Chrome adds page headers/footers.
npx skills add quickcall-dev/skills --skill markdown-to-pdfpython-code-dev — class-first Python packages
Create importable src/<package>/ projects, adapt existing code, migrate notebooks, and verify tests/imports.
Use when: starting Python projects, structuring reusable modules, or graduating notebook logic.
Commands:new, adapt, migrate, verify
npx skills add quickcall-dev/skills --skill python-code-devpython-notebook-dev — reproducible numbered notebooks
Create deterministic notebooks/NNN-slug/ experiments, adapt notebooks, migrate logic to packages, and verify clean-kernel execution.
Use when: creating or editing # %% Python notebooks or running focused experiments.
Commands:new, adapt, migrate, verify
npx skills add quickcall-dev/skills --skill python-notebook-devEach skill follows the Agent Skills open standard — a SKILL.md file with YAML frontmatter and markdown instructions. Agents load the skill when it matches the task at hand.
skills/
├── doc/ # Documentation management
│ ├── SKILL.md
│ ├── config/defaults.yaml
│ ├── scripts/
│ └── references/
├── markdown-to-pdf/ # Markdown PDF export
├── python-code-dev/ # Class-first Python packages
└── python-notebook-dev/ # Reproducible numbered notebooks
archive/skills/ # Archived fleet skills, not installed by default
Tests live in test/ and are not part of the skills themselves. They validate skill wiring without calling real APIs.
# Run active skill tests (from repo root)
bash test/doc/run-all.sh skills/doc
bash test/python-skills/run-all.shApache-2.0 — see LICENSE