Information
# Skills
/.codex/skills\`, \`/.claude/skills\`
### Safe-by-default behavior
- Existing personal skills are not overwritten.
- Conflicts are skipped unless you pass \`--force\`.
Use \`--force\` only when you intentionally want to replace files:
\`\`\`bash
./scripts/bootstrap.sh --target both --scope global --type general --force
\`\`\`
### Update flow
\`\`\`bash
git pull
./scripts/bootstrap.sh --target both --scope global
\`\`\`
### Optional modes
Dry run:
\`\`\`bash
./scripts/bootstrap.sh --target both --scope global --dry-run
\`\`\`
Copy mode (instead of symlink mode):
\`\`\`bash
./scripts/bootstrap.sh --target both --scope global --copy
\`\`\`
## License
MIT
Created by Aniket Panjwani, PhD
Website: ai-mba.io | YouTube: @aniketapanjwani | Learn with 1000+ AI Devs
A set of reusable skills for Codex and Claude Code. ## Start Here (Simple) Skills are small instruction packs that make your coding agent better at specific jobs. - They help your agent follow a workflow instead of starting from scratch each time. - You can install all skills, only some skills, or only one category. - You can install for Codex, Claude, or both. ### Easiest Path Clone this repo, then ask your coding agent: \`Install this skills repo for me using scripts/bootstrap.sh for both Codex and Claude globally.\` If you want to run it manually, this is the one command most people need: \`\`\`bash ./scripts/bootstrap.sh --target both --scope global \`\`\` ## Learn More (Video) - [The Only Claude Code Skill You Need](https://youtu.be/MMpaPV3KMFI?si=b6PWSAtfawmk564R) - [Claude Code Skills vs MCPs: Complete Beginner's Guide 2026](https://youtu.be/42nz2FfKA9A?si=EUTr1Daohu-unqiP) ## Skills Catalog | Skill | Audience | What it does | Path | |---|---|---|---| | \`python-learning-coach\` | General | Personalized Python tutoring with memory, daily logs, and level adaptation | \`skills/general/python-learning-coach\` | ## Install Options ### 1) Clone \`\`\`bash git clone https://github.com/aniketpanjwani/public-agent-skills.git ~/projects/public-agent-skills cd ~/projects/public-agent-skills chmod +x scripts/bootstrap.sh \`\`\` ### 2) Install all skills (global, both agents) \`\`\`bash ./scripts/bootstrap.sh --target both --scope global \`\`\` ### 3) Install all skills (project only) \`\`\`bash ./scripts/bootstrap.sh --target both --scope project --project-dir /path/to/project \`\`\` ### 4) Install only selected skills \`\`\`bash ./scripts/bootstrap.sh --target both --scope global --skills python-learning-coach \`\`\` ### 5) Install by category/type \`\`\`bash ./scripts/bootstrap.sh --target both --scope global --type general \`\`\` ### 6) See what is available \`\`\`bash ./scripts/bootstrap.sh --list \`\`\` ## Technical Reference ### Targets - \`codex\` - \`claude\` - \`both\` ### Scopes - Global: \`~/.codex/skills\`, \`~/.claude/skills\` - Project: \`