Lenny Skills Plus
中文版: README.zh-CN.md
A curated library of 87 agent-executable skill packs (86 converted from RefoundAI's "Lenny skills" + 1 meta-skill) that follow the open Agent Skills format. Works with both OpenAI Codex and Claude Code.
Each skill pack defines scope, required inputs, concrete deliverables, a step-by-step workflow, and quality gates — so agents produce reviewable artifacts instead of generic advice.
Skills at a Glance
| Category | Count | Good Starting Points |
|---|---|---|
| Product Management | 22 | problem-definition, writing-prds, shipping-products |
| Leadership | 14 | managing-up, delegating-work, having-difficult-conversations |
| Career | 7 | negotiating-offers, career-transitions, building-a-promotion-case |
| Sales & GTM | 7 | founder-sales, enterprise-sales, sales-qualification |
| Hiring & Teams | 6 | writing-job-descriptions, conducting-interviews, onboarding-new-hires |
| AI & Technology | 6 | building-with-llms, ai-evals, vibe-coding |
| Growth | 6 | retention-engagement, user-onboarding, marketplace-liquidity |
| Marketing | 6 | positioning-messaging, launch-marketing, content-marketing |
| Communication | 5 | written-communication, giving-presentations, running-effective-meetings |
| Engineering | 5 | engineering-culture, platform-infrastructure, managing-tech-debt |
| Design | 2 | design-systems, design-engineering |
Full list: docs/SKILLS_CATALOG.md | Curated bundles: docs/PLAYBOOKS.md
Quick Usage
In Codex, type $ and pick a skill:
$writing-prds
Turn these notes into a decision-ready PRD. Ask up to 5 questions first.
In Claude Code, invoke with /:
/writing-prds
Turn these notes into a decision-ready PRD. Ask up to 5 questions first.
Install
Option A: From GitHub Release (recommended)
Download skills-all.zip from the latest release and unzip:
# For Codex (global)
mkdir -p ~/.codex/skills && unzip -o skills-all.zip -d ~/.codex/skills
# For Claude Code (global)
mkdir -p ~/.claude/skills && unzip -o skills-all.zip -d ~/.claude/skills
For project-local install, unzip into .codex/skills/ or .claude/skills/ in your repo instead.
git clone https://github.com/liqiongyu/lenny_skills_plus.git
cd lenny_skills_plus
# Global install
mkdir -p ~/.codex/skills ~/.claude/skills
rsync -a skills/ ~/.codex/skills/
rsync -a skills/ ~/.claude/skills/
Or copy into .codex/skills/ / .claude/skills/ in your target repo for project-local install.
Best when you only need 1-5 skills:
$skill-installer
Install `writing-prds` from `liqiongyu/lenny_skills_plus` at `skills/writing-prds`.
Restart Codex after installing.
git clone https://github.com/liqiongyu/lenny_skills_plus.git
cd lenny_skills_plus
python3 scripts/mirror_skills.py --overwrite
This mirrors canonical skills/ into .codex/skills/ and .claude/skills/ for auto-discovery (git-ignored).
See also: docs/USING_WITH_CODEX.md | docs/USING_WITH_CLAUDE.md
Why This Exists
High-level advice is hard for agents to execute reliably. This repo turns skills into execution contracts: inputs → deliverables → workflow → quality gate. See: docs/WHY_THIS_PROJECT.md.
Repo Layout
skills/ Canonical skill packs (tracked in git)
scripts/ Python utilities for CI, mirroring, and generation
sources/refound/ Upstream manifest + URL lists
docs/ Documentation
.codex/skills/ Generated mirror for Codex (git-ignored)
.claude/skills/ Generated mirror for Claude Code (git-ignored)
Quality + CI
# Lint all skill packs
python3 scripts/ci_check_skillpacks.py --skip-mirror-check
# Also validate mirrors (after running mirror_skills.py)
python3 scripts/ci_check_skillpacks.py
Contributing
See CONTRIBUTING.md and docs/WORKFLOW.md.
Attribution & IP
These skill packs are derived from RefoundAI's "Lenny skills" database. This project is not affiliated with RefoundAI. Upstream credit and takedown policy: docs/ATTRIBUTION_AND_IP.md.
License
Apache-2.0 — see LICENSE.
No comments yet
Be the first to share your take.