Personal collection of agent skills, installable via the skills CLI.
decision-log— persist decisions, rationale, and tradeoffs from a sessionexecute-plan— implement a planned set of changes, making writes and editsgh-create-pr— push branch and create a GitHub PR withghCLIgit-commit— stage and commit scoped to the current taskgit-worktree— create, inspect, and clean Git worktreesopencode-plugin— build plugins for OpenCodeplan-mode— produce a decision-complete plan, read-onlyreview-changes— review local diffs for bugs and risksreview-pr— review a GitHub PR from a URL
# GitHub shorthand
npx skills add flexdinesh/agent-skills
# Full URL
npx skills add https://github.com/flexdinesh/agent-skills
# List skills without installing
npx skills add flexdinesh/agent-skills --list
# Install a specific skill
npx skills add flexdinesh/agent-skills --skill plan-mode
# Install multiple skills
npx skills add flexdinesh/agent-skills --skill plan-mode --skill git-commit
# Install all skills non-interactively
npx skills add flexdinesh/agent-skills --all -yInstall to .agents/skills/ so every supported agent picks them up — including Claude Code, OpenCode, Codex, Cursor, and others. Most agents read from this shared path.
# Project scope (./.agents/skills/) — default
npx skills add flexdinesh/agent-skills
# Global scope (~/.agents/skills/)
npx skills add flexdinesh/agent-skills -g# Clone, then install from the local path
git clone https://github.com/flexdinesh/agent-skills
npx skills add ./agent-skills
# Install a single skill directly from its directory
npx skills add ./agent-skills/skills/plan-mode
# Install to global scope from local
npx skills add ./agent-skills -gDefault is symlink (recommended): single source of truth, easy to update. Use --copy if symlinks aren't supported on your system.
npx skills add flexdinesh/agent-skills --copy# Update all installed skills (interactive scope prompt)
npx skills update
# Update a specific skill
npx skills update plan-mode
# Update multiple
npx skills update plan-mode git-commit
# Update only global or project scope
npx skills update -g
npx skills update -p
# Non-interactive (auto-detects scope)
npx skills update -yTip: if installed via symlink from a cloned local dir, git pull in the clone — agents reflect changes immediately, no update needed.
npx skills list # show installed skills
npx skills remove plan-mode # remove a skillFull CLI reference: https://github.com/vercel-labs/skills