Are you the author? Sign in to claim
Reusable Claude Code skills: deck-builder (polished .pptx decks), review-contrib (safe PR/fork review), autocli-password
A collection of Claude Code skills, cleaned up for public reuse. Each one is self-contained, dependency-light, and softcoded so it works on any project.
A skill is a folder with a
SKILL.md(instructions Claude reads) plus optional helper scripts. Claude loads it automatically when your task matches the skill'sdescription— you don't call it by name. See the skills docs.
Browsing with an AI? Point it at skills.json — a machine-readable index of every
skill (summary, when to use / when to skip, deps, triggers, relationships) so it can recommend the
right one. Humans: use the chooser below.
| Your situation | Skill |
|---|---|
| "Build / redesign / de-clutter a slide deck" | deck-builder |
| "Someone sent me a commit/branch/PR — review and merge it safely" | review-contrib |
| "I want to contribute a clean PR to a repo I don't maintain" | contribuer |
| "This command needs a password only I know, and I don't want to paste it" | autocli-password |
"Get my secrets out of .env / pick & wire up a password manager" | vault-secrets |
| "Continue this work on another machine (VPS, laptop)" | handoff |
They split into three themes — documents, collaboration (PRs), secrets — plus a machine-to-machine handoff. Two pairs are designed to face each other:
COLLABORATION SECRETS
review-contrib ⇄ contribuer autocli-password ⇄ vault-secrets
(maintainer) (contributor) (one interactive secret) (a whole vault, replaces .env)
Build or restructure polished, on-brand PowerPoint (.pptx) decks programmatically. Encodes hard
layout/design rules (fill-the-space, assertion titles, one-idea-per-slide, readable type floors,
section-rhythm backgrounds), embeds true vector SVG icons, and self-verifies with silent audits + a
render-to-PNG check before handing back. Theme-agnostic.
.pptx (the base pptx skill covers that).python-pptx, Pillow); rsvg-convert for icons; LibreOffice for the faithful render.Audit, test and merge a collaborator's commit / branch / PR safely — before it touches main. A
deterministic pipeline: discover the commit (fork/branch/PR), conflict-audit with merge-tree,
review in an isolated git worktree, run the repo's validation gate, delegate a code review to a
sub-agent, manually test, then merge only on approval.
main is production.git (2.38+) and the gh CLI.Prepare a clean, adoptable PR to a repo you don't maintain. The contributor-side mirror of
review-contrib: sync the fork, branch off upstream/main, find and respect the project's immutable
rules & conventions, pass its validation gate, and open a small reviewable PR — so whatever the
reviewer checks, you did it first.
git and the gh CLI.Run a CLI command that needs a secret only the user knows — without pasting it. Claude runs the
command; a native hidden-input dialog pops up; the value flows straight into the command's
environment. The secret stays in RAM — never in the chat, shell history, or on disk. Optional
ssh-agent-style RAM cache to avoid retyping.
sudo step)..env → use vault-secrets.Choose & configure a queryable secrets manager, and use it in place of .env. A provider-agnostic
façade (vault.sh) over Bitwarden, 1Password, pass, KeePassXC, Doppler, Infisical: store a secret
(masked input, never pasted), read one, or inject a whole set into a command at runtime — so you can
delete the plaintext .env.
.env, or help picking/wiring a password manager into scripts/CI.jq).Hand a Claude Code session between machines over git. Transports the code (a WIP commit on a safe
branch) + a HANDOFF.md resume brief, and prints a ready-to-paste resume command. Refuses to push
WIP onto an auto-deployed branch. Optional autonomous remote agent (delegate) and a config-driven
target diagnostic (check). Softcoded per repo via .claude/handoff.json.
Skills live in ~/.claude/skills/ (global) or <project>/.claude/skills/ (per-project). Copy the
one(s) you want:
git clone https://github.com/lbachelotcapitalb/leo-bachelot-ia-skills.git
cp -R leo-bachelot-ia-skills/skills/deck-builder ~/.claude/skills/
No registration step — Claude Code discovers them and triggers the right one from your task
description. Some skills reference each other (e.g. handoff and vault-secrets can use
autocli-password); installing the companion is optional, each degrades gracefully.
description is what Claude
matches on, and it operates fine in either language.MIT. deck-builder reuses MIT-licensed design-token tables and text-measurement ideas —
attribution is in skills/deck-builder/SKILL.md.
⚠️ Experimentelle Skill-Sammlung für deutsches Recht (Arbeits-, Gesellschafts-, Insolvenz-, Datenschutz-, Prozessrecht u
Manage multiple Claude Code agents from TUI or Web with tmux and git worktrees
Project management using GitHub Issues + Git worktrees for parallel agent execution
Core skills library for Claude Code with 20+ battle-tested skills including TDD, debugging, and brainstorming